提交初始代码

This commit is contained in:
fangxiang 2021-08-05 14:23:45 +08:00
commit ff030f8b6b
70 changed files with 8692 additions and 0 deletions

9
.editorconfig Normal file
View File

@ -0,0 +1,9 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

35
.gitignore vendored Normal file
View File

@ -0,0 +1,35 @@
.DS_Store
.thumbs.db
node_modules
.vscode
# Quasar core related directories
.quasar
/dist
# 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
# BEX related directories and files
/src-bex/www
/src-bex/js/core
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
*.suo
*.ntvs*
*.njsproj
*.sln

8
.postcssrc.js Normal file
View File

@ -0,0 +1,8 @@
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
plugins: [
// to edit target browsers: use "browserslist" field in package.json
require('autoprefixer')
]
}

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# Quasar App (media_player_web)
A Quasar Framework app
## Install the dependencies
```bash
yarn
```
### Start the app in development mode (hot-code reloading, error reporting, etc.)
```bash
quasar dev
```
### Build the app for production
```bash
quasar build
```
### Customize the configuration
See [Configuring quasar.conf.js](https://v2.quasar.dev/quasar-cli/quasar-conf-js).

15
babel.config.js Normal file
View File

@ -0,0 +1,15 @@
module.exports = api => {
return {
presets: [
[
'@quasar/babel-preset-app',
api.caller(caller => caller && caller.target === 'node')
? { targets: { node: 'current' } }
: {}
]
]
}
}

39
package.json Normal file
View File

@ -0,0 +1,39 @@
{
"name": "media_player_web",
"version": "0.0.1",
"description": "A Quasar Framework app",
"productName": "Quasar App",
"author": "fangxiang <fangxiang@cloudview.work>",
"private": true,
"scripts": {
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"quasar": "^2.0.0",
"vue-i18n": "^9.0.0-beta.0",
"vuex": "^4.0.1"
},
"devDependencies": {
"@quasar/app": "^3.0.0",
"@types/node": "^10.17.15"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

BIN
public/source_icon/hdmi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 730 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
public/source_icon/pdf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
public/source_icon/ppt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
public/source_icon/rtsp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 759 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 B

BIN
public/source_icon/web.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1009 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

220
quasar.conf.js Normal file
View File

@ -0,0 +1,220 @@
/*
* This file runs in a Node context (it's NOT transpiled by Babel), so use only
* the ES6 features that are supported by your Node version. https://node.green/
*/
// Configuration for your app
// https://v2.quasar.dev/quasar-cli/quasar-conf-js
const { configure } = require('quasar/wrappers');
module.exports = configure(function (ctx) {
return {
// https://v2.quasar.dev/quasar-cli/supporting-ts
supportTS: true,
// https://v2.quasar.dev/quasar-cli/prefetch-feature
// preFetch: true,
// app boot file (/src/boot)
// --> boot files are part of "main.js"
// https://v2.quasar.dev/quasar-cli/boot-files
boot: [
'i18n',
'axios',
],
// https://v2.quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css
css: [
'app.scss'
],
// https://github.com/quasarframework/quasar/tree/dev/extras
extras: [
// 'ionicons-v4',
// 'mdi-v5',
// 'fontawesome-v5',
// '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/quasar-conf-js#Property%3A-build
build: {
vueRouterMode: 'hash', // available values: 'hash', 'history'
// transpile: false,
// Add dependencies for transpiling with Babel (Array of string/regex)
// (from node_modules, which are by default not transpiled).
// Applies only if "transpile" is set to true.
// transpileDependencies: [],
// rtl: true, // https://v2.quasar.dev/options/rtl-support
// preloadChunks: true,
// showProgress: false,
// gzip: true,
// analyze: true,
// Options below are automatically set depending on the env, set them if you want to override
// extractCSS: false,
// https://v2.quasar.dev/quasar-cli/handling-webpack
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpack (/* chain */) {
//
},
},
// Full list of options: https://v2.quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer
devServer: {
https: false,
port: 8080,
open: true // opens browser window automatically
},
// https://v2.quasar.dev/quasar-cli/quasar-conf-js#Property%3A-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: []
},
// animations: 'all', // --- includes all animations
// https://v2.quasar.dev/options/animations
animations: [],
// https://v2.quasar.dev/quasar-cli/developing-ssr/configuring-ssr
ssr: {
pwa: false,
// manualStoreHydration: true,
// manualPostHydrationTrigger: true,
prodPort: 3000, // The default port that the production server should use
// (gets superseded if process.env.PORT is specified at runtime)
maxAge: 1000 * 60 * 60 * 24 * 30,
// Tell browser when a file from the server should expire from cache (in ms)
chainWebpackWebserver (/* chain */) {
//
},
middlewares: [
ctx.prod ? 'compression' : '',
'render' // keep this as last one
]
},
// https://v2.quasar.dev/quasar-cli/developing-pwa/configuring-pwa
pwa: {
workboxPluginMode: 'GenerateSW', // 'GenerateSW' or 'InjectManifest'
workboxOptions: {}, // only for GenerateSW
// for the custom service worker ONLY (/src-pwa/custom-service-worker.[js|ts])
// if using workbox in InjectManifest mode
chainWebpackCustomSW (/* chain */) {
//
},
manifest: {
name: `Quasar App`,
short_name: `Quasar App`,
description: `A Quasar Framework app`,
display: 'standalone',
orientation: 'portrait',
background_color: '#ffffff',
theme_color: '#027be3',
icons: [
{
src: 'icons/icon-128x128.png',
sizes: '128x128',
type: 'image/png'
},
{
src: 'icons/icon-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'icons/icon-256x256.png',
sizes: '256x256',
type: 'image/png'
},
{
src: 'icons/icon-384x384.png',
sizes: '384x384',
type: 'image/png'
},
{
src: 'icons/icon-512x512.png',
sizes: '512x512',
type: 'image/png'
}
]
}
},
// Full list of options: https://v2.quasar.dev/quasar-cli/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/developing-capacitor-apps/configuring-capacitor
capacitor: {
hideSplashscreen: true
},
// Full list of options: https://v2.quasar.dev/quasar-cli/developing-electron-apps/configuring-electron
electron: {
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: 'media_player_web'
},
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpack (/* chain */) {
// do something with the Electron main process Webpack cfg
// extendWebpackMain also available besides this chainWebpackMain
},
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpackPreload (/* chain */) {
// do something with the Electron main process Webpack cfg
// extendWebpackPreload also available besides this chainWebpackPreload
},
}
}
});

18
src/App.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<q-ajax-bar position="top" color="accent" size="5px" skip-hijack />
<router-view />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { useI18n } from 'vue-i18n';
export default defineComponent({
name: 'App',
setup() {
const $t = useI18n();
document.title = $t.t('title');
return {};
},
});
</script>

View 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
View File

30
src/boot/axios.ts Normal file
View File

@ -0,0 +1,30 @@
import { boot } from 'quasar/wrappers';
import axios, { AxiosInstance } from 'axios';
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$axios: AxiosInstance;
}
}
// Be careful when using SSR for cross-request state pollution
// due to creating a Singleton instance here;
// If any client changes this (global) instance, it might be a
// good idea to move this instance creation inside of the
// "export default () => {}" function below (which runs individually
// for each client)
const api = axios.create({ baseURL: 'https://api.example.com' });
export default boot(({ app }) => {
// for use inside Vue files (Options API) through this.$axios and this.$api
app.config.globalProperties.$axios = axios;
// ^ ^ ^ this will allow you to use this.$axios (for Vue Options API form)
// so you won't necessarily have to import axios in each vue file
app.config.globalProperties.$api = api;
// ^ ^ ^ this will allow you to use this.$api (for Vue Options API form)
// so you can easily perform requests against your app's API
});
export { api };

