Skip to content

Commit

Permalink
feat: Redesign UI (#517)
Browse files Browse the repository at this point in the history
* WIP: Add libs, redesign some views

* Redesign more views

* Add saving icon, fix download/upload icons, fix thumbnail image

* Finish video buttons, dialogs from video actions, misc.

* Small cleanup

* Make things scrollable, update html background

* Add cleanup to useEffect in Status, to remove up/down listeners

* Redesign scene settings view

* Remove extraneous titles in scene editor, make device select grow

* Some fixes, tweaks, delete from modal currently turned off

* Address more feedback

* Delete some logs, tweak PoV list

* Address comments

* Fix React warnings logged to console
  • Loading branch information
StephixOne committed Aug 26, 2024
1 parent db42adf commit ffe8e77
Show file tree
Hide file tree
Showing 82 changed files with 8,671 additions and 4,008 deletions.
3 changes: 2 additions & 1 deletion .erb/configs/webpack.config.renderer.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ const configuration: webpack.Configuration = {
},
},
'sass-loader',
'postcss-loader',
],
include: /\.module\.s?(c|a)ss$/,
},
{
test: /\.s?css$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
use: ['style-loader', 'css-loader', 'sass-loader', 'postcss-loader'],
exclude: /\.module\.s?(c|a)ss$/,
},
// Fonts
Expand Down
7 changes: 7 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ module.exports = {
'no-underscore-dangle': 'off',
'no-plusplus': 'off',
'no-console': 'off',
'prettier/prettier': [
'error',
{
endOfLine: 'auto', // stops prettier complaining about windows line-endings
},
],
'react/jsx-props-no-spreading': 'off',
},
parserOptions: {
ecmaVersion: 2020,
Expand Down
Loading

0 comments on commit ffe8e77

Please sign in to comment.