no longer using cdn to serve ui components
This commit is contained in:
parent
bb9f4b26c2
commit
adf0234323
9 changed files with 58380 additions and 27 deletions
9
html/css/vuetify.min.css
vendored
Normal file
9
html/css/vuetify.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -3,9 +3,9 @@
|
|||
|
||||
<head>
|
||||
<title>Testalarm Configuration</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
|
||||
<!-- <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet"> -->
|
||||
<link href="css/materialdesignicons.min.css" rel="stylesheet">
|
||||
<link href="css/vuetify.min.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
|
||||
</head>
|
||||
|
||||
|
@ -30,12 +30,15 @@
|
|||
<v-container>
|
||||
<p>Targets:</p>
|
||||
<v-row>
|
||||
<v-btn color="success" @click="addAlarm()">Add</v-btn>
|
||||
<v-btn color="primary" fab dark small icon @click="addAlarm()">
|
||||
<v-icon>mdi-plus</v-icon>
|
||||
</v-btn>
|
||||
</v-row>
|
||||
<v-row v-for="(alarmConfig, index) in configData.alarms" :key="alarmConfig._id"
|
||||
style="border-bottom: 2px solid black;">
|
||||
|
||||
<v-row v-for="(alarmConfig, index) in configData.alarms" :key="alarmConfig._id">
|
||||
<v-card>
|
||||
<v-col cols="12" sm="12" md="12">
|
||||
<v-btn color="error" @click="configData.alarms.splice(index, 1)" icon>
|
||||
<v-btn color="error" dark small fab @click="configData.alarms.splice(index, 1)" icon>
|
||||
<v-icon>mdi-delete</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
|
@ -44,9 +47,7 @@
|
|||
<v-row>
|
||||
<v-select :items="alarmSchedulingMode" v-model="alarmConfig.alarmSchedulingMode"
|
||||
item-text="k" item-value="v" label="Scheduling Mode"></v-select>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-time-picker format="24hr" v-model="alarmConfig.alarmTime"></v-time-picker>
|
||||
<v-text-field v-model="alarmConfig.alarmTime" type="time" label="Time"></v-text-field>
|
||||
</v-row>
|
||||
<v-row cols="3" sm="3" md="3" v-show="alarmConfig.alarmSchedulingMode == 'weekly'">
|
||||
<v-checkbox v-for="(WN, index) of weekDays" v-model="alarmConfig.weekDay[ index ]" :label="WN"></v-checkbox>
|
||||
|
@ -96,6 +97,7 @@
|
|||
</v-col>
|
||||
</v-row>
|
||||
</v-col>
|
||||
</v-card>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-btn color="success" @click="storeConfig()">Store & Restart</v-btn>
|
||||
|
@ -122,9 +124,10 @@
|
|||
</v-app>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-resource@1.5.1"></script>
|
||||
<script src="js/moment-with-locales.min.js"></script>
|
||||
<script src="js/vue/vue.js"></script>
|
||||
<script src="js/vue/vuetify.js"></script>
|
||||
<script src="js/vue/vue-resource_1.5.1.js"></script>
|
||||
<script>
|
||||
new Vue({
|
||||
el: '#app',
|
||||
|
@ -217,6 +220,7 @@
|
|||
"device": "generic",
|
||||
"connectors": []
|
||||
},
|
||||
},
|
||||
"alarmSchedulingMode": "weekly",
|
||||
"alarmTime": "13:37",
|
||||
"payload": "Probealarm jeden Tag 1337",
|
||||
|
@ -229,7 +233,6 @@
|
|||
"5": true,
|
||||
"6": true
|
||||
},
|
||||
},
|
||||
})
|
||||
},
|
||||
}
|
||||
|
|
2
html/jquery.min.js
vendored
2
html/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
2
html/js/moment-with-locales.min.js
vendored
Normal file
2
html/js/moment-with-locales.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
7
html/js/vue/vue-resource_1.5.1.js
Normal file
7
html/js/vue/vue-resource_1.5.1.js
Normal file
File diff suppressed because one or more lines are too long
11909
html/js/vue/vue.js
Normal file
11909
html/js/vue/vue.js
Normal file
File diff suppressed because it is too large
Load diff
46423
html/js/vue/vuetify.js
Normal file
46423
html/js/vue/vuetify.js
Normal file
File diff suppressed because it is too large
Load diff
1
index.js
1
index.js
|
@ -15,6 +15,7 @@ const express = require('express')
|
|||
const appConfig = express()
|
||||
appConfig.use(express.json())
|
||||
appConfig.use(express.static('html'))
|
||||
appConfig.use(express.static(__dirname + '/node_modules/@mdi/font'))
|
||||
|
||||
async function minuteCheck() {
|
||||
let timeRN = moment()
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"@mdi/font": "^7.0.96",
|
||||
"axios": "^1.2.0",
|
||||
"express": "^4.18.2",
|
||||
"moment": "^2.29.4"
|
||||
|
|
Loading…
Add table
Reference in a new issue