16
src/boot/i18n.ts Normal file
View File

@ -0,0 +1,16 @@
import { boot } from 'quasar/wrappers';
import { createI18n } from 'vue-i18n';
import messages from 'src/i18n';
const i18n = createI18n({
locale: 'zh-CN',
messages,
});
export default boot(({ app }) => {
// Set i18n instance on app
app.use(i18n);
});
export { i18n };

View File

@ -0,0 +1,236 @@
import { Protocol } from "src/entities/WSProtocol";
export default class ClientConnection {
ws: WebSocket | null = null;
url = "";
user_name = "";
password = "";
_is_login = false;
_rpc_id_counter = 0;
rpc_map = new Map<
number,
(is_fail: boolean, packet: Protocol.Commands, data: string) => void
>();
public login_callback:
| ((this: ClientConnection, logined: boolean) => void)
| null = null;
public message_callback:
| ((
this: ClientConnection,
command: string,
packet: Protocol.Commands,
data: string
) => void)
| null = null;
constructor(
url: string,
user_name?: string | null,
password?: string | null
) {
this.reconnectTo(url, user_name, password);
}
get is_connected() {
return this.ws && this.ws.readyState == WebSocket.OPEN;
}
get is_login() {
return this._is_login;
}
public reconnectTo(
url: string,
user_name?: string | null,
password?: string | null
) {
this.url = url;
this.user_name = user_name ?? "";
this.password = password ?? "";
if (this.ws) {
this.ws.close();
}
this.ws = new WebSocket(url);
this.initializeWs();
}
initializeWs() {
if (this.ws) {
this.ws.onclose = (ev) => {
this.onClose(ev);
};
this.ws.onerror = (ev) => {
this.onError(ev);
};
this.ws.onopen = (ev) => {
this.onOpen(ev);
};
this.ws.onmessage = (ev) => {
this.onMessage(ev);
};
}
}
login() {
if (this.is_connected) {
const request = new Protocol.LoginRequest(this.user_name, this.password);
this.ws?.send(JSON.stringify(request));
}
}
onClose(ev: CloseEvent) {
this._is_login = false;
console.log("onClose");
}
onError(ev: Event) {
this._is_login = false;
setTimeout(() => {
this.reconnectTo(this.url, this.user_name, this.password);
}, 5000);
}
onOpen(ev: Event) {
this._is_login = false;
this.login();
}
onMessage(ev: MessageEvent) {
try {
const packet = JSON.parse(ev.data) as Protocol.PacketEntity;
if (packet) {
if (packet.has_exception) {
console.error(ev.data);
}
if (Protocol.Commands.AllCommands.has(packet.command)) {
if (
packet.flag == Protocol.PacketEntity.FLAG_RESPONSE ||
packet.flag == Protocol.PacketEntity.FLAG_NOTIFY
) {
if (packet.command == Protocol.Commands.kLogin) {
const login_response = JSON.parse(
ev.data
) as Protocol.LoginResponse;
if (login_response) {
this._is_login =
!login_response.has_exception && login_response.success;
if (
this.login_callback &&
typeof this.login_callback == "function"
) {
this.login_callback(this._is_login);
}
}
}
if (this.rpc_map.has(packet.rpc_id)) {
const f = this.rpc_map.get(packet.rpc_id);
if (f && typeof f == "function") {
f(false, packet, ev.data);
this.rpc_map.delete(packet.rpc_id);
}
}
if (this.message_callback) {
this.message_callback(packet.command, packet, ev.data);
}
}
}
}
} catch (e) {
console.error(e);
}
}
public async doRpc(reuqest: any | Protocol.PacketEntity) {
return new Promise((resolve, reject) => {
if (!reuqest) {
reject();
}
const rpc_id = ++this._rpc_id_counter;
if (this.rpc_map.has(rpc_id)) {
const f = this.rpc_map.get(rpc_id);
if (f && typeof f == "function") {
f(true, new Protocol.Commands(), "");
this.rpc_map.delete(rpc_id);
}
}
reuqest.rpc_id = rpc_id;
this.ws?.send(JSON.stringify(reuqest));
this.rpc_map.set(
rpc_id,
(is_fail: boolean, packet: Protocol.Commands, data: string) => {
if (is_fail) {
reject();
} else {
try {
const response = JSON.parse(
data
) as Protocol.GetApplicationConfigResponseEntity;
if (response) {
resolve(response);
} else {
reject();
console.log("reject");
}
} catch {
reject();
console.log("reject");
}
}
}
);
});
}
public async getSignalSources() {
return new Promise((resolve, reject) => {
const rpc_id = ++this._rpc_id_counter;
if (this.rpc_map.has(rpc_id)) {
const f = this.rpc_map.get(rpc_id);
if (f && typeof f == "function") {
f(true, new Protocol.Commands(), "");
this.rpc_map.delete(rpc_id);
}
}
this.ws?.send(
JSON.stringify(new Protocol.GetSignalSourcesRequest(rpc_id))
);
this.rpc_map.set(
rpc_id,
(is_fail: boolean, packet: Protocol.Commands, data: string) => {
if (is_fail) {
reject();
} else {
try {
const response = JSON.parse(
data
) as Protocol.GetSignalSourcesResponse;
if (response) {
resolve(response);
} else {
reject();
console.log("reject");
}
} catch {
reject();
console.log("reject");
}
}
}
);
});
}
public async getApplicationSettins() {
try {
return (await this.doRpc(
new Protocol.GetApplicationConfigRequestEntity()
)) as Protocol.GetApplicationConfigResponseEntity;
} catch (e) {
console.error(e);
}
}
}

