uptime-kuma/src/components/NotificationDialog.vue

208 lines
6.9 KiB
Vue
Raw Normal View History

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">
{{ $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>
<!-- form body -->
<component :is="currentForm" />
<div class="mb-3 mt-4">
<hr class="dropdown-divider mb-4">
<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">
<label class="form-check-label">{{ $t("Apply on all existing monitors") }}</label>
</div>
</div>
2021-07-09 06:14:03 +00:00
</div>
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">
{{ $t("Delete") }}
2021-07-27 17:47:13 +00:00
</button>
<button type="button" class="btn btn-warning" :disabled="processing" @click="test">
{{ $t("Test") }}
2021-07-27 17:47:13 +00:00
</button>
<button type="submit" class="btn btn-primary" :disabled="processing">
<div v-if="processing" class="spinner-border spinner-border-sm me-1"></div>
{{ $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-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>
<script lang="ts">
2021-07-27 17:47:13 +00:00
import { Modal } from "bootstrap"
import { ucfirst } from "../util.ts"
2021-09-07 15:32:05 +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: {},
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,
// 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
computed: {
currentForm() {
if (!this.notification.type) {
return null
}
2021-09-17 12:40:57 +00:00
return NotificationFormList[this.notification.type]
}
},
2021-07-27 17:47:13 +00:00
watch: {
"notification.type"(to, from) {
let oldName;
if (from) {
oldName = `My ${ucfirst(from)} Alert (1)`;
} else {
oldName = "";
}
if (! this.notification.name || this.notification.name === oldName) {
this.notification.name = `My ${ucfirst(to)} Alert (1)`
}
},
},
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
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
// Set Default value here
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) {
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-06-29 08:06:20 +00:00
}
</script>
<style lang="scss" scoped>
@import "../assets/vars.scss";
.dark {
.modal-dialog .form-text, .modal-dialog p {
color: $dark-font-color;
}
}
</style>