uptime-kuma/src/pages/Settings.vue

160 lines
5.4 KiB
Vue
Raw Normal View History

2021-06-25 09:55:49 -04:00
<template>
2021-07-27 13:47:13 -04:00
<h1 class="mb-3">
Settings
</h1>
2021-06-25 09:55:49 -04:00
<div class="shadow-box">
<div class="row">
<div class="col-md-6">
<h2>General</h2>
2021-07-01 09:47:14 -04:00
<form class="mb-3" @submit.prevent="saveGeneral">
2021-06-25 09:55:49 -04:00
<div class="mb-3">
<label for="timezone" class="form-label">Timezone</label>
2021-07-27 13:47:13 -04:00
<select id="timezone" v-model="$root.userTimezone" class="form-select">
<option value="auto">
Auto: {{ guessTimezone }}
</option>
<option v-for="(timezone, index) in timezoneList" :key="index" :value="timezone.value">
{{ timezone.name }}
</option>
2021-06-25 09:55:49 -04:00
</select>
</div>
<div>
2021-07-27 13:47:13 -04:00
<button class="btn btn-primary" type="submit">
Save
</button>
2021-06-25 09:55:49 -04:00
</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>
2021-07-27 13:47:13 -04:00
<input id="current-password" v-model="password.currentPassword" type="password" class="form-control" required>
2021-06-25 09:55:49 -04:00
</div>
<div class="mb-3">
<label for="new-password" class="form-label">New Password</label>
2021-07-27 13:47:13 -04:00
<input id="new-password" v-model="password.newPassword" type="password" class="form-control" required>
2021-06-25 09:55:49 -04:00
</div>
<div class="mb-3">
<label for="repeat-new-password" class="form-label">Repeat New Password</label>
2021-07-27 13:47:13 -04:00
<input id="repeat-new-password" v-model="password.repeatNewPassword" type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" required>
2021-06-25 09:55:49 -04:00
<div class="invalid-feedback">
The repeat password does not match.
2021-06-25 09:55:49 -04:00
</div>
</div>
<div>
2021-07-27 13:47:13 -04:00
<button class="btn btn-primary" type="submit">
Update Password
</button>
2021-06-25 09:55:49 -04:00
</div>
</form>
<div>
2021-07-27 13:47:13 -04:00
<button class="btn btn-danger" @click="$root.logout">
Logout
</button>
2021-06-25 09:55:49 -04:00
</div>
</div>
<div class="col-md-6">
2021-07-27 13:47:13 -04:00
<div v-if="$root.isMobile" class="mt-3" />
2021-07-11 03:23:28 -04:00
2021-06-25 09:55:49 -04:00
<h2>Notifications</h2>
2021-07-27 13:47:13 -04:00
<p v-if="$root.notificationList.length === 0">
Not available, please setup.
</p>
<p v-else>
Please assign a notification to monitor(s) to get it to work.
</p>
2021-07-10 00:04:40 -04:00
<ul class="list-group mb-3" style="border-radius: 1rem;">
2021-07-27 13:47:13 -04:00
<li v-for="(notification, index) in $root.notificationList" :key="index" class="list-group-item">
{{ notification.name }}<br>
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
</li>
</ul>
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-06-25 09:55:49 -04:00
</div>
</div>
</div>
<NotificationDialog ref="notificationDialog" />
2021-06-25 09:55:49 -04:00
</template>
<script>
import dayjs from "dayjs";
2021-07-27 13:47:13 -04:00
import utc from "dayjs/plugin/utc"
import timezone from "dayjs/plugin/timezone"
import NotificationDialog from "../components/NotificationDialog.vue";
dayjs.extend(utc)
dayjs.extend(timezone)
2021-07-27 13:47:13 -04:00
import { timezoneList } from "../util-frontend";
import { useToast } from "vue-toastification"
2021-07-01 09:47:14 -04:00
const toast = useToast()
2021-06-25 09:55:49 -04:00
export default {
components: {
2021-07-27 13:47:13 -04:00
NotificationDialog,
2021-06-25 09:55:49 -04:00
},
data() {
return {
timezoneList: timezoneList(),
guessTimezone: dayjs.tz.guess(),
2021-07-01 09:47:14 -04:00
2021-06-25 09:55:49 -04:00
invalidPassword: false,
password: {
currentPassword: "",
newPassword: "",
repeatNewPassword: "",
2021-07-27 13:47:13 -04:00
},
2021-06-25 09:55:49 -04:00
}
},
2021-07-27 13:47:13 -04:00
watch: {
"password.repeatNewPassword"() {
this.invalidPassword = false;
},
},
2021-07-01 09:47:14 -04:00
mounted() {
},
2021-06-25 09:55:49 -04:00
methods: {
2021-07-01 09:47:14 -04:00
saveGeneral() {
localStorage.timezone = this.$root.userTimezone;
toast.success("Saved.")
},
2021-06-25 09:55:49 -04:00
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 = ""
}
})
}
},
},
}
</script>
<style scoped>
.shadow-box {
padding: 20px;
}
</style>