9
src/common/Common.ts Normal file
View File

@ -0,0 +1,9 @@
export namespace Common {
export const waitFor = async (ms: number) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve(null);
}, ms);
});
};
}

96
src/common/GlobalData.ts Normal file
View File

@ -0,0 +1,96 @@
import { SessionStorage } from "quasar";
import ApplicationConfigEntity from "src/entities/ApplicationConfigEntity";
import { SignalSourceEntity } from "src/entities/SignalSourceEntity";
import ClientConnection from "./ClientConnection";
export default class GlobalData {
private static _instance: GlobalData | null = null;
public static get kWebsocketResource() {
return "/media_player/control";
}
public static get kDefaultWebsocektPort() {
return 61428;
}
private _current_client_name = "";
public static getInstance() {
if (!GlobalData._instance) {
GlobalData._instance = new GlobalData();
}
return GlobalData._instance;
}
private _application_config: ApplicationConfigEntity =
new ApplicationConfigEntity();
public get applicationConfig() {
return this._application_config;
}
public set applicationConfig(
config: ApplicationConfigEntity | null | undefined
) {
if (config) {
this._application_config = config;
}
}
clients: Map<string, ClientConnection> = new Map<string, ClientConnection>();
_signal_sources: SignalSourceEntity[] = [];
public get signal_source() {
return this._signal_sources;
}
public set signal_source(sources: SignalSourceEntity[]) {
this._signal_sources = sources;
}
constructor() {
const url: string | null = SessionStorage.getItem("url");
let name: string | null = SessionStorage.getItem("name");
let user_name: string | null = SessionStorage.getItem("user_name");
let password: string | null = SessionStorage.getItem("password");
if (url) {
name = name ?? window.location.hostname;
user_name = user_name ?? "";
password = password ?? "";
this._current_client_name = name;
this.addClient(
this._current_client_name,
new ClientConnection(url, user_name, password)
);
}
}
public getClient(name: string | null) {
if (name) {
return this.clients.get(name);
}
}
public setCurrentClientName(name: string) {
this._current_client_name = name;
}
public getCurrentClient() {
return this.getClient(this._current_client_name);
}
public addClient(name: string | null, client: ClientConnection) {
if (name) {
this.clients.set(name, client);
}
}
removeClient(name: string | null) {
if (name) {
this.clients.delete(name);
}
}
}

29
src/css/app.scss Normal file
View File

