2021-09-11 04:22:30 -04:00
|
|
|
<template>
|
2021-09-20 04:22:18 -04:00
|
|
|
<div v-if="loadedTheme" class="container mt-3">
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Sidebar for edit mode -->
|
|
|
|
<div v-if="enableEditMode" class="sidebar">
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="sidebar-body">
|
|
|
|
<div class="my-3">
|
|
|
|
<label for="slug" class="form-label">{{ $t("Slug") }}</label>
|
|
|
|
<div class="input-group">
|
|
|
|
<span id="basic-addon3" class="input-group-text">/status/</span>
|
|
|
|
<input id="slug" v-model="config.slug" type="text" class="form-control">
|
|
|
|
</div>
|
2022-03-15 00:00:29 -04:00
|
|
|
</div>
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="my-3">
|
|
|
|
<label for="title" class="form-label">{{ $t("Title") }}</label>
|
|
|
|
<input id="title" v-model="config.title" type="text" class="form-control">
|
|
|
|
</div>
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="my-3">
|
|
|
|
<label for="description" class="form-label">{{ $t("Description") }}</label>
|
|
|
|
<textarea id="description" v-model="config.description" class="form-control"></textarea>
|
|
|
|
</div>
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="my-3 form-check form-switch">
|
|
|
|
<input id="switch-theme" v-model="config.theme" class="form-check-input" type="checkbox" true-value="dark" false-value="light">
|
|
|
|
<label class="form-check-label" for="switch-theme">{{ $t("Switch to Dark Theme") }}</label>
|
|
|
|
</div>
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="my-3 form-check form-switch">
|
|
|
|
<input id="showTags" v-model="config.showTags" class="form-check-input" type="checkbox">
|
|
|
|
<label class="form-check-label" for="showTags">{{ $t("Show Tags") }}</label>
|
|
|
|
</div>
|
2021-09-15 02:34:30 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div v-if="false" class="my-3">
|
|
|
|
<label for="password" class="form-label">{{ $t("Password") }} <sup>Coming Soon</sup></label>
|
|
|
|
<input id="password" v-model="config.password" disabled type="password" autocomplete="new-password" class="form-control">
|
|
|
|
</div>
|
2021-09-15 02:34:30 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="my-3">
|
|
|
|
<label for="cname" class="form-label">Domain Names</label>
|
|
|
|
<textarea id="cname" v-model="config.domanNames" rows="3" class="form-control" :placeholder="domainNamesPlaceholder"></textarea>
|
|
|
|
</div>
|
2021-09-15 02:34:30 -04:00
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
<div class="danger-zone">
|
|
|
|
<button class="btn btn-danger me-2" @click="deleteDialog">
|
|
|
|
<font-awesome-icon icon="trash" />
|
|
|
|
{{ $t("Delete") }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-03-18 03:19:52 -04:00
|
|
|
</div>
|
2022-03-17 04:42:26 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Sidebar Footer -->
|
|
|
|
<div class="sidebar-footer">
|
|
|
|
<button class="btn btn-success me-2" @click="save">
|
2021-09-15 06:28:48 -04:00
|
|
|
<font-awesome-icon icon="save" />
|
2022-03-15 00:00:29 -04:00
|
|
|
{{ $t("Save") }}
|
2021-09-15 06:28:48 -04:00
|
|
|
</button>
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<button class="btn btn-danger me-2" @click="discard">
|
2022-04-06 10:43:22 -04:00
|
|
|
<font-awesome-icon icon="undo" />
|
2022-03-15 00:00:29 -04:00
|
|
|
{{ $t("Discard") }}
|
2021-10-29 01:19:24 -04:00
|
|
|
</button>
|
2021-09-13 07:21:39 -04:00
|
|
|
</div>
|
2021-09-11 07:40:03 -04:00
|
|
|
</div>
|
2022-03-17 04:42:26 -04:00
|
|
|
|
|
|
|
<!-- Main Status Page -->
|
2022-03-15 00:00:29 -04:00
|
|
|
<div :class="{ edit: enableEditMode}" class="main">
|
|
|
|
<!-- Logo & Title -->
|
2022-03-17 05:07:23 -04:00
|
|
|
<h1 class="mb-4 title-flex">
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Logo -->
|
|
|
|
<span class="logo-wrapper" @click="showImageCropUploadMethod">
|
2022-03-30 06:09:38 -04:00
|
|
|
<img :src="logoURL" alt class="logo me-2" :class="logoClass" @load="statusPageLogoLoaded" />
|
2022-03-15 00:00:29 -04:00
|
|
|
<font-awesome-icon v-if="enableEditMode" class="icon-upload" icon="upload" />
|
|
|
|
</span>
|
2021-09-11 07:40:03 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Uploader -->
|
|
|
|
<!-- url="/api/status-page/upload-logo" -->
|
|
|
|
<ImageCropUpload v-model="showImageCropUpload"
|
|
|
|
field="img"
|
|
|
|
:width="128"
|
|
|
|
:height="128"
|
|
|
|
:langType="$i18n.locale"
|
|
|
|
img-format="png"
|
|
|
|
:noCircle="true"
|
|
|
|
:noSquare="false"
|
|
|
|
@crop-success="cropSuccess"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Title -->
|
|
|
|
<Editable v-model="config.title" tag="span" :contenteditable="editMode" :noNL="true" />
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<!-- Admin functions -->
|
|
|
|
<div v-if="hasToken" class="mb-4">
|
|
|
|
<div v-if="!enableEditMode">
|
|
|
|
<button class="btn btn-info me-2" @click="edit">
|
|
|
|
<font-awesome-icon icon="edit" />
|
|
|
|
{{ $t("Edit Status Page") }}
|
|
|
|
</button>
|
2021-09-16 02:37:57 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<a href="/manage-status-page" class="btn btn-info">
|
|
|
|
<font-awesome-icon icon="tachometer-alt" />
|
|
|
|
{{ $t("Go to Dashboard") }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-09-16 02:37:57 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div v-else>
|
|
|
|
<button class="btn btn-primary btn-add-group me-2" @click="createIncident">
|
|
|
|
<font-awesome-icon icon="bullhorn" />
|
|
|
|
{{ $t("Create Incident") }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-09-19 07:04:51 -04:00
|
|
|
</div>
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Incident -->
|
|
|
|
<div v-if="incident !== null" class="shadow-box alert mb-4 p-4 incident" role="alert" :class="incidentClass">
|
|
|
|
<strong v-if="editIncidentMode">{{ $t("Title") }}:</strong>
|
|
|
|
<Editable v-model="incident.title" tag="h4" :contenteditable="editIncidentMode" :noNL="true" class="alert-heading" />
|
2021-09-16 02:37:57 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<strong v-if="editIncidentMode">{{ $t("Content") }}:</strong>
|
|
|
|
<Editable v-model="incident.content" tag="div" :contenteditable="editIncidentMode" class="content" />
|
2021-09-16 02:37:57 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Incident Date -->
|
|
|
|
<div class="date mt-3">
|
2022-04-09 05:03:10 -04:00
|
|
|
{{ $t("Date Created") }}: {{ $root.datetime(incident.createdDate) }} ({{ dateFromNow(incident.createdDate) }})<br />
|
2022-03-15 00:00:29 -04:00
|
|
|
<span v-if="incident.lastUpdatedDate">
|
|
|
|
{{ $t("Last Updated") }}: {{ $root.datetime(incident.lastUpdatedDate) }} ({{ dateFromNow(incident.lastUpdatedDate) }})
|
|
|
|
</span>
|
|
|
|
</div>
|
2021-09-16 10:48:28 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div v-if="editMode" class="mt-3">
|
|
|
|
<button v-if="editIncidentMode" class="btn btn-light me-2" @click="postIncident">
|
|
|
|
<font-awesome-icon icon="bullhorn" />
|
|
|
|
{{ $t("Post") }}
|
2021-09-16 10:48:28 -04:00
|
|
|
</button>
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<button v-if="!editIncidentMode && incident.id" class="btn btn-light me-2" @click="editIncident">
|
|
|
|
<font-awesome-icon icon="edit" />
|
|
|
|
{{ $t("Edit") }}
|
|
|
|
</button>
|
2021-09-16 02:37:57 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<button v-if="editIncidentMode" class="btn btn-light me-2" @click="cancelIncident">
|
|
|
|
<font-awesome-icon icon="times" />
|
|
|
|
{{ $t("Cancel") }}
|
|
|
|
</button>
|
2021-09-16 10:48:28 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div v-if="editIncidentMode" class="dropdown d-inline-block me-2">
|
|
|
|
<button id="dropdownMenuButton1" class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
|
|
{{ $t("Style") }}: {{ $t(incident.style) }}
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'info'">{{ $t("info") }}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'warning'">{{ $t("warning") }}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'danger'">{{ $t("danger") }}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'primary'">{{ $t("primary") }}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'light'">{{ $t("light") }}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click="incident.style = 'dark'">{{ $t("dark") }}</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button v-if="!editIncidentMode && incident.id" class="btn btn-light me-2" @click="unpinIncident">
|
|
|
|
<font-awesome-icon icon="unlink" />
|
|
|
|
{{ $t("Unpin") }}
|
|
|
|
</button>
|
2021-09-16 10:48:28 -04:00
|
|
|
</div>
|
2022-03-15 00:00:29 -04:00
|
|
|
</div>
|
2021-09-16 10:48:28 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Overall Status -->
|
|
|
|
<div class="shadow-box list p-4 overall-status mb-4">
|
|
|
|
<div v-if="Object.keys($root.publicMonitorList).length === 0 && loadedData">
|
|
|
|
<font-awesome-icon icon="question-circle" class="ok" />
|
|
|
|
{{ $t("No Services") }}
|
2021-09-16 10:48:28 -04:00
|
|
|
</div>
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<template v-else>
|
|
|
|
<div v-if="allUp">
|
|
|
|
<font-awesome-icon icon="check-circle" class="ok" />
|
|
|
|
{{ $t("All Systems Operational") }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="partialDown">
|
|
|
|
<font-awesome-icon icon="exclamation-circle" class="warning" />
|
|
|
|
{{ $t("Partially Degraded Service") }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="allDown">
|
|
|
|
<font-awesome-icon icon="times-circle" class="danger" />
|
|
|
|
{{ $t("Degraded Service") }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else>
|
|
|
|
<font-awesome-icon icon="question-circle" style="color: #efefef;" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
2021-09-20 04:22:18 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<!-- Description -->
|
|
|
|
<strong v-if="editMode">{{ $t("Description") }}:</strong>
|
|
|
|
<Editable v-model="config.description" :contenteditable="editMode" tag="div" class="mb-4 description" />
|
2021-09-14 02:12:27 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div v-if="editMode" class="mb-4">
|
|
|
|
<div>
|
|
|
|
<button class="btn btn-primary btn-add-group me-2" @click="addGroup">
|
|
|
|
<font-awesome-icon icon="plus" />
|
|
|
|
{{ $t("Add Group") }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-09-14 11:27:11 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div class="mt-3">
|
|
|
|
<div v-if="allMonitorList.length > 0 && loadedData">
|
|
|
|
<label>{{ $t("Add a monitor") }}:</label>
|
|
|
|
<select v-model="selectedMonitor" class="form-control">
|
|
|
|
<option v-for="monitor in allMonitorList" :key="monitor.id" :value="monitor">{{ monitor.name }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div v-else class="text-center">
|
|
|
|
{{ $t("No monitors available.") }} <router-link to="/add">{{ $t("Add one") }}</router-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-11 07:40:03 -04:00
|
|
|
</div>
|
2021-09-14 11:27:11 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<div class="mb-4">
|
|
|
|
<div v-if="$root.publicGroupList.length === 0 && loadedData" class="text-center">
|
|
|
|
<!-- 👀 Nothing here, please add a group or a monitor. -->
|
|
|
|
👀 {{ $t("statusPageNothing") }}
|
2021-09-24 04:51:53 -04:00
|
|
|
</div>
|
2021-09-11 07:40:03 -04:00
|
|
|
|
2022-03-18 05:56:46 -04:00
|
|
|
<PublicGroupList :edit-mode="enableEditMode" :show-tags="config.showTags" />
|
2021-09-15 02:34:30 -04:00
|
|
|
</div>
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
<footer class="mt-5 mb-4">
|
|
|
|
{{ $t("Powered by") }} <a target="_blank" href="https://github.com/louislam/uptime-kuma">{{ $t("Uptime Kuma" ) }}</a>
|
|
|
|
</footer>
|
2021-09-13 07:21:39 -04:00
|
|
|
</div>
|
2022-03-18 03:19:52 -04:00
|
|
|
|
|
|
|
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteStatusPage">
|
|
|
|
{{ $t("deleteStatusPageMsg") }}
|
|
|
|
</Confirm>
|
2021-09-11 07:40:03 -04:00
|
|
|
</div>
|
2021-09-11 04:22:30 -04:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-11 11:43:07 -04:00
|
|
|
import axios from "axios";
|
2021-09-16 10:48:28 -04:00
|
|
|
import PublicGroupList from "../components/PublicGroupList.vue";
|
2021-09-15 06:28:48 -04:00
|
|
|
import ImageCropUpload from "vue-image-crop-upload";
|
2021-09-16 10:48:28 -04:00
|
|
|
import { STATUS_PAGE_ALL_DOWN, STATUS_PAGE_ALL_UP, STATUS_PAGE_PARTIAL_DOWN, UP } from "../util.ts";
|
|
|
|
import { useToast } from "vue-toastification";
|
2021-09-19 07:04:51 -04:00
|
|
|
import dayjs from "dayjs";
|
2021-10-29 21:25:32 -04:00
|
|
|
import Favico from "favico.js";
|
2022-03-17 04:42:26 -04:00
|
|
|
import { getResBaseURL } from "../util-frontend";
|
2022-03-18 03:19:52 -04:00
|
|
|
import Confirm from "../components/Confirm.vue";
|
2021-10-29 21:25:32 -04:00
|
|
|
|
2021-09-16 10:48:28 -04:00
|
|
|
const toast = useToast();
|
2021-09-11 11:43:07 -04:00
|
|
|
|
2021-09-15 02:34:30 -04:00
|
|
|
const leavePageMsg = "Do you really want to leave? you have unsaved changes!";
|
|
|
|
|
2021-09-17 02:42:19 -04:00
|
|
|
let feedInterval;
|
|
|
|
|
2021-10-29 21:25:32 -04:00
|
|
|
const favicon = new Favico({
|
|
|
|
animation: "none"
|
|
|
|
});
|
|
|
|
|
2021-09-11 04:22:30 -04:00
|
|
|
export default {
|
2022-04-06 10:43:22 -04:00
|
|
|
|
2021-09-11 11:43:07 -04:00
|
|
|
components: {
|
2021-09-16 10:48:28 -04:00
|
|
|
PublicGroupList,
|
2022-03-18 03:19:52 -04:00
|
|
|
ImageCropUpload,
|
|
|
|
Confirm,
|
2021-09-11 11:43:07 -04:00
|
|
|
},
|
2021-09-15 02:34:30 -04:00
|
|
|
|
|
|
|
// Leave Page for vue route change
|
|
|
|
beforeRouteLeave(to, from, next) {
|
|
|
|
if (this.editMode) {
|
|
|
|
const answer = window.confirm(leavePageMsg);
|
|
|
|
if (answer) {
|
|
|
|
next();
|
|
|
|
} else {
|
|
|
|
next(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
2022-04-06 10:43:22 -04:00
|
|
|
props: {
|
|
|
|
overrideSlug: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2021-09-11 04:22:30 -04:00
|
|
|
data() {
|
|
|
|
return {
|
2022-03-10 08:34:30 -05:00
|
|
|
slug: null,
|
2021-09-12 14:26:45 -04:00
|
|
|
enableEditMode: false,
|
2021-09-16 02:37:57 -04:00
|
|
|
enableEditIncidentMode: false,
|
2021-09-11 04:22:30 -04:00
|
|
|
hasToken: false,
|
2021-09-11 07:40:03 -04:00
|
|
|
config: {},
|
2021-09-12 14:26:45 -04:00
|
|
|
selectedMonitor: null,
|
2021-09-15 06:28:48 -04:00
|
|
|
incident: null,
|
2021-09-17 02:42:19 -04:00
|
|
|
previousIncident: null,
|
2021-09-15 06:28:48 -04:00
|
|
|
showImageCropUpload: false,
|
|
|
|
imgDataUrl: "/icon.svg",
|
2021-09-20 04:22:18 -04:00
|
|
|
loadedTheme: false,
|
2021-09-22 03:10:08 -04:00
|
|
|
loadedData: false,
|
2021-09-22 03:31:15 -04:00
|
|
|
baseURL: "",
|
2022-03-15 00:00:29 -04:00
|
|
|
clickedEditButton: false,
|
2022-04-06 10:43:22 -04:00
|
|
|
domainNamesPlaceholder: "example1.com\nexample2.com\n..."
|
2021-09-17 02:42:19 -04:00
|
|
|
};
|
2021-09-11 04:22:30 -04:00
|
|
|
},
|
|
|
|
computed: {
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2021-09-22 03:31:15 -04:00
|
|
|
logoURL() {
|
|
|
|
if (this.imgDataUrl.startsWith("data:")) {
|
|
|
|
return this.imgDataUrl;
|
|
|
|
} else {
|
|
|
|
return this.baseURL + this.imgDataUrl;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-09-14 02:12:27 -04:00
|
|
|
/**
|
|
|
|
* If the monitor is added to public list, which will not be in this list.
|
|
|
|
*/
|
2021-09-12 14:26:45 -04:00
|
|
|
allMonitorList() {
|
2021-09-13 07:21:39 -04:00
|
|
|
let result = [];
|
|
|
|
|
|
|
|
for (let id in this.$root.monitorList) {
|
2021-09-14 02:12:27 -04:00
|
|
|
if (this.$root.monitorList[id] && ! (id in this.$root.publicMonitorList)) {
|
2021-09-13 07:21:39 -04:00
|
|
|
let monitor = this.$root.monitorList[id];
|
|
|
|
result.push(monitor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2021-09-12 14:26:45 -04:00
|
|
|
},
|
2021-09-15 02:34:30 -04:00
|
|
|
|
2021-09-14 11:27:11 -04:00
|
|
|
editMode() {
|
2021-09-12 14:26:45 -04:00
|
|
|
return this.enableEditMode && this.$root.socket.connected;
|
2021-09-15 02:34:30 -04:00
|
|
|
},
|
|
|
|
|
2021-09-16 02:37:57 -04:00
|
|
|
editIncidentMode() {
|
2021-09-16 10:48:28 -04:00
|
|
|
return this.enableEditIncidentMode;
|
2021-09-16 02:37:57 -04:00
|
|
|
},
|
|
|
|
|
2021-09-15 02:34:30 -04:00
|
|
|
isPublished() {
|
2022-03-10 08:34:30 -05:00
|
|
|
return this.config.published;
|
2021-09-15 02:34:30 -04:00
|
|
|
},
|
|
|
|
|
2021-09-15 06:28:48 -04:00
|
|
|
logoClass() {
|
|
|
|
if (this.editMode) {
|
|
|
|
return {
|
|
|
|
"edit-mode": true,
|
2021-09-17 02:42:19 -04:00
|
|
|
};
|
2021-09-15 06:28:48 -04:00
|
|
|
}
|
|
|
|
return {};
|
2021-09-16 10:48:28 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
incidentClass() {
|
|
|
|
return "bg-" + this.incident.style;
|
|
|
|
},
|
|
|
|
|
|
|
|
overallStatus() {
|
2021-09-20 04:22:18 -04:00
|
|
|
|
|
|
|
if (Object.keys(this.$root.publicLastHeartbeatList).length === 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-09-16 10:48:28 -04:00
|
|
|
let status = STATUS_PAGE_ALL_UP;
|
|
|
|
let hasUp = false;
|
|
|
|
|
|
|
|
for (let id in this.$root.publicLastHeartbeatList) {
|
|
|
|
let beat = this.$root.publicLastHeartbeatList[id];
|
|
|
|
|
|
|
|
if (beat.status === UP) {
|
|
|
|
hasUp = true;
|
|
|
|
} else {
|
|
|
|
status = STATUS_PAGE_PARTIAL_DOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! hasUp) {
|
|
|
|
status = STATUS_PAGE_ALL_DOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
},
|
|
|
|
|
|
|
|
allUp() {
|
|
|
|
return this.overallStatus === STATUS_PAGE_ALL_UP;
|
|
|
|
},
|
|
|
|
|
|
|
|
partialDown() {
|
|
|
|
return this.overallStatus === STATUS_PAGE_PARTIAL_DOWN;
|
|
|
|
},
|
|
|
|
|
|
|
|
allDown() {
|
|
|
|
return this.overallStatus === STATUS_PAGE_ALL_DOWN;
|
|
|
|
},
|
2021-09-15 06:28:48 -04:00
|
|
|
|
2021-09-11 04:22:30 -04:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
|
2021-09-13 07:21:39 -04:00
|
|
|
/**
|
|
|
|
* Selected a monitor and add to the list.
|
|
|
|
*/
|
|
|
|
selectedMonitor(monitor) {
|
|
|
|
if (monitor) {
|
|
|
|
if (this.$root.publicGroupList.length === 0) {
|
|
|
|
this.addGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
const firstGroup = this.$root.publicGroupList[0];
|
|
|
|
|
|
|
|
firstGroup.monitorList.push(monitor);
|
|
|
|
this.selectedMonitor = null;
|
|
|
|
}
|
2021-09-15 06:28:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
// Set Theme
|
2022-03-10 08:34:30 -05:00
|
|
|
"config.theme"() {
|
2022-03-18 00:57:37 -04:00
|
|
|
this.$root.statusPageTheme = this.config.theme;
|
2021-09-20 04:22:18 -04:00
|
|
|
this.loadedTheme = true;
|
2021-09-21 11:59:46 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"config.title"(title) {
|
|
|
|
document.title = title;
|
2022-03-15 00:00:29 -04:00
|
|
|
},
|
|
|
|
|
2022-03-16 03:38:10 -04:00
|
|
|
"$root.monitorList"() {
|
2022-03-18 05:56:46 -04:00
|
|
|
let count = Object.keys(this.$root.monitorList).length;
|
|
|
|
|
|
|
|
// Since publicGroupList is getting from public rest api, monitors' tags may not present if showTags = false
|
|
|
|
if (count > 0) {
|
|
|
|
for (let group of this.$root.publicGroupList) {
|
|
|
|
for (let monitor of group.monitorList) {
|
|
|
|
if (monitor.tags === undefined && this.$root.monitorList[monitor.id]) {
|
|
|
|
monitor.tags = this.$root.monitorList[monitor.id].tags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-15 06:28:48 -04:00
|
|
|
|
2021-09-11 04:22:30 -04:00
|
|
|
},
|
2021-09-11 07:40:03 -04:00
|
|
|
async created() {
|
2021-09-24 03:26:48 -04:00
|
|
|
this.hasToken = ("token" in this.$root.storage());
|
2021-09-11 07:40:03 -04:00
|
|
|
|
2021-09-15 02:34:30 -04:00
|
|
|
// Browser change page
|
|
|
|
// https://stackoverflow.com/questions/7317273/warn-user-before-leaving-web-page-with-unsaved-changes
|
|
|
|
window.addEventListener("beforeunload", (e) => {
|
|
|
|
if (this.editMode) {
|
|
|
|
(e || window.event).returnValue = leavePageMsg;
|
|
|
|
return leavePageMsg;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
});
|
2021-09-22 03:31:15 -04:00
|
|
|
|
|
|
|
// Special handle for dev
|
2022-03-17 04:42:26 -04:00
|
|
|
this.baseURL = getResBaseURL();
|
2021-09-11 04:22:30 -04:00
|
|
|
},
|
2021-09-11 11:43:07 -04:00
|
|
|
async mounted() {
|
2022-04-06 10:43:22 -04:00
|
|
|
this.slug = this.overrideSlug || this.$route.params.slug;
|
2022-03-10 08:34:30 -05:00
|
|
|
|
|
|
|
if (!this.slug) {
|
|
|
|
this.slug = "default";
|
|
|
|
}
|
|
|
|
|
2022-03-16 02:14:47 -04:00
|
|
|
axios.get("/api/status-page/" + this.slug).then((res) => {
|
2022-03-16 03:38:10 -04:00
|
|
|
this.config = res.data.config;
|
2022-03-16 02:14:47 -04:00
|
|
|
|
2022-03-17 04:42:26 -04:00
|
|
|
if (this.config.icon) {
|
|
|
|
this.imgDataUrl = this.config.icon;
|
2022-03-16 02:14:47 -04:00
|
|
|
}
|
2021-09-16 10:48:28 -04:00
|
|
|
|
2022-03-16 03:38:10 -04:00
|
|
|
this.incident = res.data.incident;
|
|
|
|
this.$root.publicGroupList = res.data.publicGroupList;
|
2021-09-16 10:48:28 -04:00
|
|
|
});
|
2021-09-17 02:42:19 -04:00
|
|
|
|
|
|
|
// 5mins a loop
|
2021-09-19 11:24:51 -04:00
|
|
|
this.updateHeartbeatList();
|
2021-09-17 02:42:19 -04:00
|
|
|
feedInterval = setInterval(() => {
|
2021-09-19 11:24:51 -04:00
|
|
|
this.updateHeartbeatList();
|
2021-09-21 12:58:22 -04:00
|
|
|
}, (300 + 10) * 1000);
|
2022-03-17 12:00:56 -04:00
|
|
|
|
|
|
|
// Go to edit page if ?edit present
|
|
|
|
// null means ?edit present, but no value
|
|
|
|
if (this.$route.query.edit || this.$route.query.edit === null) {
|
|
|
|
this.edit();
|
|
|
|
}
|
2021-09-19 11:24:51 -04:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
updateHeartbeatList() {
|
2021-09-17 02:42:19 -04:00
|
|
|
// If editMode, it will use the data from websocket.
|
|
|
|
if (! this.editMode) {
|
2022-03-10 08:34:30 -05:00
|
|
|
axios.get("/api/status-page/heartbeat/" + this.slug).then((res) => {
|
2021-10-29 21:25:32 -04:00
|
|
|
const { heartbeatList, uptimeList } = res.data;
|
|
|
|
|
2022-03-12 02:31:01 -05:00
|
|
|
this.$root.heartbeatList = heartbeatList;
|
|
|
|
this.$root.uptimeList = uptimeList;
|
|
|
|
|
|
|
|
const heartbeatIds = Object.keys(heartbeatList);
|
2021-10-29 21:25:32 -04:00
|
|
|
const downMonitors = heartbeatIds.reduce((downMonitorsAmount, currentId) => {
|
|
|
|
const monitorHeartbeats = heartbeatList[currentId];
|
|
|
|
const lastHeartbeat = monitorHeartbeats.at(-1);
|
|
|
|
|
2022-03-12 02:30:02 -05:00
|
|
|
if (lastHeartbeat) {
|
|
|
|
return lastHeartbeat.status === 0 ? downMonitorsAmount + 1 : downMonitorsAmount;
|
|
|
|
} else {
|
|
|
|
return downMonitorsAmount;
|
|
|
|
}
|
2021-10-29 21:25:32 -04:00
|
|
|
}, 0);
|
|
|
|
|
|
|
|
favicon.badge(downMonitors);
|
|
|
|
|
2021-09-22 03:10:08 -04:00
|
|
|
this.loadedData = true;
|
2021-09-17 02:42:19 -04:00
|
|
|
});
|
|
|
|
}
|
2021-09-19 11:24:51 -04:00
|
|
|
},
|
2021-09-12 14:26:45 -04:00
|
|
|
|
2021-09-11 04:22:30 -04:00
|
|
|
edit() {
|
2022-03-18 00:39:48 -04:00
|
|
|
if (this.hasToken) {
|
|
|
|
this.$root.initSocketIO(true);
|
|
|
|
this.enableEditMode = true;
|
|
|
|
this.clickedEditButton = true;
|
|
|
|
}
|
2021-09-12 14:26:45 -04:00
|
|
|
},
|
|
|
|
|
2021-09-19 07:04:51 -04:00
|
|
|
save() {
|
2022-03-15 00:00:29 -04:00
|
|
|
let startTime = new Date();
|
2022-03-24 11:43:07 -04:00
|
|
|
this.config.slug = this.config.slug.trim().toLowerCase();
|
2022-03-15 00:00:29 -04:00
|
|
|
|
|
|
|
this.$root.getSocket().emit("saveStatusPage", this.slug, this.config, this.imgDataUrl, this.$root.publicGroupList, (res) => {
|
2021-09-19 07:04:51 -04:00
|
|
|
if (res.ok) {
|
|
|
|
this.enableEditMode = false;
|
|
|
|
this.$root.publicGroupList = res.publicGroupList;
|
2022-03-15 00:00:29 -04:00
|
|
|
|
|
|
|
// Add some delay, so that the side menu animation would be better
|
|
|
|
let endTime = new Date();
|
|
|
|
let time = 100 - (endTime - startTime) / 1000;
|
|
|
|
|
|
|
|
if (time < 0) {
|
|
|
|
time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(() => {
|
2022-03-17 12:00:56 -04:00
|
|
|
location.href = "/status/" + this.config.slug;
|
2022-03-15 00:00:29 -04:00
|
|
|
}, time);
|
|
|
|
|
2021-09-19 07:04:51 -04:00
|
|
|
} else {
|
|
|
|
toast.error(res.msg);
|
|
|
|
}
|
|
|
|
});
|
2021-09-12 14:26:45 -04:00
|
|
|
},
|
|
|
|
|
2022-03-18 03:19:52 -04:00
|
|
|
deleteDialog() {
|
|
|
|
this.$refs.confirmDelete.show();
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteStatusPage() {
|
|
|
|
this.$root.getSocket().emit("deleteStatusPage", this.slug, (res) => {
|
|
|
|
if (res.ok) {
|
|
|
|
this.enableEditMode = false;
|
|
|
|
location.href = "/manage-status-page";
|
|
|
|
} else {
|
|
|
|
toast.error(res.msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-09-12 14:26:45 -04:00
|
|
|
monitorSelectorLabel(monitor) {
|
|
|
|
return `${monitor.name}`;
|
|
|
|
},
|
|
|
|
|
2021-09-13 07:21:39 -04:00
|
|
|
addGroup() {
|
2021-11-11 04:53:38 -05:00
|
|
|
let groupName = this.$t("Untitled Group");
|
2021-09-15 02:34:30 -04:00
|
|
|
|
|
|
|
if (this.$root.publicGroupList.length === 0) {
|
2021-11-11 04:53:38 -05:00
|
|
|
groupName = this.$t("Services");
|
2021-09-15 02:34:30 -04:00
|
|
|
}
|
|
|
|
|
2021-11-05 06:27:19 -04:00
|
|
|
this.$root.publicGroupList.unshift({
|
2021-09-15 02:34:30 -04:00
|
|
|
name: groupName,
|
2021-09-13 07:21:39 -04:00
|
|
|
monitorList: [],
|
2021-09-17 02:42:19 -04:00
|
|
|
});
|
2021-09-14 02:12:27 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
discard() {
|
2022-03-17 12:00:56 -04:00
|
|
|
location.href = "/status/" + this.slug;
|
2021-09-15 06:28:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2021-09-16 02:37:57 -04:00
|
|
|
* Crop Success
|
2021-09-15 06:28:48 -04:00
|
|
|
*/
|
2021-09-16 02:37:57 -04:00
|
|
|
cropSuccess(imgDataUrl) {
|
2021-09-15 06:28:48 -04:00
|
|
|
this.imgDataUrl = imgDataUrl;
|
|
|
|
},
|
|
|
|
|
|
|
|
showImageCropUploadMethod() {
|
|
|
|
if (this.editMode) {
|
|
|
|
this.showImageCropUpload = true;
|
|
|
|
}
|
2021-09-16 02:37:57 -04:00
|
|
|
},
|
|
|
|
|
2022-03-30 06:09:38 -04:00
|
|
|
statusPageLogoLoaded(eventPayload) {
|
2022-03-31 09:30:07 -04:00
|
|
|
// Remark: may not work in dev, due to cros
|
2022-03-30 06:09:38 -04:00
|
|
|
favicon.image(eventPayload.target);
|
|
|
|
},
|
|
|
|
|
2021-09-16 02:37:57 -04:00
|
|
|
createIncident() {
|
|
|
|
this.enableEditIncidentMode = true;
|
2021-09-17 02:42:19 -04:00
|
|
|
|
|
|
|
if (this.incident) {
|
|
|
|
this.previousIncident = this.incident;
|
|
|
|
}
|
|
|
|
|
2021-09-16 02:37:57 -04:00
|
|
|
this.incident = {
|
|
|
|
title: "",
|
|
|
|
content: "",
|
2021-09-16 10:48:28 -04:00
|
|
|
style: "primary",
|
2021-09-16 02:37:57 -04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
postIncident() {
|
2021-09-16 10:48:28 -04:00
|
|
|
if (this.incident.title == "" || this.incident.content == "") {
|
2021-11-12 04:14:23 -05:00
|
|
|
toast.error(this.$t("Please input title and content"));
|
2021-09-16 10:48:28 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:38:10 -04:00
|
|
|
this.$root.getSocket().emit("postIncident", this.slug, this.incident, (res) => {
|
2021-09-16 10:48:28 -04:00
|
|
|
|
|
|
|
if (res.ok) {
|
|
|
|
this.enableEditIncidentMode = false;
|
|
|
|
this.incident = res.incident;
|
|
|
|
} else {
|
|
|
|
toast.error(res.msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2021-09-16 02:37:57 -04:00
|
|
|
},
|
|
|
|
|
2021-09-16 10:48:28 -04:00
|
|
|
/**
|
|
|
|
* Click Edit Button
|
|
|
|
*/
|
2021-09-16 02:37:57 -04:00
|
|
|
editIncident() {
|
|
|
|
this.enableEditIncidentMode = true;
|
2021-09-17 02:42:19 -04:00
|
|
|
this.previousIncident = Object.assign({}, this.incident);
|
2021-09-16 02:37:57 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
cancelIncident() {
|
|
|
|
this.enableEditIncidentMode = false;
|
2021-09-17 02:42:19 -04:00
|
|
|
|
|
|
|
if (this.previousIncident) {
|
|
|
|
this.incident = this.previousIncident;
|
|
|
|
this.previousIncident = null;
|
|
|
|
}
|
2021-09-16 02:37:57 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
unpinIncident() {
|
2022-03-18 02:14:22 -04:00
|
|
|
this.$root.getSocket().emit("unpinIncident", this.slug, () => {
|
2021-09-16 10:48:28 -04:00
|
|
|
this.incident = null;
|
2021-09-17 02:42:19 -04:00
|
|
|
});
|
2021-09-28 02:07:42 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
dateFromNow(date) {
|
|
|
|
return dayjs.utc(date).fromNow();
|
|
|
|
},
|
|
|
|
|
2021-09-15 02:34:30 -04:00
|
|
|
}
|
2021-09-17 02:42:19 -04:00
|
|
|
};
|
2021-09-11 04:22:30 -04:00
|
|
|
</script>
|
2021-09-11 07:40:03 -04:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "../assets/vars.scss";
|
|
|
|
|
|
|
|
.overall-status {
|
|
|
|
font-weight: bold;
|
2021-09-14 02:12:27 -04:00
|
|
|
font-size: 25px;
|
2021-09-11 07:40:03 -04:00
|
|
|
|
|
|
|
.ok {
|
|
|
|
color: $primary;
|
|
|
|
}
|
2021-09-14 02:12:27 -04:00
|
|
|
|
|
|
|
.warning {
|
|
|
|
color: $warning;
|
|
|
|
}
|
2021-09-15 02:34:30 -04:00
|
|
|
|
|
|
|
.danger {
|
|
|
|
color: $danger;
|
|
|
|
}
|
2021-09-11 07:40:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 30px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 60px;
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
.main {
|
|
|
|
transition: all ease-in-out 0.1s;
|
|
|
|
|
|
|
|
&.edit {
|
|
|
|
margin-left: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 300px;
|
|
|
|
height: 100vh;
|
2022-04-09 05:03:10 -04:00
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
border-right: 1px solid #ededed;
|
|
|
|
|
2022-03-18 03:19:52 -04:00
|
|
|
.danger-zone {
|
|
|
|
border-top: 1px solid #ededed;
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
|
2022-04-09 05:03:10 -04:00
|
|
|
.sidebar-body {
|
2022-04-09 05:23:22 -04:00
|
|
|
padding: 0 10px 10px 10px;
|
2022-04-09 05:03:10 -04:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
height: calc(100% - 70px);
|
|
|
|
}
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
.sidebar-footer {
|
|
|
|
border-top: 1px solid #ededed;
|
2022-04-09 05:23:22 -04:00
|
|
|
padding: 10px;
|
2022-04-09 05:03:10 -04:00
|
|
|
width: 300px;
|
|
|
|
height: 70px;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: white;
|
2022-03-15 00:00:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-11 07:40:03 -04:00
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2021-09-13 07:21:39 -04:00
|
|
|
|
2021-09-15 06:28:48 -04:00
|
|
|
.description span {
|
|
|
|
min-width: 50px;
|
|
|
|
}
|
|
|
|
|
2022-03-17 05:07:23 -04:00
|
|
|
.title-flex {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:22:35 -04:00
|
|
|
.logo-wrapper {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.icon-upload {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-upload {
|
|
|
|
transition: all $easing-in 0.2s;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 6px;
|
|
|
|
font-size: 20px;
|
|
|
|
left: -14px;
|
|
|
|
background-color: white;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
box-shadow: 0 15px 70px rgba(0, 0, 0, 0.9);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-15 06:28:48 -04:00
|
|
|
.logo {
|
|
|
|
transition: all $easing-in 0.2s;
|
|
|
|
|
|
|
|
&.edit-mode {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-16 02:37:57 -04:00
|
|
|
.incident {
|
|
|
|
.content {
|
2021-09-19 07:04:51 -04:00
|
|
|
&[contenteditable=true] {
|
|
|
|
min-height: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.date {
|
2021-09-21 09:22:35 -04:00
|
|
|
font-size: 12px;
|
2021-09-16 02:37:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-23 04:31:45 -04:00
|
|
|
.mobile {
|
|
|
|
h1 {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overall-status {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
.dark {
|
|
|
|
.sidebar {
|
|
|
|
background-color: $dark-header-bg;
|
|
|
|
border-right-color: $dark-border-color;
|
|
|
|
|
2022-03-18 03:19:52 -04:00
|
|
|
.danger-zone {
|
|
|
|
border-top-color: $dark-border-color;
|
|
|
|
}
|
|
|
|
|
2022-03-15 00:00:29 -04:00
|
|
|
.sidebar-footer {
|
|
|
|
border-top-color: $dark-border-color;
|
2022-04-09 05:03:10 -04:00
|
|
|
background-color: $dark-header-bg;
|
2022-03-15 00:00:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-11 07:40:03 -04:00
|
|
|
</style>
|