2021-06-29 08:06:20 +00:00
|
|
|
<template>
|
2021-07-09 06:14:03 +00:00
|
|
|
<form @submit.prevent="submit">
|
2021-07-27 17:47:13 +00:00
|
|
|
<div ref="modal" class="modal fade" tabindex="-1" data-bs-backdrop="static">
|
2021-07-09 06:14:03 +00:00
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
2021-07-27 17:47:13 +00:00
|
|
|
<h5 id="exampleModalLabel" class="modal-title">
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("Setup Notification") }}
|
2021-07-27 17:47:13 +00:00
|
|
|
</h5>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" />
|
2021-07-09 06:14:03 +00:00
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2021-07-18 10:51:58 +00:00
|
|
|
<div class="mb-3">
|
2021-09-09 13:28:27 +00:00
|
|
|
<label for="notification-type" class="form-label">{{ $t("Notification Type") }}</label>
|
|
|
|
<select id="notification-type" v-model="notification.type" class="form-select">
|
2021-09-17 12:40:57 +00:00
|
|
|
<option v-for="type in notificationTypes" :key="type" :value="type">{{ $t(type) }}</option>
|
2021-07-18 10:51:58 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
2021-09-09 13:28:27 +00:00
|
|
|
<label for="notification-name" class="form-label">{{ $t("Friendly Name") }}</label>
|
|
|
|
<input id="notification-name" v-model="notification.name" type="text" class="form-control" required>
|
2021-07-18 10:51:58 +00:00
|
|
|
</div>
|
|
|
|
|
2021-09-17 08:07:03 +00:00
|
|
|
<!-- form body -->
|
|
|
|
<component :is="currentForm" />
|
2021-09-12 17:46:59 +00:00
|
|
|
|
2021-09-08 17:13:09 +00:00
|
|
|
<div class="mb-3 mt-4">
|
|
|
|
<hr class="dropdown-divider mb-4">
|
2021-09-05 21:23:06 +00:00
|
|
|
|
|
|
|
<div class="form-check form-switch">
|
|
|
|
<input v-model="notification.isDefault" class="form-check-input" type="checkbox">
|
|
|
|
<label class="form-check-label">{{ $t("Default enabled") }}</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-text">
|
|
|
|
{{ $t("enableDefaultNotificationDescription") }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="form-check form-switch">
|
|
|
|
<input v-model="notification.applyExisting" class="form-check-input" type="checkbox">
|
2021-09-11 23:44:05 +00:00
|
|
|
<label class="form-check-label">{{ $t("Apply on all existing monitors") }}</label>
|
2021-09-05 21:23:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-09 06:14:03 +00:00
|
|
|
</div>
|
2021-09-08 17:13:09 +00:00
|
|
|
|
2021-07-09 06:14:03 +00:00
|
|
|
<div class="modal-footer">
|
2021-07-27 17:47:13 +00:00
|
|
|
<button v-if="id" type="button" class="btn btn-danger" :disabled="processing" @click="deleteConfirm">
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("Delete") }}
|
2021-07-27 17:47:13 +00:00
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-warning" :disabled="processing" @click="test">
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("Test") }}
|
2021-07-27 17:47:13 +00:00
|
|
|
</button>
|
|
|
|
<button type="submit" class="btn btn-primary" :disabled="processing">
|
2021-09-07 23:10:19 +00:00
|
|
|
<div v-if="processing" class="spinner-border spinner-border-sm me-1"></div>
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("Save") }}
|
2021-07-27 17:47:13 +00:00
|
|
|
</button>
|
2021-07-09 06:14:03 +00:00
|
|
|
</div>
|
2021-06-29 08:06:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-09 06:14:03 +00:00
|
|
|
</form>
|
2021-07-09 09:55:48 +00:00
|
|
|
|
2021-08-26 00:43:26 +00:00
|
|
|
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteNotification">
|
|
|
|
{{ $t("deleteNotificationMsg") }}
|
2021-07-27 17:47:13 +00:00
|
|
|
</Confirm>
|
2021-06-29 08:06:20 +00:00
|
|
|
</template>
|
|
|
|
|
2021-07-30 03:23:04 +00:00
|
|
|
<script lang="ts">
|
2021-07-27 17:47:13 +00:00
|
|
|
import { Modal } from "bootstrap"
|
2021-07-30 03:23:04 +00:00
|
|
|
import { ucfirst } from "../util.ts"
|
2021-09-07 15:32:05 +00:00
|
|
|
|
2021-07-09 09:55:48 +00:00
|
|
|
import Confirm from "./Confirm.vue";
|
2021-09-17 12:40:57 +00:00
|
|
|
import NotificationFormList from "./notifications"
|
2021-06-29 08:06:20 +00:00
|
|
|
|
|
|
|
export default {
|
2021-07-27 17:47:13 +00:00
|
|
|
components: {
|
|
|
|
Confirm,
|
2021-06-29 08:06:20 +00:00
|
|
|
},
|
2021-07-27 17:47:13 +00:00
|
|
|
props: {},
|
2021-09-09 13:24:29 +00:00
|
|
|
emits: ["added"],
|
2021-06-29 08:06:20 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
model: null,
|
2021-07-09 06:14:03 +00:00
|
|
|
processing: false,
|
|
|
|
id: null,
|
2021-09-17 12:40:57 +00:00
|
|
|
notificationTypes: Object.keys(NotificationFormList),
|
2021-07-09 06:14:03 +00:00
|
|
|
notification: {
|
|
|
|
name: "",
|
2021-09-17 12:40:57 +00:00
|
|
|
/** @type { null | keyof NotificationFormList } */
|
2021-07-09 06:14:03 +00:00
|
|
|
type: null,
|
2021-09-07 23:03:24 +00:00
|
|
|
isDefault: false,
|
2021-09-08 17:13:09 +00:00
|
|
|
// Do not set default value here, please scroll to show()
|
2021-09-17 08:54:50 +00:00
|
|
|
}
|
2021-06-29 08:06:20 +00:00
|
|
|
}
|
|
|
|
},
|
2021-07-27 17:47:13 +00:00
|
|
|
|
2021-09-17 08:07:03 +00:00
|
|
|
computed: {
|
|
|
|
currentForm() {
|
|
|
|
if (!this.notification.type) {
|
|
|
|
return null
|
|
|
|
}
|
2021-09-17 12:40:57 +00:00
|
|
|
return NotificationFormList[this.notification.type]
|
2021-09-17 08:07:03 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-07-27 17:47:13 +00:00
|
|
|
watch: {
|
|
|
|
"notification.type"(to, from) {
|
|
|
|
let oldName;
|
|
|
|
if (from) {
|
2021-09-21 09:25:54 +00:00
|
|
|
oldName = this.getUniqueDefaultName(from);
|
2021-07-27 17:47:13 +00:00
|
|
|
} else {
|
|
|
|
oldName = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! this.notification.name || this.notification.name === oldName) {
|
2021-09-21 09:25:54 +00:00
|
|
|
this.notification.name = this.getUniqueDefaultName(to);
|
2021-07-27 17:47:13 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2021-06-29 08:06:20 +00:00
|
|
|
mounted() {
|
|
|
|
this.modal = new Modal(this.$refs.modal)
|
|
|
|
},
|
|
|
|
methods: {
|
2021-07-09 06:14:03 +00:00
|
|
|
|
2021-07-09 09:55:48 +00:00
|
|
|
deleteConfirm() {
|
|
|
|
this.modal.hide();
|
|
|
|
this.$refs.confirmDelete.show()
|
|
|
|
},
|
|
|
|
|
2021-07-09 06:14:03 +00:00
|
|
|
show(notificationID) {
|
|
|
|
if (notificationID) {
|
|
|
|
this.id = notificationID;
|
|
|
|
|
|
|
|
for (let n of this.$root.notificationList) {
|
|
|
|
if (n.id === notificationID) {
|
|
|
|
this.notification = JSON.parse(n.config);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.id = null;
|
|
|
|
this.notification = {
|
|
|
|
name: "",
|
2021-07-14 20:00:15 +00:00
|
|
|
type: null,
|
2021-09-07 23:03:24 +00:00
|
|
|
isDefault: false,
|
2021-07-09 06:14:03 +00:00
|
|
|
}
|
2021-07-15 17:44:51 +00:00
|
|
|
|
2021-09-08 17:13:09 +00:00
|
|
|
// Set Default value here
|
2021-09-17 08:07:03 +00:00
|
|
|
this.notification.type = this.notificationTypes[0];
|
2021-07-09 06:14:03 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 08:06:20 +00:00
|
|
|
this.modal.show()
|
|
|
|
},
|
2021-07-09 06:14:03 +00:00
|
|
|
|
2021-06-29 08:06:20 +00:00
|
|
|
submit() {
|
2021-07-09 06:14:03 +00:00
|
|
|
this.processing = true;
|
|
|
|
this.$root.getSocket().emit("addNotification", this.notification, this.id, (res) => {
|
|
|
|
this.$root.toastRes(res)
|
|
|
|
this.processing = false;
|
2021-06-29 08:06:20 +00:00
|
|
|
|
2021-07-09 06:14:03 +00:00
|
|
|
if (res.ok) {
|
2021-09-09 13:24:29 +00:00
|
|
|
this.modal.hide();
|
|
|
|
|
|
|
|
// Emit added event, doesn't emit edit.
|
|
|
|
if (! this.id) {
|
|
|
|
this.$emit("added", res.id);
|
|
|
|
}
|
|
|
|
|
2021-07-09 06:14:03 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
test() {
|
|
|
|
this.processing = true;
|
|
|
|
this.$root.getSocket().emit("testNotification", this.notification, (res) => {
|
|
|
|
this.$root.toastRes(res)
|
|
|
|
this.processing = false;
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteNotification() {
|
|
|
|
this.processing = true;
|
|
|
|
this.$root.getSocket().emit("deleteNotification", this.id, (res) => {
|
|
|
|
this.$root.toastRes(res)
|
|
|
|
this.processing = false;
|
|
|
|
|
|
|
|
if (res.ok) {
|
|
|
|
this.modal.hide()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2021-09-21 09:25:54 +00:00
|
|
|
/**
|
2021-09-22 08:13:23 +00:00
|
|
|
* @param {keyof NotificationFormList} notificationKey
|
2021-09-21 09:25:54 +00:00
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
getUniqueDefaultName(notificationKey) {
|
|
|
|
let index = 1
|
|
|
|
let name = ""
|
|
|
|
do {
|
|
|
|
name = this.$t("defaultNotificationName", [
|
2021-09-22 14:15:50 +00:00
|
|
|
this.$t(notificationKey).replace(/\(.+\)/, "").trim(),
|
2021-09-21 09:25:54 +00:00
|
|
|
index++
|
|
|
|
]);
|
|
|
|
} while (this.$root.notificationList.find(it => it.name === name))
|
|
|
|
return name
|
|
|
|
}
|
2021-07-09 06:14:03 +00:00
|
|
|
},
|
2021-06-29 08:06:20 +00:00
|
|
|
}
|
|
|
|
</script>
|
2021-08-08 05:47:29 +00:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "../assets/vars.scss";
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
.modal-dialog .form-text, .modal-dialog p {
|
|
|
|
color: $dark-font-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|