@ -0,0 +1,29 @@
// app global css in SCSS form
body {
background-color: #fff;
font-family: $font-family;
-webkit-font-smoothing: auto;
}
strong {
font-weight: bold;
}
.header {
-webkit-backdrop-filter: blur(7px);
backdrop-filter: blur(7px);
background-color: #0000001a;
height: 50px;
}
body {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.drag-enter {
outline-style: dashed;
}

View File

@ -0,0 +1,29 @@
// 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;
$positive: #21ba45;
$negative: #c10015;
$info: #31ccec;
$warning: #f2c037;
$brand-primary: #00b4ff;
$font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial,
sans-serif;
$font-family-avenir: Avenir, $font-family;

View File

@ -0,0 +1,12 @@
export default class ApplicationConfigEntity {
gateway: string = "";
mac_address: string = "";
network_mask: string = "";
wall_row: number = 1;
wall_col: number = 1;
screen_width: number = 1;
screen_height: number = 1;
tcp_port: string = "";
udp_port: string = "";
websocket_port: string = "";
}

View File

@ -0,0 +1,4 @@
export default class BaseEntity{
uuid:string = '';
base_note:string = '';
}

View File

@ -0,0 +1,11 @@
import BaseEntity from "./BaseEntity";
import { SignalSourceEntity } from "./SignalSourceEntity";
export default class MultimediaWindowEntity extends BaseEntity {
x: number = 0;
y: number = 0;
width: number = 0;
height: number = 0;
signal_source_table_uuid: string = "";
signal_source_table_entity: SignalSourceEntity = new SignalSourceEntity();
}

View File

@ -0,0 +1,13 @@
export default class PermissionLevel {
public static get None() {
return 0;
}
public static get User() {
return 1;
}
public static get Root() {
return 2;
}
}

View File

@ -0,0 +1,37 @@
import BaseEntity from "./BaseEntity";
export class SignalSourceEntity extends BaseEntity {
name: string = "";
window_type: string = "";
media_url: string = "";
user_name: string = "";
password: string = "";
ext_data: string = "";
group_uuid = "";
system_default: boolean = false;
}
export class SignalSourceTreeItemEntity {
uuid = "";
parent = "";
name = "";
is_group = false;
children: SignalSourceTreeItemEntity[] = [];
item_data: SignalSourceEntity | null = null;
constructor(
uuid?: string,
parent?: string,
name?: string,
is_group?: boolean,
item_data?: any,
children?: SignalSourceTreeItemEntity[]
) {
this.uuid = uuid ?? "";
this.parent = parent ?? "";
this.name = name ?? "";
this.is_group = is_group ?? false;
this.children = children ?? (Array.isArray(children) ? children : []);
this.item_data = item_data;
}
}

142
src/entities/WSProtocol.ts Normal file
View File

@ -0,0 +1,142 @@
import { SignalSourceEntity } from "./SignalSourceEntity";
import ApplicationConfigEntity from "./ApplicationConfigEntity";
export namespace Protocol {
export class Commands {
public static get PROTOCOL_PREFIX() {
return "_";
}
public static get kUnKnowCommand() {
return Commands.PROTOCOL_PREFIX + "UnKnowCommand";
}
public static get kSearchDevice() {
return Commands.PROTOCOL_PREFIX + "SearchDevice";
}
public static get kEditNetworkInterfaceInfo() {
return Commands.PROTOCOL_PREFIX + "EditNetworkInterfaceInfo";
}
public static get kExecCommand() {
return Commands.PROTOCOL_PREFIX + "ExecCommand";
}
public static get kRestoreDevice() {
return Commands.PROTOCOL_PREFIX + "RestoreDevice";
}
public static get kLogin() {
return Commands.PROTOCOL_PREFIX + "Login";
}
public static get kLogout() {
return Commands.PROTOCOL_PREFIX + "Logout";
}
public static get kRpcGetWindows() {
return Commands.PROTOCOL_PREFIX + "RpcGetWindows";
}
public static get kRpcGetSignalSources() {
return Commands.PROTOCOL_PREFIX + "RpcGetSignalSources";
}
public static get kRpcGetApplicationConfig() {
return Commands.PROTOCOL_PREFIX + "RpcGetApplicationConfig";
}
static _all_commands = new Set([
Commands.kUnKnowCommand,
Commands.kSearchDevice,
Commands.kEditNetworkInterfaceInfo,
Commands.kExecCommand,
Commands.kRestoreDevice,
Commands.kLogin,
Commands.kLogout,
Commands.kRpcGetWindows,
Commands.kRpcGetSignalSources,
Commands.kRpcGetApplicationConfig,
]);
public static get AllCommands() {
return this._all_commands;
}
}
export class PacketEntity {
public static get FLAG_REQUEST() {
return 0;
}
public static get FLAG_RESPONSE() {
return 1;
}
public static get FLAG_NOTIFY() {
return 2;
}
/** 是否出现异常,如果是异常,则为 ExceptionEntity */
has_exception = false;
/** 0: 请求 1: 响应 */
flag = 0;
/** rpc 消息 ID默认 0 */
rpc_id = 0;
/** 命令 */
command = Protocol.Commands.kUnKnowCommand;
}
export class LoginRequest extends PacketEntity {
user_name = "";
password = "";
constructor(user_name?: string, password?: string) {
super();
this.user_name = user_name ?? "";
this.password = password ?? "";
this.command = Commands.kLogin;
}
}
export class LoginResponse extends PacketEntity {
success = false;
error_code = 0;
constructor() {
super();
this.command = Commands.kLogin;
}
}
export class GetSignalSourcesRequest extends PacketEntity {
timestamp = new Date().getMilliseconds();
constructor(rpcid?: number) {
super();
this.rpc_id = rpcid ?? 0;
this.command = Commands.kRpcGetSignalSources;
}
}
export class GetSignalSourcesResponse extends PacketEntity {
signal_sources: SignalSourceEntity[] = [];
signal_source_groups: [] = [];
constructor() {
super();
this.command = Commands.kRpcGetSignalSources;
}
}
export class GetApplicationConfigRequestEntity extends PacketEntity {
timestamp: number = new Date().getMilliseconds();
constructor(rpcid?: number) {
super();
this.rpc_id = rpcid ?? 0;
this.command = Commands.kRpcGetApplicationConfig;
}
}
export class GetApplicationConfigResponseEntity extends PacketEntity {
config: ApplicationConfigEntity | null = null;
constructor() {
super();
this.command = Commands.kRpcGetApplicationConfig;
}
}
}

7
src/env.d.ts vendored Normal file
View 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;
}
}

8
src/i18n/en-US/index.ts Normal file
View File

@ -0,0 +1,8 @@
// This is just an example,
// so you can safely delete all default props below
export default {
title: 'MediaPlayerWebAPP',
failed: 'Action failed',
success: 'Action was successful'
};

7
src/i18n/index.ts Normal file
View File

@ -0,0 +1,7 @@
import enUS from './en-US';
import zhCN from './zh-CN';
export default {
'en-US': enUS,
'zh-CN': zhCN,
};

22
src/i18n/zh-CN/index.ts Normal file
View File

@ -0,0 +1,22 @@
// This is just an example,
// so you can safely delete all default props below
export default {
title: 'MediaPlayerWebAPP',
failed: '失败',
success: '成功',
login: '登录',
'user name': '用户名',
password: '密码',
'please input user name': '请输入用户',
'please input password': '请输入密码',
'login fail!': '登陆失败',
'Please type something': '请输入内容',
'grid setting': '宫格设置',
'background image': '底图设置',
'data import': '数据导入',
'data export': '数据导出',
root: '根节点',
};

57
src/index.template.html Normal file
View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title><%= productName %></title>
<meta charset="utf-8" />
<meta name="renderer" content="webkit" />
<meta name="force-rendering" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="MediaPlayerWebApp" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="HandheldFriendly" content="true" />
<meta name="full-screen" content="yes" />
<meta name="x5-fullscreen" content="true" />
<script>
/*@cc_on window.location.href="http://support.dmeng.net/upgrade-your-browser.html?referrer="+encodeURIComponent(window.location.href); @*/
</script>
<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>
<!-- DO NOT touch the following DIV -->
<div id="q-app"></div>
</body>
</html>

View File

@ -0,0 +1,60 @@
<template>
<q-layout view="hHh lpR fFf">
<q-header elevated class="header text-black">
<top-tool-bar />
</q-header>
<q-drawer
no-swipe-open
no-swipe-close
no-swipe-backdrop
v-model="data.show_left_drawer"
side="left"
bordered
>
<left-tool-bar />
</q-drawer>
<q-drawer
no-swipe-open
no-swipe-close
no-swipe-backdrop
v-model="data.show_right_drawer"
side="right"
bordered
>
<!-- drawer content -->
<right-tool-bar />
</q-drawer>
<q-page-container>
<router-view />
</q-page-container>
<q-footer elevated class="bg-white text-black" style="height: 30px">
<div class="text-center">SX</div>
</q-footer>
</q-layout>
</template>
<script lang="ts">
import { defineComponent, reactive } from 'vue';
import LeftToolBar from 'src/pages/LeftToolBar.vue';
import RightToolBar from 'src/pages/RightToolBar.vue';
import TopToolBar from 'src/pages/TopToolBar.vue';
class _Data {
show_left_drawer = true;
show_right_drawer = true;
}
export default defineComponent({
name: 'MainLayout',
components: { LeftToolBar, RightToolBar, TopToolBar },
setup() {
const data = reactive(new _Data());
return { data };
},
});
</script>

