uptime-kuma/src/pages/EditMonitor.vue

298 lines
11 KiB
Vue
Raw Normal View History

2021-06-25 09:55:49 -04:00
<template>
2021-08-08 09:42:37 -04:00
<h1 class="mb-3">{{ pageName }}</h1>
2021-06-25 09:55:49 -04:00
<form @submit.prevent="submit">
2021-07-27 13:47:13 -04:00
<div class="shadow-box">
<div class="row">
<div class="col-md-6">
2021-08-08 09:42:37 -04:00
<h2 class="mb-2">General</h2>
2021-06-25 09:55:49 -04:00
<div class="my-3">
2021-06-25 09:55:49 -04:00
<label for="type" class="form-label">Monitor Type</label>
2021-07-27 13:47:13 -04:00
<select id="type" v-model="monitor.type" class="form-select" aria-label="Default select example">
<option value="http">
HTTP(s)
</option>
<option value="port">
TCP Port
</option>
<option value="ping">
Ping
</option>
<option value="keyword">
HTTP(s) - Keyword
</option>
2021-06-25 09:55:49 -04:00
</select>
</div>
<div class="my-3">
2021-06-25 09:55:49 -04:00
<label for="name" class="form-label">Friendly Name</label>
2021-07-27 13:47:13 -04:00
<input id="name" v-model="monitor.name" type="text" class="form-control" required>
2021-06-25 09:55:49 -04:00
</div>
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
2021-06-25 09:55:49 -04:00
<label for="url" class="form-label">URL</label>
2021-07-27 13:47:13 -04:00
<input id="url" v-model="monitor.url" type="url" class="form-control" pattern="https?://.+" required>
2021-06-25 09:55:49 -04:00
</div>
<div v-if="monitor.type === 'keyword' " class="my-3">
2021-07-11 02:20:31 -04:00
<label for="keyword" class="form-label">Keyword</label>
2021-07-27 13:47:13 -04:00
<input id="keyword" v-model="monitor.keyword" type="text" class="form-control" required>
<div class="form-text">
Search keyword in plain html or JSON response and it is case-sensitive
</div>
2021-07-11 02:20:31 -04:00
</div>
2021-07-01 05:19:28 -04:00
<div v-if="monitor.type === 'port' || monitor.type === 'ping' " class="my-3">
2021-07-01 05:00:23 -04:00
<label for="hostname" class="form-label">Hostname</label>
2021-07-27 13:47:13 -04:00
<input id="hostname" v-model="monitor.hostname" type="text" class="form-control" required>
2021-07-01 05:00:23 -04:00
</div>
2021-07-01 02:03:06 -04:00
<div v-if="monitor.type === 'port' " class="my-3">
2021-07-01 05:00:23 -04:00
<label for="port" class="form-label">Port</label>
2021-07-27 13:47:13 -04:00
<input id="port" v-model="monitor.port" type="number" class="form-control" required min="0" max="65535" step="1">
2021-07-01 05:00:23 -04:00
</div>
2021-07-01 02:03:06 -04:00
<div class="my-3">
2021-06-25 09:55:49 -04:00
<label for="interval" class="form-label">Heartbeat Interval (Every {{ monitor.interval }} seconds)</label>
2021-07-27 13:47:13 -04:00
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required min="20" step="1">
2021-06-25 09:55:49 -04:00
</div>
<div class="my-3">
2021-07-22 07:02:44 -04:00
<label for="maxRetries" class="form-label">Retries</label>
2021-07-27 13:47:13 -04:00
<input id="maxRetries" v-model="monitor.maxretries" type="number" class="form-control" required min="0" step="1">
<div class="form-text">
Maximum retries before the service is marked as down and a notification is sent
</div>
</div>
2021-08-08 09:42:37 -04:00
<h2 class="mt-5 mb-2">Advanced</h2>
2021-07-29 13:09:14 -04:00
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3 form-check">
2021-07-29 13:09:14 -04:00
<input id="ignore-tls" v-model="monitor.ignoreTls" class="form-check-input" type="checkbox" value="">
<label class="form-check-label" for="ignore-tls">
Ignore TLS/SSL error for HTTPS websites
</label>
</div>
<div class="my-3 form-check">
2021-07-29 13:09:14 -04:00
<input id="upside-down" v-model="monitor.upsideDown" class="form-check-input" type="checkbox">
<label class="form-check-label" for="upside-down">
Upside Down Mode
</label>
<div class="form-text">
Flip the status upside down. If the service is reachable, it is DOWN.
</div>
</div>
<div class="my-3">
<label for="maxRedirects" class="form-label">Max. Redirects</label>
<input id="maxRedirects" v-model="monitor.maxredirects" type="number" class="form-control" required min="0" step="1">
<div class="form-text">
Maximum number of redirects to follow. Set to 0 to disable redirects.
</div>
</div>
<div class="my-3">
<label for="acceptedStatusCodes" class="form-label">Accepted Status Codes</label>
2021-08-08 09:03:10 -04:00
<VueMultiselect
id="acceptedStatusCodes"
v-model="monitor.accepted_statuscodes"
:options="acceptedStatusCodeOptions"
:multiple="true"
:close-on-select="false"
:clear-on-select="false"
:preserve-search="true"
placeholder="Pick Accepted Status Codes..."
:preselect-first="false"
2021-08-08 09:14:29 -04:00
:max-height="600"
2021-08-08 09:03:10 -04:00
:taggable="true"
></VueMultiselect>
<div class="form-text">
Select status codes which are considered as a successful response.
</div>
</div>
2021-08-08 09:42:37 -04:00
<div class="mt-5 mb-1">
<button class="btn btn-primary" type="submit" :disabled="processing">Save</button>
2021-06-25 09:55:49 -04:00
</div>
2021-07-27 13:47:13 -04:00
</div>
2021-06-25 09:55:49 -04:00
2021-07-27 13:47:13 -04:00
<div class="col-md-6">
<div v-if="$root.isMobile" class="mt-3" />
2021-07-11 03:23:28 -04:00
2021-08-08 09:42:37 -04:00
<h2 class="mb-2">Notifications</h2>
2021-07-27 13:47:13 -04:00
<p v-if="$root.notificationList.length === 0">
Not available, please setup.
</p>
2021-07-11 03:23:28 -04:00
<div v-for="notification in $root.notificationList" :key="notification.id" class="form-check form-switch my-3">
2021-07-27 13:47:13 -04:00
<input :id=" 'notification' + notification.id" v-model="monitor.notificationIDList[notification.id]" class="form-check-input" type="checkbox">
2021-07-09 02:14:03 -04:00
2021-07-27 13:47:13 -04:00
<label class="form-check-label" :for=" 'notification' + notification.id">
{{ notification.name }}
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
</label>
</div>
2021-07-27 13:47:13 -04:00
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
Setup Notification
</button>
2021-07-09 02:14:03 -04:00
</div>
2021-06-25 09:55:49 -04:00
</div>
</div>
</form>
2021-06-29 04:06:20 -04:00
<NotificationDialog ref="notificationDialog" />
2021-06-25 09:55:49 -04:00
</template>
<script>
2021-06-29 04:06:20 -04:00
import NotificationDialog from "../components/NotificationDialog.vue";
2021-07-27 13:47:13 -04:00
import { useToast } from "vue-toastification"
import VueMultiselect from "vue-multiselect"
2021-06-25 09:55:49 -04:00
const toast = useToast()
export default {
components: {
2021-07-27 13:47:13 -04:00
NotificationDialog,
VueMultiselect,
2021-06-25 09:55:49 -04:00
},
2021-08-08 09:14:29 -04:00
2021-06-25 09:55:49 -04:00
data() {
return {
processing: false,
monitor: {
notificationIDList: {},
},
2021-08-08 09:14:29 -04:00
acceptedStatusCodeOptions: [],
2021-06-25 09:55:49 -04:00
}
},
2021-08-08 09:14:29 -04:00
2021-06-25 09:55:49 -04:00
computed: {
pageName() {
return (this.isAdd) ? "Add New Monitor" : "Edit"
},
isAdd() {
return this.$route.path === "/add";
2021-06-27 04:10:55 -04:00
},
isEdit() {
return this.$route.path.startsWith("/edit");
2021-07-27 13:47:13 -04:00
},
},
watch: {
"$route.fullPath" () {
this.init();
},
},
mounted() {
this.init();
2021-08-08 09:14:29 -04:00
let acceptedStatusCodeOptions = [
"100-199",
"200-299",
"300-399",
"400-499",
"500-599",
];
for (let i = 100; i <= 999; i++) {
acceptedStatusCodeOptions.push(i.toString());
}
this.acceptedStatusCodeOptions = acceptedStatusCodeOptions;
2021-06-25 09:55:49 -04:00
},
methods: {
2021-06-27 04:10:55 -04:00
init() {
if (this.isAdd) {
console.log("??????")
this.monitor = {
type: "http",
name: "",
url: "https://",
interval: 60,
maxretries: 0,
notificationIDList: {},
2021-07-30 07:18:26 -04:00
ignoreTls: false,
2021-07-29 13:09:14 -04:00
upsideDown: false,
maxredirects: 10,
accepted_statuscodes: ["200-299"],
2021-06-27 04:10:55 -04:00
}
} else if (this.isEdit) {
this.$root.getSocket().emit("getMonitor", this.$route.params.id, (res) => {
if (res.ok) {
this.monitor = res.monitor;
} else {
toast.error(res.msg)
}
})
}
},
2021-06-25 09:55:49 -04:00
submit() {
this.processing = true;
if (this.isAdd) {
this.$root.add(this.monitor, (res) => {
this.processing = false;
if (res.ok) {
toast.success(res.msg);
this.$router.push("/dashboard/" + res.monitorID)
} else {
toast.error(res.msg);
}
})
} else {
2021-06-27 04:10:55 -04:00
this.$root.getSocket().emit("editMonitor", this.monitor, (res) => {
this.processing = false;
this.$root.toastRes(res)
})
2021-06-25 09:55:49 -04:00
}
2021-07-27 13:47:13 -04:00
},
2021-06-27 04:10:55 -04:00
},
2021-06-25 09:55:49 -04:00
}
</script>
<style src="vue-multiselect/dist/vue-multiselect.css"></style>
2021-08-06 07:48:51 -04:00
<style lang="scss">
@import "../assets/vars.scss";
.multiselect__tags {
2021-08-08 09:03:10 -04:00
border-radius: 1.5rem;
border: 1px solid #ced4da;
}
2021-08-06 07:48:51 -04:00
.multiselect--active .multiselect__tags {
border-radius: 1rem;
}
2021-08-06 07:48:51 -04:00
.multiselect__option--highlight {
background: $primary !important;
}
.multiselect__option--highlight::after {
background: $primary !important;
}
.multiselect__tag {
2021-08-08 09:03:10 -04:00
border-radius: 50rem;
2021-08-06 07:48:51 -04:00
background: $primary !important;
}
2021-08-08 09:03:10 -04:00
.dark {
.multiselect__tag {
color: $dark-font-color2;
}
}
</style>
2021-06-25 09:55:49 -04:00
<style scoped>
.shadow-box {
padding: 20px;
}
</style>