first commit
This commit is contained in:
7
.editorconfig
Normal file
7
.editorconfig
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]
|
||||||
|
charset = utf-8
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
33
.gitignore
vendored
Normal file
33
.gitignore
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
.DS_Store
|
||||||
|
.thumbs.db
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# Quasar core related directories
|
||||||
|
.quasar
|
||||||
|
/dist
|
||||||
|
/quasar.config.*.temporary.compiled*
|
||||||
|
|
||||||
|
# Cordova related directories and files
|
||||||
|
/src-cordova/node_modules
|
||||||
|
/src-cordova/platforms
|
||||||
|
/src-cordova/plugins
|
||||||
|
/src-cordova/www
|
||||||
|
|
||||||
|
# Capacitor related directories and files
|
||||||
|
/src-capacitor/www
|
||||||
|
/src-capacitor/node_modules
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
|
||||||
|
# local .env files
|
||||||
|
.env.local*
|
5
.npmrc
Normal file
5
.npmrc
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# pnpm-related options
|
||||||
|
shamefully-hoist=true
|
||||||
|
strict-peer-dependencies=false
|
||||||
|
# to get the latest compatible packages when creating the project https://github.com/pnpm/pnpm/issues/6463
|
||||||
|
resolution-mode=highest
|
5
.prettierrc.json
Normal file
5
.prettierrc.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/prettierrc",
|
||||||
|
"singleQuote": true,
|
||||||
|
"printWidth": 100
|
||||||
|
}
|
15
.vscode/extensions.json
vendored
Normal file
15
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"dbaeumer.vscode-eslint",
|
||||||
|
"esbenp.prettier-vscode",
|
||||||
|
"editorconfig.editorconfig",
|
||||||
|
"vue.volar",
|
||||||
|
"wayou.vscode-todo-highlight"
|
||||||
|
],
|
||||||
|
"unwantedRecommendations": [
|
||||||
|
"octref.vetur",
|
||||||
|
"hookyqr.beautify",
|
||||||
|
"dbaeumer.jshint",
|
||||||
|
"ms-vscode.vscode-typescript-tslint-plugin"
|
||||||
|
]
|
||||||
|
}
|
16
.vscode/settings.json
vendored
Normal file
16
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"editor.bracketPairColorization.enabled": true,
|
||||||
|
"editor.guides.bracketPairs": true,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
|
"editor.codeActionsOnSave": [
|
||||||
|
"source.fixAll.eslint"
|
||||||
|
],
|
||||||
|
"eslint.validate": [
|
||||||
|
"javascript",
|
||||||
|
"javascriptreact",
|
||||||
|
"typescript",
|
||||||
|
"vue"
|
||||||
|
],
|
||||||
|
"typescript.tsdk": "node_modules/typescript/lib"
|
||||||
|
}
|
86
eslint.config.js
Normal file
86
eslint.config.js
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
import js from '@eslint/js'
|
||||||
|
import globals from 'globals'
|
||||||
|
import pluginVue from 'eslint-plugin-vue'
|
||||||
|
import pluginQuasar from '@quasar/app-vite/eslint'
|
||||||
|
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
|
||||||
|
import prettierSkipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
||||||
|
|
||||||
|
export default defineConfigWithVueTs(
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Ignore the following files.
|
||||||
|
* Please note that pluginQuasar.configs.recommended() already ignores
|
||||||
|
* the "node_modules" folder for you (and all other Quasar project
|
||||||
|
* relevant folders and files).
|
||||||
|
*
|
||||||
|
* ESLint requires "ignores" key to be the only one in this object
|
||||||
|
*/
|
||||||
|
// ignores: []
|
||||||
|
},
|
||||||
|
|
||||||
|
pluginQuasar.configs.recommended(),
|
||||||
|
js.configs.recommended,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://eslint.vuejs.org
|
||||||
|
*
|
||||||
|
* pluginVue.configs.base
|
||||||
|
* -> Settings and rules to enable correct ESLint parsing.
|
||||||
|
* pluginVue.configs[ 'flat/essential']
|
||||||
|
* -> base, plus rules to prevent errors or unintended behavior.
|
||||||
|
* pluginVue.configs["flat/strongly-recommended"]
|
||||||
|
* -> Above, plus rules to considerably improve code readability and/or dev experience.
|
||||||
|
* pluginVue.configs["flat/recommended"]
|
||||||
|
* -> Above, plus rules to enforce subjective community defaults to ensure consistency.
|
||||||
|
*/
|
||||||
|
pluginVue.configs[ 'flat/essential' ],
|
||||||
|
|
||||||
|
{
|
||||||
|
files: ['**/*.ts', '**/*.vue'],
|
||||||
|
rules: {
|
||||||
|
'@typescript-eslint/consistent-type-imports': [
|
||||||
|
'error',
|
||||||
|
{ prefer: 'type-imports' }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// https://github.com/vuejs/eslint-config-typescript
|
||||||
|
vueTsConfigs.recommendedTypeChecked,
|
||||||
|
|
||||||
|
{
|
||||||
|
languageOptions: {
|
||||||
|
ecmaVersion: 'latest',
|
||||||
|
sourceType: 'module',
|
||||||
|
|
||||||
|
globals: {
|
||||||
|
...globals.browser,
|
||||||
|
...globals.node, // SSR, Electron, config files
|
||||||
|
process: 'readonly', // process.env.*
|
||||||
|
ga: 'readonly', // Google Analytics
|
||||||
|
cordova: 'readonly',
|
||||||
|
Capacitor: 'readonly',
|
||||||
|
chrome: 'readonly', // BEX related
|
||||||
|
browser: 'readonly' // BEX related
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// add your custom rules here
|
||||||
|
rules: {
|
||||||
|
'prefer-promise-reject-errors': 'off',
|
||||||
|
|
||||||
|
// allow debugger during development only
|
||||||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
files: [ 'src-pwa/custom-service-worker.ts' ],
|
||||||
|
languageOptions: {
|
||||||
|
globals: {
|
||||||
|
...globals.serviceworker
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
prettierSkipFormatting
|
||||||
|
)
|
21
index.html
Normal file
21
index.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title><%= productName %></title>
|
||||||
|
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="description" content="<%= productDescription %>">
|
||||||
|
<meta name="format-detection" content="telephone=no">
|
||||||
|
<meta name="msapplication-tap-highlight" content="no">
|
||||||
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
|
||||||
|
<link rel="icon" type="image/ico" href="favicon.ico">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- quasar:entry-point -->
|
||||||
|
</body>
|
||||||
|
</html>
|
7828
package-lock.json
generated
Normal file
7828
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
43
package.json
Normal file
43
package.json
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"name": "lightcontrol",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "A Quasar Project",
|
||||||
|
"productName": "Light Control",
|
||||||
|
"author": "A. Zuercher",
|
||||||
|
"type": "module",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
||||||
|
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
|
||||||
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
|
"dev": "quasar dev",
|
||||||
|
"build": "quasar build",
|
||||||
|
"postinstall": "quasar prepare"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@quasar/extras": "^1.16.4",
|
||||||
|
"quasar": "^2.16.0",
|
||||||
|
"vue": "^3.4.18",
|
||||||
|
"vue-router": "^4.0.12"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "^9.14.0",
|
||||||
|
"eslint": "^9.14.0",
|
||||||
|
"eslint-plugin-vue": "^9.30.0",
|
||||||
|
"globals": "^15.12.0",
|
||||||
|
"vue-tsc": "^2.0.29",
|
||||||
|
"@vue/eslint-config-typescript": "^14.4.0",
|
||||||
|
"vite-plugin-checker": "^0.9.0",
|
||||||
|
"@vue/eslint-config-prettier": "^10.1.0",
|
||||||
|
"prettier": "^3.3.3",
|
||||||
|
"@types/node": "^20.5.9",
|
||||||
|
"@quasar/app-vite": "^2.1.0",
|
||||||
|
"autoprefixer": "^10.4.2",
|
||||||
|
"typescript": "~5.5.3"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
|
||||||
|
"npm": ">= 6.13.4",
|
||||||
|
"yarn": ">= 1.21.1"
|
||||||
|
}
|
||||||
|
}
|
29
postcss.config.js
Normal file
29
postcss.config.js
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// https://github.com/michael-ciniawsky/postcss-load-config
|
||||||
|
|
||||||
|
import autoprefixer from 'autoprefixer'
|
||||||
|
// import rtlcss from 'postcss-rtlcss'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
plugins: [
|
||||||
|
// https://github.com/postcss/autoprefixer
|
||||||
|
autoprefixer({
|
||||||
|
overrideBrowserslist: [
|
||||||
|
'last 4 Chrome versions',
|
||||||
|
'last 4 Firefox versions',
|
||||||
|
'last 4 Edge versions',
|
||||||
|
'last 4 Safari versions',
|
||||||
|
'last 4 Android versions',
|
||||||
|
'last 4 ChromeAndroid versions',
|
||||||
|
'last 4 FirefoxAndroid versions',
|
||||||
|
'last 4 iOS versions'
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
|
// https://github.com/elchininet/postcss-rtlcss
|
||||||
|
// If you want to support RTL css, then
|
||||||
|
// 1. yarn/pnpm/bun/npm install postcss-rtlcss
|
||||||
|
// 2. optionally set quasar.config.js > framework > lang to an RTL language
|
||||||
|
// 3. uncomment the following line (and its import statement above):
|
||||||
|
// rtlcss()
|
||||||
|
]
|
||||||
|
}
|
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 63 KiB |
BIN
public/icons/favicon-128x128.png
Normal file
BIN
public/icons/favicon-128x128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
public/icons/favicon-16x16.png
Normal file
BIN
public/icons/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 859 B |
BIN
public/icons/favicon-32x32.png
Normal file
BIN
public/icons/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
public/icons/favicon-96x96.png
Normal file
BIN
public/icons/favicon-96x96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
217
quasar.config.ts
Normal file
217
quasar.config.ts
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
// Configuration for your app
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file
|
||||||
|
|
||||||
|
import { defineConfig } from '#q-app/wrappers';
|
||||||
|
|
||||||
|
export default defineConfig((/* ctx */) => {
|
||||||
|
return {
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/prefetch-feature
|
||||||
|
// preFetch: true,
|
||||||
|
|
||||||
|
// app boot file (/src/boot)
|
||||||
|
// --> boot files are part of "main.js"
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/boot-files
|
||||||
|
boot: [],
|
||||||
|
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#css
|
||||||
|
css: ['app.scss'],
|
||||||
|
|
||||||
|
// https://github.com/quasarframework/quasar/tree/dev/extras
|
||||||
|
extras: [
|
||||||
|
// 'ionicons-v4',
|
||||||
|
// 'mdi-v7',
|
||||||
|
// 'fontawesome-v6',
|
||||||
|
// 'eva-icons',
|
||||||
|
// 'themify',
|
||||||
|
// 'line-awesome',
|
||||||
|
// 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
|
||||||
|
|
||||||
|
'roboto-font', // optional, you are not bound to it
|
||||||
|
'material-icons', // optional, you are not bound to it
|
||||||
|
],
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#build
|
||||||
|
build: {
|
||||||
|
target: {
|
||||||
|
browser: ['es2022', 'firefox115', 'chrome115', 'safari14'],
|
||||||
|
node: 'node20',
|
||||||
|
},
|
||||||
|
|
||||||
|
typescript: {
|
||||||
|
strict: true,
|
||||||
|
vueShim: true,
|
||||||
|
// extendTsConfig (tsConfig) {}
|
||||||
|
},
|
||||||
|
|
||||||
|
vueRouterMode: 'hash', // available values: 'hash', 'history'
|
||||||
|
// vueRouterBase,
|
||||||
|
// vueDevtools,
|
||||||
|
// vueOptionsAPI: false,
|
||||||
|
|
||||||
|
// rebuildCache: true, // rebuilds Vite/linter/etc cache on startup
|
||||||
|
|
||||||
|
// publicPath: '/',
|
||||||
|
// analyze: true,
|
||||||
|
// env: {},
|
||||||
|
// rawDefine: {}
|
||||||
|
// ignorePublicFolder: true,
|
||||||
|
// minify: false,
|
||||||
|
// polyfillModulePreload: true,
|
||||||
|
// distDir
|
||||||
|
|
||||||
|
// extendViteConf (viteConf) {},
|
||||||
|
// viteVuePluginOptions: {},
|
||||||
|
|
||||||
|
vitePlugins: [
|
||||||
|
[
|
||||||
|
'vite-plugin-checker',
|
||||||
|
{
|
||||||
|
vueTsc: true,
|
||||||
|
eslint: {
|
||||||
|
lintCommand: 'eslint -c ./eslint.config.js "./src*/**/*.{ts,js,mjs,cjs,vue}"',
|
||||||
|
useFlatConfig: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ server: false },
|
||||||
|
],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#devserver
|
||||||
|
devServer: {
|
||||||
|
// https: true,
|
||||||
|
open: true, // opens browser window automatically
|
||||||
|
},
|
||||||
|
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#framework
|
||||||
|
framework: {
|
||||||
|
config: {},
|
||||||
|
|
||||||
|
// iconSet: 'material-icons', // Quasar icon set
|
||||||
|
// lang: 'en-US', // Quasar language pack
|
||||||
|
|
||||||
|
// For special cases outside of where the auto-import strategy can have an impact
|
||||||
|
// (like functional components as one of the examples),
|
||||||
|
// you can manually specify Quasar components/directives to be available everywhere:
|
||||||
|
//
|
||||||
|
// components: [],
|
||||||
|
// directives: [],
|
||||||
|
|
||||||
|
// Quasar plugins
|
||||||
|
plugins: ['Notify'],
|
||||||
|
},
|
||||||
|
|
||||||
|
// animations: 'all', // --- includes all animations
|
||||||
|
// https://v2.quasar.dev/options/animations
|
||||||
|
animations: [],
|
||||||
|
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#sourcefiles
|
||||||
|
// sourceFiles: {
|
||||||
|
// rootComponent: 'src/App.vue',
|
||||||
|
// router: 'src/router/index',
|
||||||
|
// store: 'src/store/index',
|
||||||
|
// pwaRegisterServiceWorker: 'src-pwa/register-service-worker',
|
||||||
|
// pwaServiceWorker: 'src-pwa/custom-service-worker',
|
||||||
|
// pwaManifestFile: 'src-pwa/manifest.json',
|
||||||
|
// electronMain: 'src-electron/electron-main',
|
||||||
|
// electronPreload: 'src-electron/electron-preload'
|
||||||
|
// bexManifestFile: 'src-bex/manifest.json
|
||||||
|
// },
|
||||||
|
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/developing-ssr/configuring-ssr
|
||||||
|
ssr: {
|
||||||
|
prodPort: 3000, // The default port that the production server should use
|
||||||
|
// (gets superseded if process.env.PORT is specified at runtime)
|
||||||
|
|
||||||
|
middlewares: [
|
||||||
|
'render', // keep this as last one
|
||||||
|
],
|
||||||
|
|
||||||
|
// extendPackageJson (json) {},
|
||||||
|
// extendSSRWebserverConf (esbuildConf) {},
|
||||||
|
|
||||||
|
// manualStoreSerialization: true,
|
||||||
|
// manualStoreSsrContextInjection: true,
|
||||||
|
// manualStoreHydration: true,
|
||||||
|
// manualPostHydrationTrigger: true,
|
||||||
|
|
||||||
|
pwa: false,
|
||||||
|
// pwaOfflineHtmlFilename: 'offline.html', // do NOT use index.html as name!
|
||||||
|
|
||||||
|
// pwaExtendGenerateSWOptions (cfg) {},
|
||||||
|
// pwaExtendInjectManifestOptions (cfg) {}
|
||||||
|
},
|
||||||
|
|
||||||
|
// https://v2.quasar.dev/quasar-cli-vite/developing-pwa/configuring-pwa
|
||||||
|
pwa: {
|
||||||
|
workboxMode: 'GenerateSW', // 'GenerateSW' or 'InjectManifest'
|
||||||
|
// swFilename: 'sw.js',
|
||||||
|
// manifestFilename: 'manifest.json',
|
||||||
|
// extendManifestJson (json) {},
|
||||||
|
// useCredentialsForManifestTag: true,
|
||||||
|
// injectPwaMetaTags: false,
|
||||||
|
// extendPWACustomSWConf (esbuildConf) {},
|
||||||
|
// extendGenerateSWOptions (cfg) {},
|
||||||
|
// extendInjectManifestOptions (cfg) {}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-cordova-apps/configuring-cordova
|
||||||
|
cordova: {
|
||||||
|
// noIosLegacyBuildFlag: true, // uncomment only if you know what you are doing
|
||||||
|
},
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-capacitor-apps/configuring-capacitor
|
||||||
|
capacitor: {
|
||||||
|
hideSplashscreen: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-electron-apps/configuring-electron
|
||||||
|
electron: {
|
||||||
|
// extendElectronMainConf (esbuildConf) {},
|
||||||
|
// extendElectronPreloadConf (esbuildConf) {},
|
||||||
|
|
||||||
|
// extendPackageJson (json) {},
|
||||||
|
|
||||||
|
// Electron preload scripts (if any) from /src-electron, WITHOUT file extension
|
||||||
|
preloadScripts: ['electron-preload'],
|
||||||
|
|
||||||
|
// specify the debugging port to use for the Electron app when running in development mode
|
||||||
|
inspectPort: 5858,
|
||||||
|
|
||||||
|
bundler: 'packager', // 'packager' or 'builder'
|
||||||
|
|
||||||
|
packager: {
|
||||||
|
// https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
|
||||||
|
// OS X / Mac App Store
|
||||||
|
// appBundleId: '',
|
||||||
|
// appCategoryType: '',
|
||||||
|
// osxSign: '',
|
||||||
|
// protocol: 'myapp://path',
|
||||||
|
// Windows only
|
||||||
|
// win32metadata: { ... }
|
||||||
|
},
|
||||||
|
|
||||||
|
builder: {
|
||||||
|
// https://www.electron.build/configuration/configuration
|
||||||
|
|
||||||
|
appId: 'lightcontrol',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-browser-extensions/configuring-bex
|
||||||
|
bex: {
|
||||||
|
// extendBexScriptsConf (esbuildConf) {},
|
||||||
|
// extendBexManifestJson (json) {},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The list of extra scripts (js/ts) not in your bex manifest that you want to
|
||||||
|
* compile and use in your browser extension. Maybe dynamic use them?
|
||||||
|
*
|
||||||
|
* Each entry in the list should be a relative filename to /src-bex/
|
||||||
|
*
|
||||||
|
* @example [ 'my-script.ts', 'sub-folder/my-other-script.js' ]
|
||||||
|
*/
|
||||||
|
extraScripts: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
7
src/App.vue
Normal file
7
src/App.vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<router-view />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
//
|
||||||
|
</script>
|
15
src/assets/quasar-logo-vertical.svg
Normal file
15
src/assets/quasar-logo-vertical.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 356 360">
|
||||||
|
<path
|
||||||
|
d="M43.4 303.4c0 3.8-2.3 6.3-7.1 6.3h-15v-22h14.4c4.3 0 6.2 2.2 6.2 5.2 0 2.6-1.5 4.4-3.4 5 2.8.4 4.9 2.5 4.9 5.5zm-8-13H24.1v6.9H35c2.1 0 4-1.3 4-3.8 0-2.2-1.3-3.1-3.7-3.1zm5.1 12.6c0-2.3-1.8-3.7-4-3.7H24.2v7.7h11.7c3.4 0 4.6-1.8 4.6-4zm36.3 4v2.7H56v-22h20.6v2.7H58.9v6.8h14.6v2.3H58.9v7.5h17.9zm23-5.8v8.5H97v-8.5l-11-13.4h3.4l8.9 11 8.8-11h3.4l-10.8 13.4zm19.1-1.8V298c0-7.9 5.2-10.7 12.7-10.7 7.5 0 13 2.8 13 10.7v1.4c0 7.9-5.5 10.8-13 10.8s-12.7-3-12.7-10.8zm22.7 0V298c0-5.7-3.9-8-10-8-6 0-9.8 2.3-9.8 8v1.4c0 5.8 3.8 8.1 9.8 8.1 6 0 10-2.3 10-8.1zm37.2-11.6v21.9h-2.9l-15.8-17.9v17.9h-2.8v-22h3l15.6 18v-18h2.9zm37.9 10.2v1.3c0 7.8-5.2 10.4-12.4 10.4H193v-22h11.2c7.2 0 12.4 2.8 12.4 10.3zm-3 0c0-5.3-3.3-7.6-9.4-7.6h-8.4V307h8.4c6 0 9.5-2 9.5-7.7V298zm50.8-7.6h-9.7v19.3h-3v-19.3h-9.7v-2.6h22.4v2.6zm34.4-2.6v21.9h-3v-10.1h-16.8v10h-2.8v-21.8h2.8v9.2H296v-9.2h2.9zm34.9 19.2v2.7h-20.7v-22h20.6v2.7H316v6.8h14.5v2.3H316v7.5h17.8zM24 340.2v7.3h13.9v2.4h-14v9.6H21v-22h20v2.7H24zm41.5 11.4h-9.8v7.9H53v-22h13.3c5.1 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6H66c3.1 0 5.3-1.5 5.3-4.7 0-3.3-2.2-4.1-5.3-4.1H55.7v8.8zm47.9 6.2H89l-2 4.3h-3.2l10.7-22.2H98l10.7 22.2h-3.2l-2-4.3zm-1-2.3l-6.3-13-6 13h12.2zm46.3-15.3v21.9H146v-17.2L135.7 358h-2.1l-10.2-15.6v17h-2.8v-21.8h3l11 16.9 11.3-17h3zm35 19.3v2.6h-20.7v-22h20.6v2.7H166v6.8h14.5v2.3H166v7.6h17.8zm47-19.3l-8.3 22h-3l-7.1-18.6-7 18.6h-3l-8.2-22h3.3L204 356l6.8-18.5h3.4L221 356l6.6-18.5h3.3zm10 11.6v-1.4c0-7.8 5.2-10.7 12.7-10.7 7.6 0 13 2.9 13 10.7v1.4c0 7.9-5.4 10.8-13 10.8-7.5 0-12.7-3-12.7-10.8zm22.8 0v-1.4c0-5.7-4-8-10-8s-9.9 2.3-9.9 8v1.4c0 5.8 3.8 8.2 9.8 8.2 6.1 0 10-2.4 10-8.2zm28.3 2.4h-9.8v7.9h-2.8v-22h13.2c5.2 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6h10.2c3 0 5.2-1.5 5.2-4.7 0-3.3-2.1-4.1-5.2-4.1h-10.2v8.8zm40.3-1.5l-6.8 5.6v6.4h-2.9v-22h2.9v12.3l15.2-12.2h3.7l-9.9 8.1 10.3 13.8h-3.6l-8.9-12z" />
|
||||||
|
<path fill="#050A14"
|
||||||
|
d="M188.4 71.7a10.4 10.4 0 01-20.8 0 10.4 10.4 0 1120.8 0zM224.2 45c-2.2-3.9-5-7.5-8.2-10.7l-12 7c-3.7-3.2-8-5.7-12.6-7.3a49.4 49.4 0 00-9.7 13.9 59 59 0 0140.1 14l7.6-4.4a57 57 0 00-5.2-12.5zM178 125.1c4.5 0 9-.6 13.4-1.7v-14a40 40 0 0012.5-7.2 47.7 47.7 0 00-7.1-15.3 59 59 0 01-32.2 27.7v8.7c4.4 1.2 8.9 1.8 13.4 1.8zM131.8 45c-2.3 4-4 8.1-5.2 12.5l12 7a40 40 0 000 14.4c5.7 1.5 11.3 2 16.9 1.5a59 59 0 01-8-41.7l-7.5-4.3c-3.2 3.2-6 6.7-8.2 10.6z" />
|
||||||
|
<path fill="#00B4FF"
|
||||||
|
d="M224.2 98.4c2.3-3.9 4-8 5.2-12.4l-12-7a40 40 0 000-14.5c-5.7-1.5-11.3-2-16.9-1.5a59 59 0 018 41.7l7.5 4.4c3.2-3.2 6-6.8 8.2-10.7zm-92.4 0c2.2 4 5 7.5 8.2 10.7l12-7a40 40 0 0012.6 7.3c4-4.1 7.3-8.8 9.7-13.8a59 59 0 01-40-14l-7.7 4.4c1.2 4.3 3 8.5 5.2 12.4zm46.2-80c-4.5 0-9 .5-13.4 1.7V34a40 40 0 00-12.5 7.2c1.5 5.7 4 10.8 7.1 15.4a59 59 0 0132.2-27.7V20a53.3 53.3 0 00-13.4-1.8z" />
|
||||||
|
<path fill="#00B4FF"
|
||||||
|
d="M178 9.2a62.6 62.6 0 11-.1 125.2A62.6 62.6 0 01178 9.2m0-9.2a71.7 71.7 0 100 143.5A71.7 71.7 0 00178 0z" />
|
||||||
|
<path fill="#050A14"
|
||||||
|
d="M96.6 212v4.3c-9.2-.8-15.4-5.8-15.4-17.8V180h4.6v18.4c0 8.6 4 12.6 10.8 13.5zm16-31.9v18.4c0 8.9-4.3 12.8-10.9 13.5v4.4c9.2-.7 15.5-5.6 15.5-18v-18.3h-4.7zM62.2 199v-2.2c0-12.7-8.8-17.4-21-17.4-12.1 0-20.7 4.7-20.7 17.4v2.2c0 12.8 8.6 17.6 20.7 17.6 1.5 0 3-.1 4.4-.3l11.8 6.2 2-3.3-8.2-4-6.4-3.1a32 32 0 01-3.6.2c-9.8 0-16-3.9-16-13.3v-2.2c0-9.3 6.2-13.1 16-13.1 9.9 0 16.3 3.8 16.3 13.1v2.2c0 5.3-2.1 8.7-5.6 10.8l4.8 2.4c3.4-2.8 5.5-7 5.5-13.2zM168 215.6h5.1L156 179.7h-4.8l17 36zM143 205l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.8-3.7H143zm133.7 10.7h5.2l-17.3-35.9h-4.8l17 36zm-25-10.7l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.7-3.7h-14.8zm73.8-2.5c6-1.2 9-5.4 9-11.4 0-8-4.5-10.9-12.9-10.9h-21.4v35.5h4.6v-31.3h16.5c5 0 8.5 1.4 8.5 6.7 0 5.2-3.5 7.7-8.5 7.7h-11.4v4.1h10.7l9.3 12.8h5.5l-9.9-13.2zm-117.4 9.9c-9.7 0-14.7-2.5-18.6-6.3l-2.2 3.8c5.1 5 11 6.7 21 6.7 1.6 0 3.1-.1 4.6-.3l-1.9-4h-3zm18.4-7c0-6.4-4.7-8.6-13.8-9.4l-10.1-1c-6.7-.7-9.3-2.2-9.3-5.6 0-2.5 1.4-4 4.6-5l-1.8-3.8c-4.7 1.4-7.5 4.2-7.5 8.9 0 5.2 3.4 8.7 13 9.6l11.3 1.2c6.4.6 8.9 2 8.9 5.4 0 2.7-2.1 4.7-6 5.8l1.8 3.9c5.3-1.6 8.9-4.7 8.9-10zm-20.3-21.9c7.9 0 13.3 1.8 18.1 5.7l1.8-3.9a30 30 0 00-19.6-5.9c-2 0-4 .1-5.7.3l1.9 4 3.5-.2z" />
|
||||||
|
<path fill="#00B4FF"
|
||||||
|
d="M.5 251.9c29.6-.5 59.2-.8 88.8-1l88.7-.3 88.7.3 44.4.4 44.4.6-44.4.6-44.4.4-88.7.3-88.7-.3a7981 7981 0 01-88.8-1z" />
|
||||||
|
<path fill="none" d="M-565.2 324H-252v15.8h-313.2z" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
0
src/boot/.gitkeep
Normal file
0
src/boot/.gitkeep
Normal file
128
src/components/DBMTree.vue
Normal file
128
src/components/DBMTree.vue
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
<template>
|
||||||
|
<q-card>
|
||||||
|
<div class="row">
|
||||||
|
<q-card-section class="col-4">
|
||||||
|
<q-tree
|
||||||
|
class="text-blue text-bold"
|
||||||
|
dense
|
||||||
|
:nodes="dbmData"
|
||||||
|
node-key="key"
|
||||||
|
:default-expand-all="true"
|
||||||
|
>
|
||||||
|
<template v-slot:[`default-header`]="props">
|
||||||
|
<div class="row items-center text-blue">
|
||||||
|
<div
|
||||||
|
class="row items-center text-blue"
|
||||||
|
@contextmenu.prevent="openContextMenu($event, props.node)"
|
||||||
|
></div>
|
||||||
|
<div>{{ props.node.path }}</div>
|
||||||
|
<q-input
|
||||||
|
v-if="props.node.value !== undefined"
|
||||||
|
v-model="props.node.value"
|
||||||
|
dense
|
||||||
|
borderless
|
||||||
|
class="q-ml-sm"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<q-popup-edit
|
||||||
|
v-if="props.node.value !== undefined"
|
||||||
|
v-model="props.node.value"
|
||||||
|
class="q-ml-xl bg-grey text-white"
|
||||||
|
@save="onValueEdit(props.node)"
|
||||||
|
>
|
||||||
|
<template v-if="props.node.value !== undefined" v-slot="scope">
|
||||||
|
<q-input
|
||||||
|
dark
|
||||||
|
color="white"
|
||||||
|
v-model="scope.value"
|
||||||
|
dense
|
||||||
|
autofocus
|
||||||
|
counter
|
||||||
|
@keyup.enter="scope.set"
|
||||||
|
>
|
||||||
|
<template v-slot:append>
|
||||||
|
<q-icon name="edit" />
|
||||||
|
</template>
|
||||||
|
</q-input>
|
||||||
|
</template>
|
||||||
|
</q-popup-edit>
|
||||||
|
</template>
|
||||||
|
</q-tree>
|
||||||
|
<sub-menu></sub-menu>
|
||||||
|
</q-card-section>
|
||||||
|
<q-card-section class="col-8 text-center"> Test </q-card-section>
|
||||||
|
</div>
|
||||||
|
</q-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted } from 'vue';
|
||||||
|
import { useWebSocket } from 'src/composables/useWebSocket';
|
||||||
|
import type { TreeNode } from 'src/composables/dbmTree';
|
||||||
|
import { subs, dbmData, buildTree } from 'src/composables/dbmTree';
|
||||||
|
import { openContextMenu } from 'src/composables/useContextMenu';
|
||||||
|
import SubMenu from 'src/components/SubMenu.vue';
|
||||||
|
import { QCard } from 'quasar';
|
||||||
|
|
||||||
|
const { connect, send } = useWebSocket('ws://127.0.0.1:8100/ws?id=quasar');
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
connect();
|
||||||
|
send({
|
||||||
|
subscribe: [
|
||||||
|
{
|
||||||
|
path: '.*',
|
||||||
|
depth: 2,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
if (response?.subscribe) {
|
||||||
|
subs.value = response.subscribe;
|
||||||
|
dbmData.value = buildTree(subs.value);
|
||||||
|
} else {
|
||||||
|
console.log('Response from server:', response);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error('Error fetching data:', err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// function updateValue(uuid: string, newValue: string) {
|
||||||
|
// const target = subs.value.find((s) => s.uuid === uuid);
|
||||||
|
// if (target) {
|
||||||
|
// target.value = newValue;
|
||||||
|
// treeData.value = buildTree(subs.value);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
function onValueEdit(node: TreeNode) {
|
||||||
|
console.log(88, node.value);
|
||||||
|
|
||||||
|
const sub = subs.value.find((s) => s.path === node.key);
|
||||||
|
if (sub) {
|
||||||
|
sub.value = node.value;
|
||||||
|
send({
|
||||||
|
set: [
|
||||||
|
{
|
||||||
|
path: sub.path ?? '',
|
||||||
|
value: Number(node.value),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
if (response?.subscribe) {
|
||||||
|
subs.value = response.subscribe;
|
||||||
|
dbmData.value = buildTree(subs.value);
|
||||||
|
} else {
|
||||||
|
console.log('Response from server:', response);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error('Error fetching data:', err);
|
||||||
|
});
|
||||||
|
// Optionally: push to server or log
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
27
src/components/EssentialLink.vue
Normal file
27
src/components/EssentialLink.vue
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<template>
|
||||||
|
<q-item clickable tag="a" target="_blank" :href="link">
|
||||||
|
<q-item-section v-if="icon" avatar>
|
||||||
|
<q-icon :name="icon" />
|
||||||
|
</q-item-section>
|
||||||
|
|
||||||
|
<q-item-section>
|
||||||
|
<q-item-label>{{ title }}</q-item-label>
|
||||||
|
<q-item-label caption>{{ caption }}</q-item-label>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
export interface EssentialLinkProps {
|
||||||
|
title: string;
|
||||||
|
caption?: string;
|
||||||
|
link?: string;
|
||||||
|
icon?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
withDefaults(defineProps<EssentialLinkProps>(), {
|
||||||
|
caption: '',
|
||||||
|
link: '#',
|
||||||
|
icon: '',
|
||||||
|
});
|
||||||
|
</script>
|
37
src/components/ExampleComponent.vue
Normal file
37
src/components/ExampleComponent.vue
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<p>{{ title }}</p>
|
||||||
|
<ul>
|
||||||
|
<li v-for="todo in todos" :key="todo.id" @click="increment">
|
||||||
|
{{ todo.id }} - {{ todo.content }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>Count: {{ todoCount }} / {{ meta.totalCount }}</p>
|
||||||
|
<p>Active: {{ active ? 'yes' : 'no' }}</p>
|
||||||
|
<p>Clicks on todos: {{ clickCount }}</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import type { Todo, Meta } from './Models';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
title: string;
|
||||||
|
todos?: Todo[];
|
||||||
|
meta: Meta;
|
||||||
|
active: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
|
todos: () => [],
|
||||||
|
});
|
||||||
|
|
||||||
|
const clickCount = ref(0);
|
||||||
|
function increment() {
|
||||||
|
clickCount.value += 1;
|
||||||
|
return clickCount.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
const todoCount = computed(() => props.todos.length);
|
||||||
|
</script>
|
161
src/components/LightComponent.vue
Normal file
161
src/components/LightComponent.vue
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
<template>
|
||||||
|
<div class="q-pa-md">
|
||||||
|
<q-card>
|
||||||
|
<q-card-section class="q-mt-md q-mr-sm row items-start">
|
||||||
|
<div class="column justify-center q-mr-lg" style="height: 200px">
|
||||||
|
<q-btn
|
||||||
|
@click="light.State = !light.State"
|
||||||
|
round
|
||||||
|
:color="light.State ? 'yellow' : 'blue'"
|
||||||
|
icon="lightbulb"
|
||||||
|
style="position: relative"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<q-slider
|
||||||
|
label
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Brightness"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
color="black"
|
||||||
|
style="opacity: 0.5"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Red"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="red"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Green"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="green"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Blue"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="blue"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.White"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="grey"
|
||||||
|
style="opacity: 0.3"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Amber"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="amber"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Purple"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="purple"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
</q-card-section>
|
||||||
|
</q-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { watch, onMounted, reactive } from 'vue';
|
||||||
|
import { useWebSocket } from 'src/composables/useWebSocket';
|
||||||
|
import type { Light } from 'src/models/Light';
|
||||||
|
|
||||||
|
const { connect, send } = useWebSocket('ws://127.0.0.1:8100/ws?id=quasar');
|
||||||
|
|
||||||
|
const light = reactive<Light>({
|
||||||
|
State: false,
|
||||||
|
Brightness: 0,
|
||||||
|
Red: 0,
|
||||||
|
Green: 0,
|
||||||
|
Blue: 0,
|
||||||
|
White: 0,
|
||||||
|
Amber: 0,
|
||||||
|
Purple: 0,
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
connect();
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(light, (newVal: Light) => {
|
||||||
|
send({
|
||||||
|
set: [
|
||||||
|
{
|
||||||
|
path: 'Light:001:001',
|
||||||
|
value: Math.round((255 / 10000) * newVal.Red * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'Light:001:002',
|
||||||
|
value: Math.round((255 / 10000) * newVal.Green * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'Light:001:003',
|
||||||
|
value: Math.round((255 / 10000) * newVal.Blue * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'Light:001:004',
|
||||||
|
value: Math.round((255 / 10000) * newVal.White * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'Light:001:005',
|
||||||
|
value: Math.round((255 / 10000) * newVal.Amber * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'Light:001:006',
|
||||||
|
value: Math.round((255 / 10000) * newVal.Purple * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log('Response from server:', response);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error('Error fetching data:', err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
8
src/components/Models.ts
Normal file
8
src/components/Models.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export interface Todo {
|
||||||
|
id: number;
|
||||||
|
content: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Meta {
|
||||||
|
totalCount: number;
|
||||||
|
}
|
315
src/components/MovingHead.vue
Normal file
315
src/components/MovingHead.vue
Normal file
@@ -0,0 +1,315 @@
|
|||||||
|
// channel description // 1 Red // 2 Red fine // 3 Green // 4 Green fine // 5 Blue // 6 Blue fine //
|
||||||
|
7 White // 8 White fine // 9 Linear CTO ??? // 10 Macro Color ??? // 11 Strobe // 12 Dimmer // 13
|
||||||
|
Dimer fine // 14 Pan // 15 Pan fine // 16 Tilt // 17 Tilt fine // 18 Function // 19 Reset // 20 Zoom
|
||||||
|
// 21 Zoom rotation // 22 Shape selection // 23 Shape speed // 24 Shape fade // 25 Shape Red // 26
|
||||||
|
Shape Green // 27 Shape Blue // 28 Shape White // 29 Shape Dimmer // 30 Background dimmer // 31
|
||||||
|
Shape transition // 32 Shape Offset // 33 Foreground strobe // 34 Background strobe // 35 Background
|
||||||
|
select
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="q-pa-md">
|
||||||
|
<q-card>
|
||||||
|
<q-card-section class="q-mt-md q-mr-sm row items-start">
|
||||||
|
<div class="column justify-center q-mr-lg" style="height: 200px">
|
||||||
|
<q-btn
|
||||||
|
@click="light.State = !light.State"
|
||||||
|
round
|
||||||
|
:color="light.State ? 'yellow' : 'blue'"
|
||||||
|
icon="lightbulb"
|
||||||
|
style="position: relative"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<q-item-label class="text-bold">Dimmer</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
label
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Brightness"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
color="black"
|
||||||
|
style="opacity: 0.5"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">Red</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Red"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="red"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">Green</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Green"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="green"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">Blue</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Blue"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="blue"
|
||||||
|
style="opacity: 0.8"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">White</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.White"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="grey"
|
||||||
|
style="opacity: 0.3"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">Zoom</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-lg"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Zoom"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="black"
|
||||||
|
style="opacity: 1"
|
||||||
|
/>
|
||||||
|
<q-item-label class="text-bold">Tilt</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-mr-sm"
|
||||||
|
vertical
|
||||||
|
reverse
|
||||||
|
v-model="light.Tilt"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="black"
|
||||||
|
style="opacity: 1"
|
||||||
|
/>
|
||||||
|
<div class="column items-center q-ml-sm">
|
||||||
|
<div
|
||||||
|
class="bg-grey-3"
|
||||||
|
style="
|
||||||
|
width: 200px;
|
||||||
|
height: 200px;
|
||||||
|
position: relative;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-radius: 8px;
|
||||||
|
"
|
||||||
|
@mousedown="startDrag"
|
||||||
|
@mousemove="onDrag"
|
||||||
|
@mouseup="stopDrag"
|
||||||
|
@mouseleave="stopDrag"
|
||||||
|
@touchstart="startTouch"
|
||||||
|
@touchmove="onTouch"
|
||||||
|
@touchend="stopDrag"
|
||||||
|
ref="pad"
|
||||||
|
>
|
||||||
|
<div class="marker" :style="markerStyle" :class="{ crosshair: dragging }"></div>
|
||||||
|
</div>
|
||||||
|
<q-item-label class="text-bold">Pan</q-item-label>
|
||||||
|
<q-slider
|
||||||
|
class="q-ml-sm"
|
||||||
|
v-model="light.Pan"
|
||||||
|
:min="0"
|
||||||
|
:max="100"
|
||||||
|
:step="1"
|
||||||
|
label
|
||||||
|
color="black"
|
||||||
|
style="opacity: 1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</q-card-section>
|
||||||
|
</q-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, watch, onMounted, reactive, computed } from 'vue';
|
||||||
|
import { useWebSocket } from 'src/composables/useWebSocket';
|
||||||
|
import type { MovingHead } from 'src/models/MovingHead';
|
||||||
|
|
||||||
|
const { connect, send } = useWebSocket('ws://127.0.0.1:8100/ws?id=quasar');
|
||||||
|
const pad = ref<HTMLElement | null>(null);
|
||||||
|
const dragging = ref(false);
|
||||||
|
|
||||||
|
const light = reactive<MovingHead>({
|
||||||
|
State: false,
|
||||||
|
Brightness: 0,
|
||||||
|
Red: 0,
|
||||||
|
Green: 0,
|
||||||
|
Blue: 0,
|
||||||
|
White: 0,
|
||||||
|
Zoom: 0,
|
||||||
|
Pan: 50,
|
||||||
|
Tilt: 50,
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
connect();
|
||||||
|
});
|
||||||
|
|
||||||
|
const markerStyle = computed(() => ({
|
||||||
|
position: 'absolute' as const,
|
||||||
|
top: `${2 * (100 - light.Tilt)}px`,
|
||||||
|
left: `${2 * light.Pan}px`,
|
||||||
|
width: '12px',
|
||||||
|
height: '12px',
|
||||||
|
borderRadius: '50%',
|
||||||
|
background: 'red',
|
||||||
|
border: '2px solid white',
|
||||||
|
cursor: 'pointer',
|
||||||
|
transform: 'translate(-50%, -50%)',
|
||||||
|
}));
|
||||||
|
|
||||||
|
function startDrag(e: MouseEvent) {
|
||||||
|
dragging.value = true;
|
||||||
|
updatePosition(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onDrag(e: MouseEvent) {
|
||||||
|
if (!dragging.value) return;
|
||||||
|
updatePosition(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
function stopDrag() {
|
||||||
|
dragging.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function startTouch(e: TouchEvent) {
|
||||||
|
const touch = e.touches[0];
|
||||||
|
if (!touch) return;
|
||||||
|
dragging.value = true;
|
||||||
|
updatePosition(touch);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onTouch(e: TouchEvent) {
|
||||||
|
if (!dragging.value) return;
|
||||||
|
const touch = e.touches[0];
|
||||||
|
if (!touch) return;
|
||||||
|
updatePosition(touch);
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePosition(e: MouseEvent | Touch) {
|
||||||
|
if (!pad.value) return;
|
||||||
|
const rect = pad.value.getBoundingClientRect();
|
||||||
|
const newX = Math.min(Math.max(0, e.clientX - rect.left), rect.width);
|
||||||
|
const newY = Math.min(Math.max(0, e.clientY - rect.top), rect.height);
|
||||||
|
|
||||||
|
light.Pan = Math.round((newX / rect.width) * 100);
|
||||||
|
light.Tilt = Math.round(100 - (newY / rect.height) * 100);
|
||||||
|
console.log(light.Pan, light.Tilt);
|
||||||
|
}
|
||||||
|
|
||||||
|
watch(light, (newVal: MovingHead) => {
|
||||||
|
send({
|
||||||
|
set: [
|
||||||
|
{
|
||||||
|
// Red
|
||||||
|
path: 'MovingHead:001:Red',
|
||||||
|
value: Math.round((255 / 100) * newVal.Red * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//Red fine
|
||||||
|
path: 'MovingHead:001:RedFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Red * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Green
|
||||||
|
path: 'MovingHead:001:Green',
|
||||||
|
value: Math.round((255 / 100) * newVal.Green * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Green fine
|
||||||
|
path: 'MovingHead:001:GreenFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Green * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Blue
|
||||||
|
path: 'MovingHead:001:Blue',
|
||||||
|
value: Math.round((255 / 100) * newVal.Blue * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Blue fine
|
||||||
|
path: 'MovingHead:001:BlueFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Blue * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// White
|
||||||
|
path: 'MovingHead:001:White',
|
||||||
|
value: Math.round((255 / 100) * newVal.White * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// White fine
|
||||||
|
path: 'MovingHead:001:WhiteFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.White * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Dimmer
|
||||||
|
path: 'MovingHead:001:Dimmer',
|
||||||
|
value: Math.round((255 / 100) * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Dimmer fine
|
||||||
|
path: 'MovingHead:001:DimmerFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Brightness * Number(newVal.State)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Zoom
|
||||||
|
path: 'MovingHead:001:Zoom',
|
||||||
|
value: Math.round((255 / 100) * newVal.Zoom),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Pan
|
||||||
|
path: 'MovingHead:001:Pan',
|
||||||
|
value: Math.round((255 / 100) * newVal.Pan),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Pan fine
|
||||||
|
path: 'MovingHead:001:PanFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Pan),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Tilt
|
||||||
|
path: 'MovingHead:001:Tilt',
|
||||||
|
value: Math.round((255 / 100) * newVal.Tilt),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Tilt fine
|
||||||
|
path: 'MovingHead:001:TiltFine',
|
||||||
|
value: Math.round((255 / 100) * newVal.Tilt),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
console.log('Response from server:', response);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error('Error fetching data:', err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
48
src/components/SubMenu.vue
Normal file
48
src/components/SubMenu.vue
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<template>
|
||||||
|
<q-menu v-model="contextMenu.show" :offset="[contextMenu.x, contextMenu.y]" context-menu>
|
||||||
|
<q-list>
|
||||||
|
<q-item clickable v-close-popup @click="handleAction('Add')">
|
||||||
|
<q-item-section>Add Datapoint</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item clickable v-close-popup @click="handleAction('Delete')">
|
||||||
|
<q-item-section>Delete Datapoint</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
|
</q-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { contextMenu } from 'src/composables/useContextMenu';
|
||||||
|
import { useWebSocket } from 'src/composables/useWebSocket';
|
||||||
|
const { send } = useWebSocket('ws://127.0.0.1:8100/ws?id=quasar');
|
||||||
|
|
||||||
|
function handleAction(action: string) {
|
||||||
|
console.log(`Action '${action}' on node:`, contextMenu.value.node);
|
||||||
|
// Add your actual logic here
|
||||||
|
switch (action) {
|
||||||
|
case 'Add':
|
||||||
|
console.log(2);
|
||||||
|
send({
|
||||||
|
get: [
|
||||||
|
{
|
||||||
|
path: '.*',
|
||||||
|
query: {
|
||||||
|
depth: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
if (response?.get) {
|
||||||
|
console.log(response);
|
||||||
|
} else {
|
||||||
|
console.log('Response from server:', response);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error('Error fetching data:', err);
|
||||||
|
});
|
||||||
|
console.log(4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
65
src/composables/dbmTree.ts
Normal file
65
src/composables/dbmTree.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import type { Subs } from 'src/models/Subscribe';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
export const dbmData = ref<TreeNode[]>(buildTree([]));
|
||||||
|
|
||||||
|
export const subs = ref<Subs>([]);
|
||||||
|
|
||||||
|
export interface TreeNode {
|
||||||
|
path: string;
|
||||||
|
key?: string; // optional: useful for QTree's node-key
|
||||||
|
value?: string | undefined;
|
||||||
|
children?: TreeNode[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function buildTree(subs: Subs): TreeNode[] {
|
||||||
|
type TreeMap = {
|
||||||
|
[key: string]: {
|
||||||
|
__children: TreeMap;
|
||||||
|
uuid?: string;
|
||||||
|
value?: string | undefined;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const root: TreeMap = {};
|
||||||
|
|
||||||
|
for (const item of subs) {
|
||||||
|
const pathParts = item.path?.split(':') ?? [];
|
||||||
|
let current = root;
|
||||||
|
|
||||||
|
for (let i = 0; i < pathParts.length; i++) {
|
||||||
|
const part = pathParts[i];
|
||||||
|
|
||||||
|
if (!part) continue;
|
||||||
|
|
||||||
|
if (!current[part]) {
|
||||||
|
current[part] = { __children: {} };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Optionally attach uuid only at the final part
|
||||||
|
if (i === pathParts.length - 1 && item.uuid) {
|
||||||
|
current[part].uuid = item.uuid;
|
||||||
|
current[part].value = item.value !== undefined ? String(item.value) : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
current = current[part].__children;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function convert(map: TreeMap): TreeNode[] {
|
||||||
|
return Object.entries(map).map(([path, node]) => ({
|
||||||
|
path,
|
||||||
|
key: node.uuid ?? path, // `key` is used by QTree
|
||||||
|
value: node.value,
|
||||||
|
children: convert(node.__children),
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
path: 'DBM',
|
||||||
|
key: 'DBM',
|
||||||
|
children: convert(root),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
21
src/composables/useContextMenu.ts
Normal file
21
src/composables/useContextMenu.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
export const contextMenu = ref({
|
||||||
|
show: false,
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
anchor: 'top left',
|
||||||
|
self: 'top left',
|
||||||
|
node: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
export function openContextMenu(event: MouseEvent, node: undefined) {
|
||||||
|
contextMenu.value = {
|
||||||
|
show: true,
|
||||||
|
x: event.clientX,
|
||||||
|
y: event.clientY,
|
||||||
|
anchor: 'top left',
|
||||||
|
self: 'top left',
|
||||||
|
node: node ?? null,
|
||||||
|
};
|
||||||
|
}
|
126
src/composables/useWebSocket.ts
Normal file
126
src/composables/useWebSocket.ts
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
import type { Response } from 'src/models/Response';
|
||||||
|
import type { Publish } from 'src/models/Publish';
|
||||||
|
import type { Request } from 'src/models/Request';
|
||||||
|
import { subs, buildTree, dbmData } from 'src/composables/dbmTree';
|
||||||
|
import { onBeforeUnmount, ref } from 'vue';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
const pendingResponses = new Map<string, (data: Response | undefined) => void>();
|
||||||
|
|
||||||
|
let socket: WebSocket | null = null;
|
||||||
|
const isConnected = ref(false);
|
||||||
|
|
||||||
|
export function useWebSocket(url: string) {
|
||||||
|
const $q = useQuasar();
|
||||||
|
|
||||||
|
const connect = () => {
|
||||||
|
socket = new WebSocket(url);
|
||||||
|
|
||||||
|
socket.onopen = () => {
|
||||||
|
console.log('WebSocket connected');
|
||||||
|
isConnected.value = true;
|
||||||
|
};
|
||||||
|
socket.onclose = () => {
|
||||||
|
isConnected.value = false;
|
||||||
|
$q.notify({
|
||||||
|
message: 'WebSocket disconnected',
|
||||||
|
color: 'orange',
|
||||||
|
position: 'bottom-right',
|
||||||
|
icon: 'warning',
|
||||||
|
timeout: 5000,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
socket.onerror = (err) => {
|
||||||
|
isConnected.value = false;
|
||||||
|
$q.notify({
|
||||||
|
message: `WebSocket error: ${err.type}`,
|
||||||
|
color: 'red',
|
||||||
|
position: 'bottom-right',
|
||||||
|
icon: 'error',
|
||||||
|
timeout: 5000,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
socket.onmessage = (event) => {
|
||||||
|
const message = JSON.parse(event.data);
|
||||||
|
const id = message.id;
|
||||||
|
|
||||||
|
if (id && pendingResponses.has(id)) {
|
||||||
|
pendingResponses.get(id)?.(message); // resolve the promise
|
||||||
|
pendingResponses.delete(id);
|
||||||
|
} else if (message.publish) {
|
||||||
|
message.publish.forEach((pub: Publish) => {
|
||||||
|
const target = subs.value.find((s) => s.path === pub.path);
|
||||||
|
if (target) {
|
||||||
|
target.value = pub.value ?? '';
|
||||||
|
dbmData.value = buildTree(subs.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.warn('Unmatched message:', message);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const close = () => {
|
||||||
|
if (socket) {
|
||||||
|
socket.close();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
close();
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
connect,
|
||||||
|
send,
|
||||||
|
close,
|
||||||
|
socket,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function waitForSocketConnection(): Promise<void> {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const maxWait = 5000; // timeout after 5 seconds
|
||||||
|
const interval = 50;
|
||||||
|
let waited = 0;
|
||||||
|
|
||||||
|
const check = () => {
|
||||||
|
if (socket && socket.readyState === WebSocket.OPEN) {
|
||||||
|
resolve();
|
||||||
|
} else {
|
||||||
|
waited += interval;
|
||||||
|
if (waited >= maxWait) {
|
||||||
|
reject(new Error('WebSocket connection timeout'));
|
||||||
|
} else {
|
||||||
|
setTimeout(check, interval);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
check();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function send(data: Request): Promise<Response | undefined> {
|
||||||
|
const id = generateId();
|
||||||
|
const payload = { ...data, id };
|
||||||
|
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
pendingResponses.set(id, resolve);
|
||||||
|
|
||||||
|
waitForSocketConnection()
|
||||||
|
.then(() => {
|
||||||
|
socket?.send(JSON.stringify(payload));
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.warn('WebSocket send failed:', err);
|
||||||
|
pendingResponses.delete(id);
|
||||||
|
resolve(undefined); // or reject(err) if strict failure is desired
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function generateId(): string {
|
||||||
|
return Math.random().toString(36).substr(2, 9); // simple unique ID
|
||||||
|
}
|
1
src/css/app.scss
Normal file
1
src/css/app.scss
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// app global css in SCSS form
|
25
src/css/quasar.variables.scss
Normal file
25
src/css/quasar.variables.scss
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Quasar SCSS (& Sass) Variables
|
||||||
|
// --------------------------------------------------
|
||||||
|
// To customize the look and feel of this app, you can override
|
||||||
|
// the Sass/SCSS variables found in Quasar's source Sass/SCSS files.
|
||||||
|
|
||||||
|
// Check documentation for full list of Quasar variables
|
||||||
|
|
||||||
|
// Your own variables (that are declared here) and Quasar's own
|
||||||
|
// ones will be available out of the box in your .vue/.scss/.sass files
|
||||||
|
|
||||||
|
// It's highly recommended to change the default colors
|
||||||
|
// to match your app's branding.
|
||||||
|
// Tip: Use the "Theme Builder" on Quasar's documentation website.
|
||||||
|
|
||||||
|
$primary : #1976D2;
|
||||||
|
$secondary : #26A69A;
|
||||||
|
$accent : #9C27B0;
|
||||||
|
|
||||||
|
$dark : #1D1D1D;
|
||||||
|
$dark-page : #121212;
|
||||||
|
|
||||||
|
$positive : #21BA45;
|
||||||
|
$negative : #C10015;
|
||||||
|
$info : #31CCEC;
|
||||||
|
$warning : #F2C037;
|
7
src/env.d.ts
vendored
Normal file
7
src/env.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
declare namespace NodeJS {
|
||||||
|
interface ProcessEnv {
|
||||||
|
NODE_ENV: string;
|
||||||
|
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
|
||||||
|
VUE_ROUTER_BASE: string | undefined;
|
||||||
|
}
|
||||||
|
}
|
38
src/layouts/MainLayout.vue
Normal file
38
src/layouts/MainLayout.vue
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<template>
|
||||||
|
<q-layout view="lHh Lpr lFf">
|
||||||
|
<q-header elevated>
|
||||||
|
<q-toolbar>
|
||||||
|
<q-btn flat dense round icon="menu" aria-label="Menu" @click="toggleLeftDrawer" />
|
||||||
|
|
||||||
|
<q-toolbar-title> Light Control </q-toolbar-title>
|
||||||
|
|
||||||
|
<div>Version 0.0.1</div>
|
||||||
|
</q-toolbar>
|
||||||
|
</q-header>
|
||||||
|
|
||||||
|
<q-drawer v-model="leftDrawerOpen" show-if-above bordered>
|
||||||
|
<q-list>
|
||||||
|
<q-item to="/" clickable v-ripple>
|
||||||
|
<q-item-section>Home</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
|
||||||
|
<q-item to="/data" clickable v-ripple>
|
||||||
|
<q-item-section>Data</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
|
</q-drawer>
|
||||||
|
<q-page-container>
|
||||||
|
<router-view />
|
||||||
|
</q-page-container>
|
||||||
|
</q-layout>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const leftDrawerOpen = ref(false);
|
||||||
|
|
||||||
|
function toggleLeftDrawer() {
|
||||||
|
leftDrawerOpen.value = !leftDrawerOpen.value;
|
||||||
|
}
|
||||||
|
</script>
|
14
src/models/Get.ts
Normal file
14
src/models/Get.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
type Query = {
|
||||||
|
depth: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
type Get = {
|
||||||
|
uuid?: string;
|
||||||
|
path?: string;
|
||||||
|
type?: string;
|
||||||
|
rights?: string;
|
||||||
|
value?: undefined;
|
||||||
|
query?: Query;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Gets = Get[];
|
10
src/models/Light.ts
Normal file
10
src/models/Light.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
export type Light = {
|
||||||
|
State: boolean;
|
||||||
|
Brightness: number;
|
||||||
|
Red: number;
|
||||||
|
Green: number;
|
||||||
|
Blue: number;
|
||||||
|
White: number;
|
||||||
|
Amber: number;
|
||||||
|
Purple: number;
|
||||||
|
};
|
11
src/models/MovingHead.ts
Normal file
11
src/models/MovingHead.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
export type MovingHead = {
|
||||||
|
State: boolean;
|
||||||
|
Brightness: number;
|
||||||
|
Red: number;
|
||||||
|
Green: number;
|
||||||
|
Blue: number;
|
||||||
|
White: number;
|
||||||
|
Zoom: number;
|
||||||
|
Pan: number;
|
||||||
|
Tilt: number;
|
||||||
|
};
|
8
src/models/Publish.ts
Normal file
8
src/models/Publish.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export type Publish = {
|
||||||
|
event: string;
|
||||||
|
uuid?: string;
|
||||||
|
path?: string;
|
||||||
|
type?: string;
|
||||||
|
value?: undefined;
|
||||||
|
};
|
||||||
|
export type Pubs = Publish[];
|
10
src/models/Request.ts
Normal file
10
src/models/Request.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import type { Gets } from './Get';
|
||||||
|
import type { Sets } from './Set';
|
||||||
|
import type { Subs } from './Subscribe';
|
||||||
|
|
||||||
|
export type Request = {
|
||||||
|
get?: Gets;
|
||||||
|
set?: Sets;
|
||||||
|
subscribe?: Subs;
|
||||||
|
unsubscribe?: Subs;
|
||||||
|
};
|
11
src/models/Response.ts
Normal file
11
src/models/Response.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import type { Gets } from './Get';
|
||||||
|
import type { Sets } from './Set';
|
||||||
|
import type { Subs } from './Subscribe';
|
||||||
|
import type { Pubs } from './Publish';
|
||||||
|
|
||||||
|
export type Response = {
|
||||||
|
get?: Gets;
|
||||||
|
set?: Sets;
|
||||||
|
subscribe?: Subs;
|
||||||
|
publish?: Pubs;
|
||||||
|
};
|
6
src/models/Set.ts
Normal file
6
src/models/Set.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
type Set = {
|
||||||
|
path: string;
|
||||||
|
value: number | undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Sets = Set[];
|
8
src/models/Subscribe.ts
Normal file
8
src/models/Subscribe.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export type Subscribe = {
|
||||||
|
uuid?: string;
|
||||||
|
path?: string;
|
||||||
|
depth?: number;
|
||||||
|
value?: string | undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Subs = Subscribe[];
|
8
src/pages/DataPage.vue
Normal file
8
src/pages/DataPage.vue
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<template>
|
||||||
|
<h1>Test Page</h1>
|
||||||
|
<DBMTree></DBMTree>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import DBMTree from 'src/components/DBMTree.vue';
|
||||||
|
</script>
|
27
src/pages/ErrorNotFound.vue
Normal file
27
src/pages/ErrorNotFound.vue
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<template>
|
||||||
|
<div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
|
||||||
|
<div>
|
||||||
|
<div style="font-size: 30vh">
|
||||||
|
404
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-h2" style="opacity:.4">
|
||||||
|
Oops. Nothing here...
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<q-btn
|
||||||
|
class="q-mt-xl"
|
||||||
|
color="white"
|
||||||
|
text-color="blue"
|
||||||
|
unelevated
|
||||||
|
to="/"
|
||||||
|
label="Go Home"
|
||||||
|
no-caps
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
//
|
||||||
|
</script>
|
11
src/pages/IndexPage.vue
Normal file
11
src/pages/IndexPage.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<template>
|
||||||
|
<q-page>
|
||||||
|
<light-component />
|
||||||
|
<moving-head></moving-head>
|
||||||
|
</q-page>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import LightComponent from 'src/components/LightComponent.vue';
|
||||||
|
import MovingHead from 'src/components/MovingHead.vue';
|
||||||
|
</script>
|
35
src/router/index.ts
Normal file
35
src/router/index.ts
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
import { defineRouter } from '#q-app/wrappers';
|
||||||
|
import {
|
||||||
|
createMemoryHistory,
|
||||||
|
createRouter,
|
||||||
|
createWebHashHistory,
|
||||||
|
createWebHistory,
|
||||||
|
} from 'vue-router';
|
||||||
|
import routes from './routes';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If not building with SSR mode, you can
|
||||||
|
* directly export the Router instantiation;
|
||||||
|
*
|
||||||
|
* The function below can be async too; either use
|
||||||
|
* async/await or return a Promise which resolves
|
||||||
|
* with the Router instance.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export default defineRouter(function (/* { store, ssrContext } */) {
|
||||||
|
const createHistory = process.env.SERVER
|
||||||
|
? createMemoryHistory
|
||||||
|
: (process.env.VUE_ROUTER_MODE === 'history' ? createWebHistory : createWebHashHistory);
|
||||||
|
|
||||||
|
const Router = createRouter({
|
||||||
|
scrollBehavior: () => ({ left: 0, top: 0 }),
|
||||||
|
routes,
|
||||||
|
|
||||||
|
// Leave this as is and make changes in quasar.conf.js instead!
|
||||||
|
// quasar.conf.js -> build -> vueRouterMode
|
||||||
|
// quasar.conf.js -> build -> publicPath
|
||||||
|
history: createHistory(process.env.VUE_ROUTER_BASE),
|
||||||
|
});
|
||||||
|
|
||||||
|
return Router;
|
||||||
|
});
|
21
src/router/routes.ts
Normal file
21
src/router/routes.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import type { RouteRecordRaw } from 'vue-router';
|
||||||
|
|
||||||
|
const routes: RouteRecordRaw[] = [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
component: () => import('layouts/MainLayout.vue'),
|
||||||
|
children: [
|
||||||
|
{ path: '', component: () => import('pages/IndexPage.vue') },
|
||||||
|
{ path: '/data', component: () => import('pages/DataPage.vue') },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
|
// Always leave this as last one,
|
||||||
|
// but you can also remove it
|
||||||
|
{
|
||||||
|
path: '/:catchAll(.*)*',
|
||||||
|
component: () => import('pages/ErrorNotFound.vue'),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default routes;
|
3
tsconfig.json
Normal file
3
tsconfig.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"extends": "./.quasar/tsconfig.json"
|
||||||
|
}
|
Reference in New Issue
Block a user