31
src/pages/Error404.vue Normal file
View File

@ -0,0 +1,31 @@
<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 lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'Error404'
})
</script>

18
src/pages/Index.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<q-page class="row items-center justify-evenly">
<wall-page />
</q-page>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import WallPage from 'src/pages/WallPage.vue';
export default defineComponent({
name: 'PageIndex',
components: { WallPage },
setup() {
return {};
},
});
</script>

127
src/pages/LeftToolBar.vue Normal file
View File

@ -0,0 +1,127 @@
<template>
<div>
<q-tree ref="tree" :nodes="tree_nodes" node-key="uuid" labelKey="name">
<template v-slot:default-header="prop">
<q-item
class="full-width"
clickable
:draggable="!prop.node.is_group"
@dragstart="(evt) => onDragStart(evt, prop.node)"
>
<q-item-section avatar>
<q-icon
:name="
prop.node.is_group
? 'img:source_icon/group.png'
: getItemIcon(prop.node.item_data?.window_type)
"
color="orange"
size="28px"
class="q-mr-sm"
/>
</q-item-section>
<q-item-section>
<div class="text-weight-bold text-primary">
{{ prop.node.name }}
</div>
</q-item-section>
<q-popup-proxy context-menu>
<q-popup-proxy context-menu />
<q-btn
flat
round
icon="add"
v-close-popup
v-if="prop.node.is_group"
>
<q-tooltip>{{ $t("add item") }}</q-tooltip>
</q-btn>
<q-btn
flat
round
icon="create_new_folder"
v-close-popup
v-if="prop.node.is_group"
>
<q-tooltip>{{ $t("add group") }}</q-tooltip>
</q-btn>
<q-btn
flat
round
icon="edit"
v-close-popup
v-if="prop.node.uuid != '' && prop.node.name != $t('root')"
>
<q-tooltip>{{ $t("edit") }}</q-tooltip>
</q-btn>
<q-btn
flat
round
icon="delete"
text-color="red"
v-close-popup
v-if="prop.node.uuid != '' && prop.node.name != $t('root')"
>
<q-tooltip>{{ $t("delete") }}</q-tooltip>
</q-btn>
</q-popup-proxy>
</q-item>
</template>
</q-tree>
</div>
</template>
<script lang="ts">
import { defineComponent, computed } from "vue";
import { useStore } from "src/store";
import { SignalSourceTreeItemEntity } from "src/entities/SignalSourceEntity";
export default defineComponent({
name: "PageLeftToolBar",
components: {},
setup() {
const $store = useStore();
const tree_nodes = computed({
get: () => $store.state.signal_source_tree,
set: (val) => $store.commit("setSignalSourceTree", val),
});
return {
tree_nodes,
loga(a: any) {
console.log(a);
},
onDragStart(e: DragEvent, node: SignalSourceTreeItemEntity) {
e.dataTransfer?.setData("uuid", node.uuid);
e.dataTransfer?.setData("node_object", JSON.stringify(node));
if (e.dataTransfer) {
e.dataTransfer.dropEffect = "move";
}
},
getItemIcon(item_type: string) {
let icon_map = new Map([
["EwindowType::Normal", "img:source_icon/hdmi.png"],
["EwindowType::Multimedia", "img:source_icon/media.png"],
["EwindowType::Web", "img:source_icon/web.png"],
["EwindowType::Image", "img:source_icon/image.png"],
["EwindowType::Pdf", "img:source_icon/pdf.png"],
["EwindowType::Ppt", "img:source_icon/ppt.png"],
["EwindowType::Rtsp", "img:source_icon/rtsp.png"],
["EwindowType::Subtitles", "img:source_icon/subtitles.png"],
["EwindowType::Weather", "img:source_icon/weather.png"],
["EwindowType::HdmiIn", "img:source_icon/hdmi.png"],
]);
if (icon_map.has(item_type)) {
return icon_map.get(item_type);
} else {
return "img:source_icon/hdmi.png";
}
},
};
},
});
</script>

200
src/pages/Login.vue Normal file
View File

