forked from platypush/platypush
[Alarm UI] Support for adding/removing alarms.
This commit is contained in:
parent
e617a9fe82
commit
29f65371d8
3 changed files with 103 additions and 14 deletions
|
@ -20,20 +20,35 @@
|
||||||
@close="selectedAlarm = null"
|
@close="selectedAlarm = null"
|
||||||
v-if="modalVisible" />
|
v-if="modalVisible" />
|
||||||
|
|
||||||
|
<Modal title="Add Alarm" :visible="addAlarmModalVisible" @close="addAlarmModalVisible = false">
|
||||||
|
<AlarmEditor :value="newAlarm" new-alarm @input="addAlarm" v-if="addAlarmModalVisible" />
|
||||||
|
</Modal>
|
||||||
|
|
||||||
<FloatingButton icon-class="fa fa-stopwatch" text="Add Alarm"
|
<FloatingButton icon-class="fa fa-stopwatch" text="Add Alarm"
|
||||||
@click="addAlarmModalVisible = true" />
|
@click="addAlarmModalVisible = true" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Utils from "@/Utils";
|
import AlarmEditor from "@/components/panels/Entities/Alarm/AlarmEditor";
|
||||||
import Loading from "@/components/Loading";
|
import Loading from "@/components/Loading";
|
||||||
import EntityModal from "@/components/panels/Entities/Modal";
|
import EntityModal from "@/components/panels/Entities/Modal";
|
||||||
import Entity from "@/components/panels/Entities/Entity";
|
import Entity from "@/components/panels/Entities/Entity";
|
||||||
import FloatingButton from "@/components/elements/FloatingButton";
|
import FloatingButton from "@/components/elements/FloatingButton";
|
||||||
|
import Modal from "@/components/Modal";
|
||||||
import NoItems from "@/components/elements/NoItems";
|
import NoItems from "@/components/elements/NoItems";
|
||||||
|
import Utils from "@/Utils";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {Entity, EntityModal, FloatingButton, Loading, NoItems},
|
components: {
|
||||||
|
AlarmEditor,
|
||||||
|
Entity,
|
||||||
|
EntityModal,
|
||||||
|
FloatingButton,
|
||||||
|
Loading,
|
||||||
|
Modal,
|
||||||
|
NoItems,
|
||||||
|
},
|
||||||
|
|
||||||
mixins: [Utils],
|
mixins: [Utils],
|
||||||
props: {
|
props: {
|
||||||
pluginName: {
|
pluginName: {
|
||||||
|
@ -52,6 +67,11 @@ export default {
|
||||||
addAlarmModalVisible: false,
|
addAlarmModalVisible: false,
|
||||||
alarms: {},
|
alarms: {},
|
||||||
selectedAlarm: null,
|
selectedAlarm: null,
|
||||||
|
newAlarm: {
|
||||||
|
condition_type: 'cron',
|
||||||
|
when: '* * * * *',
|
||||||
|
audio_volume: this.$root.config?.alarm?.audio_volume ?? 100
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -172,4 +192,10 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:deep(.modal) {
|
||||||
|
.content .body {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="body children" v-if="!collapsed" @click.stop="prevent">
|
<div class="body children" v-if="!collapsed" @click.stop="prevent">
|
||||||
<div class="child">
|
<div class="child enable">
|
||||||
<label :for="enableInputId" class="label">
|
<label :for="enableInputId" class="label">
|
||||||
<div class="name col-6">Enabled</div>
|
<div class="name col-6">Enabled</div>
|
||||||
<div class="value col-6">
|
<div class="value col-6">
|
||||||
|
@ -49,6 +49,14 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="child remove" @click="$refs.removeDialog.show" v-if="hasEdit">
|
||||||
|
<label class="label">
|
||||||
|
<div class="value">
|
||||||
|
<i class="fas fa-trash" /> Remove
|
||||||
|
</div>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="child edit" v-if="hasEdit">
|
<div class="child edit" v-if="hasEdit">
|
||||||
<div class="head" :class="{collapsed: editCollapsed}"
|
<div class="head" :class="{collapsed: editCollapsed}"
|
||||||
@click.stop="editCollapsed = !editCollapsed">
|
@click.stop="editCollapsed = !editCollapsed">
|
||||||
|
@ -64,19 +72,30 @@
|
||||||
<AlarmEditor v-if="!editCollapsed" :value="value" />
|
<AlarmEditor v-if="!editCollapsed" :value="value" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<ConfirmDialog ref="removeDialog" @input="remove">
|
||||||
|
Are you sure you want to remove alarm <b>{{ value.name }}</b>?
|
||||||
|
</ConfirmDialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AlarmEditor from "./Alarm/AlarmEditor"
|
import AlarmEditor from "./Alarm/AlarmEditor"
|
||||||
|
import ConfirmDialog from "@/components/elements/ConfirmDialog"
|
||||||
import EntityMixin from "./EntityMixin"
|
import EntityMixin from "./EntityMixin"
|
||||||
import EntityIcon from "./EntityIcon"
|
import EntityIcon from "./EntityIcon"
|
||||||
import ToggleSwitch from "@/components/elements/ToggleSwitch";
|
import ToggleSwitch from "@/components/elements/ToggleSwitch";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {AlarmEditor, EntityIcon, ToggleSwitch},
|
|
||||||
mixins: [EntityMixin],
|
mixins: [EntityMixin],
|
||||||
emits: ['loading'],
|
emits: ['loading'],
|
||||||
|
components: {
|
||||||
|
AlarmEditor,
|
||||||
|
ConfirmDialog,
|
||||||
|
EntityIcon,
|
||||||
|
ToggleSwitch
|
||||||
|
},
|
||||||
|
|
||||||
data: function() {
|
data: function() {
|
||||||
return {
|
return {
|
||||||
collapsed: true,
|
collapsed: true,
|
||||||
|
@ -168,6 +187,20 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
async remove() {
|
||||||
|
this.$emit('loading', true)
|
||||||
|
try {
|
||||||
|
await this.request(
|
||||||
|
'alarm.delete',
|
||||||
|
{
|
||||||
|
name: this.value.name,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
} finally {
|
||||||
|
this.$emit('loading', false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
prevent(e) {
|
prevent(e) {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
},
|
},
|
||||||
|
@ -274,6 +307,15 @@ $icon-width: 2em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.remove {
|
||||||
|
color: $error-fg;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
label {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.edit {
|
.edit {
|
||||||
&.child {
|
&.child {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -201,6 +201,11 @@ export default {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
newAlarm: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
|
@ -285,20 +290,36 @@ export default {
|
||||||
|
|
||||||
async save() {
|
async save() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
|
let args = {}
|
||||||
|
let action = null
|
||||||
|
|
||||||
const request = {
|
if (this.newAlarm) {
|
||||||
|
action = 'alarm.add'
|
||||||
|
args = {
|
||||||
|
name: this.editForm.name,
|
||||||
|
when: this.editForm.when,
|
||||||
|
media: this.editForm.media,
|
||||||
|
media_plugin: this.editForm.media_plugin,
|
||||||
|
audio_volume: this.editForm.audio_volume,
|
||||||
|
snooze_interval: this.editForm.snooze_interval,
|
||||||
|
actions: this.editForm.actions,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
action = 'alarm.edit'
|
||||||
|
args = {
|
||||||
name: this.value.name,
|
name: this.value.name,
|
||||||
...this.changes,
|
...this.changes,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.changes.name != null) {
|
if (this.changes.name != null) {
|
||||||
request.name = this.value.name
|
args.name = this.value.name
|
||||||
request.new_name = this.changes.name
|
args.new_name = this.changes.name
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const newAlarm = await this.request('alarm.edit', request)
|
const alarm = await this.request(action, args)
|
||||||
this.$emit('input', newAlarm)
|
this.$emit('input', alarm)
|
||||||
} finally {
|
} finally {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
}
|
||||||
|
@ -319,7 +340,7 @@ $header-height: 3.5em;
|
||||||
.alarm-editor-container {
|
.alarm-editor-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50em;
|
height: 50em;
|
||||||
max-height: 70vh;
|
max-height: 65vh;
|
||||||
background: $default-bg-2;
|
background: $default-bg-2;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue