maziggy fa705102b4 Fix slot picker stretched and double scroll in Assign Spool modal před 2 měsíci
..
docs 82d329d85c [Fix] Virtual Printer FTP routed to wrong VP with different access codes (#735) před 2 měsíci
mockups ccdb084f23 - Refactored printer card's AMS section for better experience před 4 měsíci
public 7f1ced60fd Fix stale frontend after deploy due to service worker caching před 2 měsíci
src fa705102b4 Fix slot picker stretched and double scroll in Assign Spool modal před 2 měsíci
.gitignore 09677861ba Added screenshots před 6 měsíci
.npmrc 22ac7e97bb Closes #426 před 3 měsíci
README.md 09677861ba Added screenshots před 6 měsíci
eslint.config.js 49acd8c148 Improved frontend tests před 3 měsíci
index.html 8d60c31aa7 Force-clear service worker and caches on SpoolBuddy kiosk load před 2 měsíci
package-lock.json 89bf138473 Bump flatted 3.4.1 → 3.4.2 to fix prototype pollution před 2 měsíci
package.json fa6edfbcde Fix stored XSS vulnerabilities and unauthenticated auth toggle před 2 měsíci
postcss.config.js 09677861ba Added screenshots před 6 měsíci
tailwind.config.js 7767851975 Add SpoolBuddy tag detection modal and fix NFC reader silent failure před 2 měsíci
tsconfig.app.json 9ba4ef6355 Fix docker build před 5 měsíci
tsconfig.json 09677861ba Added screenshots před 6 měsíci
tsconfig.node.json 09677861ba Added screenshots před 6 měsíci
vite.config.ts 46f209e2ac Add SpoolBuddy AMS slot config, external slots, and dashboard redesign před 3 měsíci
vitest.config.ts 104b9d4a25 Fix external spool ams_mapping2 slot_id (Issue #213) před 3 měsíci

README.md

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:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

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

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])