@ -0,0 +1,200 @@
<template>
<q-layout view="hHh lpR fFf">
<q-page-container>
<q-page class="row items-center justify-evenly">
<q-card style="width: 30vw">
<q-card-section class="text-center text-h6">
{{ $t('login') }}
</q-card-section>
<q-separator />
<q-card-section class="fit">
<q-form
ref="login_form"
@submit="onSubmit"
@reset="onReset"
class="q-gutter-md"
>
<q-input
:loading="data.loading"
filled
v-model="data.user_name"
:label="$t('user name')"
:hint="$t('please input user name')"
lazy-rules
:rules="[
(val) =>
(val && val.length > 0) || $t('Please type something'),
]"
@keydown="
(evt) => {
if (evt.keyCode == 13) {
//
$refs?.password_input?.focus();
}
}
"
>
<template v-if="data.user_name" v-slot:append>
<q-icon
name="cancel"
@click.stop="data.user_name = null"
class="cursor-pointer"
/>
</template>
</q-input>
<q-input
ref="password_input"
:loading="data.loading"
filled
v-model="data.password"
:label="$t('password')"
:hint="$t('please input password')"
lazy-rules
:rules="[
(val) =>
(val && val.length > 0) || $t('Please type something'),
]"
@keydown="
(evt) => {
if (evt.keyCode == 13) {
$refs?.login_button?.click();
}
}
"
>
<template v-if="data.password" v-slot:append>
<q-icon
name="cancel"
@click.stop="data.password = null"
class="cursor-pointer"
/>
</template>
</q-input>
</q-form>
</q-card-section>
<q-card-actions>
<q-btn
ref="login_button"
class="full-width"
:loading="data.loading"
:label="$t('login')"
color="primary"
@click="$refs?.login_form?.submit()"
/>
</q-card-actions>
</q-card>
</q-page>
</q-page-container>
</q-layout>
</template>
<script lang="ts">
import { defineComponent, reactive } from 'vue';
import GlobalData from 'src/common/GlobalData';
import { LocalStorage, SessionStorage, useQuasar } from 'quasar';
import ClientConnection from 'src/common/ClientConnection';
import PermissionLevel from 'src/entities/PermissionLevel';
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
class _Data {
user_name: string | null = null;
password: string | null = null;
loading = false;
ip_address = '127.0.0.1';
constructor() {
let temp = LocalStorage.getItem('default_ip_address');
if (temp) {
this.ip_address = temp.toString();
} else {
this.ip_address = window.location.hostname;
}
temp = LocalStorage.getItem('default_user_name');
if (temp) {
this.user_name = temp.toString();
}
temp = LocalStorage.getItem('default_password');
if (temp) {
this.password = temp.toString();
}
}
}
export default defineComponent({
name: 'PageLogin',
components: {},
setup() {
const $q = useQuasar();
const $t = useI18n();
const $route = useRouter();
const data = reactive(new _Data());
return {
data,
loga(a: any) {
console.log(a);
},
async onSubmit() {
return new Promise((resolve) => {
data.loading = true;
try {
let global_data = GlobalData.getInstance();
let web_socket = global_data.getClient(data.ip_address);
const url =
'ws://' +
data.ip_address +
':' +
GlobalData.kDefaultWebsocektPort.toString() +
GlobalData.kWebsocketResource;
if (web_socket) {
web_socket.reconnectTo(url, data.user_name, data.password);
} else {
web_socket = new ClientConnection(
url,
data.user_name,
data.password
);
global_data.addClient(data.ip_address, web_socket);
}
global_data.setCurrentClientName(data.ip_address);
web_socket.login_callback = (is_login) => {
if (is_login) {
SessionStorage.set('auth', PermissionLevel.Root);
SessionStorage.set('url', url);
SessionStorage.set('name', data.ip_address);
SessionStorage.set('user_name', data.user_name);
SessionStorage.set('password', data.password);
$route.push('/');
} else {
$q.notify({
color: 'negative',
icon: 'warning',
message: $t.t('login fail!'),
position: 'center',
timeout: 1500,
});
}
resolve(true);
data.loading = false;
};
} catch {
resolve(true);
data.loading = false;
}
});
},
onReset() {
data.user_name = null;
data.password = null;
},
};
},
});
</script>

View File

@ -0,0 +1,17 @@
<template>
<div>aaaaaaaa</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'PageRightToolBar',
components: {},
setup() {
return {};
},
});
</script>

74
src/pages/TopToolBar.vue Normal file
View File

@ -0,0 +1,74 @@
<template>
<div>
<q-toolbar class="shadow-2">
<q-btn
stretch
flat
icon="img:icons/favicon-32x32.png"
label="电视机拼接盒"
class="q-mr-sm"
/>
<q-separator vertical inset />
<q-btn
stretch
flat
icon="grid_on"
:label="$t('grid setting')"
class="q-mr-sm"
/>
<q-btn
stretch
flat
icon="image"
:label="$t('background image')"
class="q-mr-sm"
/>
<q-btn
stretch
flat
icon="backup"
:label="$t('data import')"
class="q-mr-sm"
/>
<q-btn
stretch
flat
icon="restore"
:label="$t('data export')"
class="q-mr-sm"
/>
<q-space />
<q-btn-dropdown
stretch
flat
icon="devices"
label="localhost"
class="q-mr-sm"
>
<q-list>
<q-item clickable v-close-popup>
<q-item-section>
<q-item-label>localhost</q-item-label>
<q-item-label caption>localhost</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-btn-dropdown>
</q-toolbar>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'PageTopToolBar',
components: {},
setup() {
return {};
},
});
</script>

248
src/pages/WallPage.vue Normal file
View File

