OpenDTU-old/webapp/src/views/MaintenanceRebootView.vue

102 lines
3.7 KiB
Vue

<template>
<BasePage :title="'Device Reboot'" :isLoading="dataLoading">
<BootstrapAlert v-model="showAlert" dismissible :variant="alertType">
{{ alertMessage }}
</BootstrapAlert>
<div class="card mt-5">
<div class="card-header text-bg-primary">Perform Reboot</div>
<div class="card-body text-center">
<button class="btn btn-danger" @click="onOpenModal(performReboot)">Reboot!
</button>
<div class="alert alert-danger mt-3" role="alert">
<b>Note:</b> A manual reboot does not normally have to be performed. OpenDTU performs any required
reboot (e.g. after a firmware update) automatically. Settings are also adopted without rebooting. If
you need to reboot due to an error, please consider reporting it at <a
href="https://github.com/tbnobody/OpenDTU/issues" class="alert-link"
target="_blank">https://github.com/tbnobody/OpenDTU/issues</a>.
</div>
</div>
</div>
</BasePage>
<div class="modal" id="performReboot" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Reboot OpenDTU</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Do you really want to reboot the device?
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" @click="onCloseModal(performReboot)"
data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger" @click="onReboot">Reboot</button>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import * as bootstrap from 'bootstrap';
import BasePage from '@/components/BasePage.vue';
import BootstrapAlert from "@/components/BootstrapAlert.vue";
import { handleResponse, authHeader, isLoggedIn } from '@/utils/authentication';
export default defineComponent({
components: {
BasePage,
BootstrapAlert,
},
data() {
return {
performReboot: {} as bootstrap.Modal,
dataLoading: false,
alertMessage: "",
alertType: "info",
showAlert: false,
};
},
mounted() {
if (!isLoggedIn()) {
this.$router.push({ path: "/login", query: { returnUrl: this.$router.currentRoute.value.fullPath } });
}
this.performReboot = new bootstrap.Modal('#performReboot');
},
methods: {
onReboot() {
const formData = new FormData();
formData.append("data", JSON.stringify({ reboot: true }));
fetch("/api/maintenance/reboot", {
method: "POST",
headers: authHeader(),
body: formData,
})
.then((response) => handleResponse(response, this.$emitter, this.$router))
.then((data) => {
this.alertMessage = data.message;
this.alertType = data.type;
this.showAlert = true;
});
this.onCloseModal(this.performReboot);
},
onOpenModal(modal: bootstrap.Modal) {
modal.show();
},
onCloseModal(modal: bootstrap.Modal) {
modal.hide();
}
},
});
</script>