|
|
|
<template>
|
|
|
|
<h1 class="mb-3">Settings</h1>
|
|
|
|
|
|
|
|
<div class="shadow-box">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2>General</h2>
|
|
|
|
<form class="mb-3" @submit.prevent="saveGeneral">
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="timezone" class="form-label">Timezone</label>
|
|
|
|
<select class="form-select" id="timezone" v-model="$root.userTimezone">
|
|
|
|
<option value="auto">Auto: {{ guessTimezone }}</option>
|
|
|
|
<option v-for="timezone in timezoneList" :value="timezone.value">{{ timezone.name }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button class="btn btn-primary" type="submit">Save</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<h2>Change Password</h2>
|
|
|
|
<form class="mb-3" @submit.prevent="savePassword">
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="current-password" class="form-label">Current Password</label>
|
|
|
|
<input type="password" class="form-control" id="current-password" required v-model="password.currentPassword">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="new-password" class="form-label">New Password</label>
|
|
|
|
<input type="password" class="form-control" id="new-password" required v-model="password.newPassword">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="repeat-new-password" class="form-label">Repeat New Password</label>
|
|
|
|
<input type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" id="repeat-new-password" required v-model="password.repeatNewPassword">
|
|
|
|
<div class="invalid-feedback">
|
|
|
|
The repeat password is not match.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button class="btn btn-primary" type="submit">Update Password</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button class="btn btn-danger" @click="$root.logout">Logout</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2>Notifications</h2>
|
|
|
|
<p v-if="$root.notificationList.length === 0">Not available, please setup.</p>
|
|
|
|
<p v-else>Please assign the notification to monitor(s) to get it works.</p>
|
|
|
|
|
|
|
|
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
|
|
|
<li class="list-group-item" v-for="notification in $root.notificationList">
|
|
|
|
{{ notification.name }}<br />
|
|
|
|
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<button class="btn btn-primary me-2" @click="$refs.notificationDialog.show()" type="button">Setup Notification</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<NotificationDialog ref="notificationDialog" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import dayjs from "dayjs";
|
|
|
|
import utc from 'dayjs/plugin/utc'
|
|
|
|
import timezone from 'dayjs/plugin/timezone'
|
|
|
|
import NotificationDialog from "../components/NotificationDialog.vue";
|
|
|
|
dayjs.extend(utc)
|
|
|
|
dayjs.extend(timezone)
|
|
|
|
import {timezoneList} from "../util-frontend";
|
|
|
|
import { useToast } from 'vue-toastification'
|
|
|
|
const toast = useToast()
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
NotificationDialog
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
timezoneList: timezoneList(),
|
|
|
|
guessTimezone: dayjs.tz.guess(),
|
|
|
|
|
|
|
|
invalidPassword: false,
|
|
|
|
password: {
|
|
|
|
currentPassword: "",
|
|
|
|
newPassword: "",
|
|
|
|
repeatNewPassword: "",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
saveGeneral() {
|
|
|
|
localStorage.timezone = this.$root.userTimezone;
|
|
|
|
toast.success("Saved.")
|
|
|
|
},
|
|
|
|
|
|
|
|
savePassword() {
|
|
|
|
if (this.password.newPassword !== this.password.repeatNewPassword) {
|
|
|
|
this.invalidPassword = true;
|
|
|
|
} else {
|
|
|
|
this.$root.getSocket().emit("changePassword", this.password, (res) => {
|
|
|
|
this.$root.toastRes(res)
|
|
|
|
if (res.ok) {
|
|
|
|
this.password.currentPassword = ""
|
|
|
|
this.password.newPassword = ""
|
|
|
|
this.password.repeatNewPassword = ""
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
"password.repeatNewPassword"() {
|
|
|
|
this.invalidPassword = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.shadow-box {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
</style>
|