@ -0,0 +1,248 @@
<template>
<div
ref="wall"
class="fit items-center justify-evenly wall"
@dragenter="onDragEnter"
@dragleave="onDragLeave"
@dragover="onDragOver"
@drop="onDrop"
>
<q-popup-proxy context-menu>
<q-popup-proxy context-menu />
<q-list>
<q-item clickable v-close-popup>
<q-item-section avatar>
<q-icon name="close" color="red" />
</q-item-section>
<q-item-section> {{ $t("close all windwos") }} </q-item-section>
</q-item>
</q-list>
</q-popup-proxy>
<div
v-for="row in wall_rows"
:key="row"
class="row"
:style="{
height: item_height + 'px',
}"
>
<div
:ref="'item' + (row - 1) * wall_cols * col"
v-for="col in wall_cols"
:key="col"
class="col wall_item"
:style="{
width: item_witdh + 'px',
height: item_height + 'px',
}"
>
<q-popup-proxy context-menu no-parent-event>
<q-popup-proxy context-menu />
<q-list>
<q-item clickable v-close-popup>
<q-item-section avatar>
<q-icon name="close" color="red" />
</q-item-section>
<q-item-section> {{ $t("close this windwo") }} </q-item-section>
</q-item>
<q-item clickable v-close-popup>
<q-item-section avatar>
<q-icon name="close" color="red" />
</q-item-section>
<q-item-section> {{ $t("close other windwos") }} </q-item-section>
</q-item>
<q-item clickable v-close-popup>
<q-item-section avatar>
<q-icon name="close" color="red" />
</q-item-section>
<q-item-section> {{ $t("close all windwos") }} </q-item-section>
</q-item>
</q-list>
</q-popup-proxy>
</div>
</div>
</div>
</template>
<style scoped>
.wall {
border: 1px solid black;
}
.wall_item {
border: 1px solid black;
}
</style>
<script lang="ts">
import GlobalData from "src/common/GlobalData";
import { defineComponent, ref, Ref, computed } from "vue";
import { Common } from "src/common/Common";
import { Protocol } from "src/entities/WSProtocol";
import { useI18n } from "vue-i18n";
import { useStore } from "src/store";
interface _OptionsType {
$t: any;
$store: ReturnType<typeof useStore> | undefined | null;
}
const _getSignalSources = async () => {
const global_data = GlobalData.getInstance();
return (await global_data
.getCurrentClient()
?.getSignalSources()) as Protocol.GetSignalSourcesResponse;
};
const _initSignalSourceTree = async (options: _OptionsType) => {
const $store = options?.$store;
if ($store) {
try {
let response = await _getSignalSources();
if (response) {
$store.commit("buildSignalSourceTree", { options, response });
GlobalData.getInstance().signal_source = response.signal_sources;
}
} catch (e) {
console.error(e);
}
}
};
const _getApplicationConfig = async (options: _OptionsType) => {
const global_data = GlobalData.getInstance();
global_data.applicationConfig = (
await global_data.getCurrentClient()?.getApplicationSettins()
)?.config;
let $store = options.$store;
if (global_data.applicationConfig && $store) {
$store.commit("setWallCol", global_data.applicationConfig.wall_col);
$store.commit("setWallRow", global_data.applicationConfig.wall_row);
$store.commit(
"setDeviceScreenWidth",
global_data.applicationConfig.screen_width
);
$store.commit(
"setDeviceScreenHeight",
global_data.applicationConfig.screen_height
);
}
};
const _initialize = async (options: _OptionsType) => {
const global_data = GlobalData.getInstance();
let client = global_data.getCurrentClient();
if (client) {
while (!client.is_login) {
await Common.waitFor(100);
}
_initSignalSourceTree(options);
_getApplicationConfig(options);
}
};
export default defineComponent({
name: "PageWall",
components: {},
setup() {
const $store = useStore();
const $t = useI18n();
_initialize({
$t,
$store,
});
const wall_rows = computed({
get: () => $store.state.wall_row,
set: (val) => $store.commit("setWallRow", val),
});
const wall_cols = computed({
get: () => $store.state.wall_col,
set: (val) => $store.commit("setWallCol", val),
});
const wall: Ref<HTMLElement | null> = ref(null);
const item_witdh = computed({
get: () => {
if (wall.value && wall.value.parentElement) {
return wall.value.parentElement.offsetWidth / wall_cols.value;
}
return 0;
},
set: (val) => $store.commit("setWallCol", val),
});
const item_height = computed({
get: () => {
if (wall.value && wall.value.parentElement) {
const wv_scaler =
$store.state.device_screen_width /
$store.state.device_screen_height;
return (
wall.value.parentElement.offsetHeight / wv_scaler / wall_rows.value
);
}
return 0;
},
set: (val) => $store.commit("setWallCol", val),
});
return {
wall,
wall_rows,
wall_cols,
item_witdh,
item_height,
loga(a: any) {
console.log(a);
},
onDrop(e: DragEvent) {
e.preventDefault();
let target = e.target as any;
if (target) {
target.classList.remove("drag-enter");
}
let uuid = e.dataTransfer?.getData("uuid");
if (uuid) {
let signal_sources = GlobalData.getInstance().signal_source.filter(
(item) => (item as any)?.uuid == uuid
);
if (signal_sources.length) {
let signal_source = signal_sources[0];
console.log(signal_source);
}
}
},
onDragEnter(e: DragEvent) {
let target = e.target as any;
if (target && target.draggable !== true) {
target.classList.add("drag-enter");
}
},
onDragLeave(e: DragEvent) {
let target = e.target as any;
if (target) {
target.classList.remove("drag-enter");
}
},
onDragOver(e: DragEvent) {
e.preventDefault();
},
};
},
});
</script>

69
src/router/index.ts Normal file
View File

@ -0,0 +1,69 @@
import { SessionStorage } from 'quasar';
import { route } from 'quasar/wrappers';
import {
createMemoryHistory,
createRouter,
createWebHashHistory,
createWebHistory,
} from 'vue-router';
import { StateInterface } from '../store';
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 route<StateInterface>(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.MODE === 'ssr' ? void 0 : process.env.VUE_ROUTER_BASE
),
});
Router.beforeEach((to, from, next) => {
if (
to.meta &&
(to.meta.permission_level != null ||
to.meta.permission_level != undefined)
) {
const auth_obj = SessionStorage.getItem('auth')?.toString();
if (auth_obj) {
const auth = parseInt(auth_obj);
const target_auth = parseInt(<string>to.meta.permission_level);
if (target_auth == NaN) {
next();
return;
} else if (auth != NaN) {
if (auth > target_auth) {
next();
return;
}
}
}
} else {
next();
return;
}
next('/login');
});
return Router;
});

35
src/router/routes.ts Normal file
View File

@ -0,0 +1,35 @@
import { RouteRecordRaw } from 'vue-router';
import PermissionLevel from 'src/entities/PermissionLevel';
const routes: RouteRecordRaw[] = [
{
path: '/login',
component: () => import('pages/Login.vue'),
},
{
path: '/',
meta: {
permission_level: PermissionLevel.User,
},
component: () => import('layouts/MainLayout.vue'),
children: [
{
path: '',
component: () => import('pages/Index.vue'),
meta: {
permission_level: PermissionLevel.User,
},
},
],
},
// Always leave this as last one,
// but you can also remove it
{
path: '/:catchAll(.*)*',
component: () => import('pages/Error404.vue'),
},
];
export default routes;

6
src/shims-vue.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
// Mocks all files ending in `.vue` showing them as plain Vue instances
declare module '*.vue' {
import { ComponentOptions } from 'vue'
const component: ComponentOptions
export default component
}

222
src/store/index.ts Normal file
View File

