blakeblackshear.frigate/web
Nicolas Mowen 1377d33e25
Redesign Recordings View (#10690)
* Use full width top bar

* Make each item in review filter group optional

* Remove export creation from export page

* Consolidate packages and fix opening recording from event

* Use common type for time range

* Move timeline to separate component

* Add events list view to recordings view

* Fix loading of images

* Fix incorrect labels

* use overlay state for selected timeline type

* Fix up for mobile view for now

* replace overlay state

* fix comparison

* remove unused
2024-03-26 15:03:58 -06:00
..
images
public Don't use apple icon for android pwa (#10535) 2024-03-19 08:41:24 -05:00
src Redesign Recordings View (#10690) 2024-03-26 15:03:58 -06:00
themes Motion review playback optimizations (#10659) 2024-03-24 20:37:44 -06:00
.eslintrc.cjs
.gitignore
components.json
index.html use credentials for webmanifest (#10447) 2024-03-14 06:36:56 -06:00
package-lock.json Update rest of web deps (#10588) 2024-03-21 09:26:13 -05:00
package.json Update rest of web deps (#10588) 2024-03-21 09:26:13 -05:00
postcss.config.js
README.md
site.webmanifest Don't use apple icon for android pwa (#10535) 2024-03-19 08:41:24 -05:00
tailwind.config.js Motion review playback optimizations (#10659) 2024-03-24 20:37:44 -06:00
tsconfig.json
tsconfig.node.json
vite.config.ts

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