1
0
mirror of https://github.com/blakeblackshear/frigate.git synced 2025-01-12 00:06:43 +01:00
blakeblackshear.frigate/web
Nicolas Mowen 8b344cea81
Implement recordings fullscreen and rework recordings layout size calculation ()
* Implement fullscreen button

* wrap items on mobile

* control based on width

* refresh

* Implement basic fullscreen

* Fix scrolling

* Add observer to detect of row overflows

* Use cn to simplify classnames

* dynamically respond to layout sizing

* Simplify listener

* Simplify layout

* Handle tall browser
2024-05-09 15:06:29 -06:00
..
images
public
src Implement recordings fullscreen and rework recordings layout size calculation () 2024-05-09 15:06:29 -06:00
themes sane colors for themes () 2024-04-26 14:30:57 -06:00
.eslintrc.cjs
.gitignore Use new UI () 2024-01-31 12:56:11 +00:00
components.json
index.html
package-lock.json Web Deps () 2024-05-09 08:20:07 -05:00
package.json Web Deps () 2024-05-09 08:20:07 -05:00
postcss.config.js
README.md
site.webmanifest
tailwind.config.js UI Fixes () 2024-04-30 19:35:23 -05:00
tsconfig.json
tsconfig.node.json
vite.config.ts Implement general page of system graphs () 2024-04-03 21:22:11 -06:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list