@ -0,0 +1,222 @@
import { store } from "quasar/wrappers";
import MultimediaWindowEntity from "src/entities/MultimediaWindowEntity";
import { SignalSourceTreeItemEntity } from "src/entities/SignalSourceEntity";
import { InjectionKey, reactive } from "vue";
import { useI18n } from "vue-i18n";
import {
createStore,
Store as VuexStore,
useStore as vuexUseStore,
} from "vuex";
// import example from './module-example'
// import { ExampleStateInterface } from './module-example/state';
/*
* If not building with SSR mode, you can
* directly export the Store instantiation;
*
* The function below can be async too; either use
* async/await or return a Promise which resolves
* with the Store instance.
*/
export interface StateInterface {
// Define your own store structure, using submodules if needed
// example: ExampleStateInterface;
// Declared as unknown to avoid linting issue. Best to strongly type as per the line above.
example: unknown;
signal_source_tree: SignalSourceTreeItemEntity[];
wall_row: number;
wall_col: number;
device_screen_width: number;
device_screen_height: number;
windows: MultimediaWindowEntity[];
}
// provide typings for `this.$store`
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$store: VuexStore<StateInterface>;
}
}
// provide typings for `useStore` helper
export const storeKey: InjectionKey<VuexStore<StateInterface>> =
Symbol("vuex-key");
export default store(function (/* { ssrContext } */) {
const Store = createStore<StateInterface>({
modules: {
// example
},
state: {
// state
example: "",
signal_source_tree: [],
wall_col: 1,
wall_row: 1,
device_screen_width: 1920,
device_screen_height: 1080,
windows: [],
},
mutations: {
clearWindows(state: StateInterface, playload?: any) {
state.windows = [];
},
pushWindow(state: StateInterface, playload?: any) {
const window = playload as MultimediaWindowEntity;
if (window) {
state.windows.push(window);
}
},
removeWindow(state: StateInterface, playload?: any) {
const uuid = playload.uuid;
if (uuid) {
let index = state.windows.findIndex(
(item) => item && item.uuid == uuid
);
if (index >= 0) {
state.windows.splice(index, 1);
}
} else {
console.log("uuid???");
}
},
editWindow(state: StateInterface, playload?: any) {
const uuid = playload.uuid;
const new_window = playload.new_window as MultimediaWindowEntity;
if (uuid && new_window) {
let index = state.windows.findIndex(
(item) => item && item.uuid == uuid
);
if (index >= 0) {
state.windows[index] = new_window;
}
}
},
setWallCol(state: StateInterface, playload?: any) {
const num = parseInt(playload);
if (num != NaN && num > 0) {
state.wall_col = num;
}
},
setWallRow(state: StateInterface, playload?: any) {
const num = parseInt(playload);
if (num != NaN && num > 0) {
state.wall_row = num;
}
},
setDeviceScreenWidth(state: StateInterface, playload?: any) {
const num = parseInt(playload);
if (num != NaN && num > 0) {
state.device_screen_width = num;
}
},
setDeviceScreenHeight(state: StateInterface, playload?: any) {
const num = parseInt(playload);
if (num != NaN && num > 0) {
state.device_screen_height = num;
}
},
setSignalSourceTree(state: StateInterface, playload?: any) {
const item = playload as SignalSourceTreeItemEntity[];
if (item) {
state.signal_source_tree = item;
}
},
clearSignalSourceTree(state: StateInterface, playload?: any) {
// if (state.signal_source_tree) {
// state.signal_source_tree.splice(0, state.signal_source_tree.length);
// }
state.signal_source_tree = [];
},
pushSignalSourceTreeItem(state: StateInterface, playload?: any) {
let item = playload as SignalSourceTreeItemEntity;
if (item) {
state.signal_source_tree.push(item);
}
},
buildSignalSourceTree(state: StateInterface, playload?: any) {
const buildGroup = (
parent: SignalSourceTreeItemEntity,
group_array: any[],
item_array: any[]
) => {
if (parent) {
for (let item of findGroupsByParent(parent.uuid, group_array)) {
const node_item = new SignalSourceTreeItemEntity(
item.uuid,
parent.uuid,
item.name,
true
);
parent.children.push(node_item);
buildGroup(node_item, group_array, item_array);
}
for (let item of findItemsByParent(parent.uuid, item_array)) {
const node_item = new SignalSourceTreeItemEntity(
item.uuid,
parent.uuid,
item.name,
false,
item
);
parent.children.push(node_item);
}
}
};
const findGroupsByParent = (parent: string, array: any[]) => {
return array.filter((item) => {
return item && item.parent_uuid == parent;
});
};
const findItemsByParent = (parent: string, array: any[]) => {
return array.filter((item) => {
return item && item.group_uuid == parent;
});
};
if (
playload &&
playload.response &&
playload.options &&
playload.options.$t
) {
const $t = playload.options.$t;
const signal_source_groups =
playload.response.signal_source_groups ?? [];
const signal_sources = playload.response.signal_sources ?? [];
const root = new SignalSourceTreeItemEntity(
"",
"",
$t.t("root"),
true
);
state.signal_source_tree.splice(0, state.signal_source_tree.length);
state.signal_source_tree.push(root);
buildGroup(root, signal_source_groups, signal_sources);
} else {
console.error(playload);
}
},
},
// enable strict mode (adds overhead!)
// for dev mode and --debug builds only
strict: !!process.env.DEBUGGING,
});
return Store;
});
export function useStore() {
return vuexUseStore(storeKey);
}

View File

@ -0,0 +1,11 @@
import { ActionTree } from 'vuex';
import { StateInterface } from '../index';
import { ExampleStateInterface } from './state';
const actions: ActionTree<ExampleStateInterface, StateInterface> = {
someAction (/* context */) {
// your code
}
};
export default actions;

View File

@ -0,0 +1,11 @@
import { GetterTree } from 'vuex';
import { StateInterface } from '../index';
import { ExampleStateInterface } from './state';
const getters: GetterTree<ExampleStateInterface, StateInterface> = {
someAction (/* context */) {
// your code
}
};
export default getters;

View File

@ -0,0 +1,16 @@
import { Module } from 'vuex';
import { StateInterface } from '../index';
import state, { ExampleStateInterface } from './state';
import actions from './actions';
import getters from './getters';
import mutations from './mutations';
const exampleModule: Module<ExampleStateInterface, StateInterface> = {
namespaced: true,
actions,
getters,
mutations,
state
};
export default exampleModule;

View File

@ -0,0 +1,10 @@
import { MutationTree } from 'vuex';
import { ExampleStateInterface } from './state';
const mutation: MutationTree<ExampleStateInterface> = {
someMutation (/* state: ExampleStateInterface */) {
// your code
}
};
export default mutation;

View File

@ -0,0 +1,11 @@
export interface ExampleStateInterface {
prop: boolean;
}
function state(): ExampleStateInterface {
return {
prop: false
}
};
export default state;

10
src/store/store-flag.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
/* eslint-disable */
// THIS FEATURE-FLAG FILE IS AUTOGENERATED,
// REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING
import "quasar/dist/types/feature-flag";
declare module "quasar/dist/types/feature-flag" {
interface QuasarFeatureFlags {
store: true;
}
}

6
tsconfig.json Normal file
View File

@ -0,0 +1,6 @@
{
"extends": "@quasar/app/tsconfig-preset",
"compilerOptions": {
"baseUrl": "."
}
}

6364
yarn.lock Normal file

File diff suppressed because it is too large Load Diff