mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-10 07:34:07 -08:00
add animation for page change
This commit is contained in:
parent
209e44c2e1
commit
f21937b197
|
@ -183,3 +183,20 @@ h2 {
|
||||||
background-color: $dark-bg;
|
background-color: $dark-bg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Transitions
|
||||||
|
*/
|
||||||
|
|
||||||
|
// page-change
|
||||||
|
.slide-fade-enter-active {
|
||||||
|
transition: all 0.20s $easing-in;
|
||||||
|
}
|
||||||
|
.slide-fade-leave-active {
|
||||||
|
transition: all 0.20s $easing-in;
|
||||||
|
}
|
||||||
|
.slide-fade-enter-from,
|
||||||
|
.slide-fade-leave-to {
|
||||||
|
transform: translateY(50px);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
|
@ -12,3 +12,7 @@ $dark-font-color2: #020b05;
|
||||||
$dark-bg: #0D1117;
|
$dark-bg: #0D1117;
|
||||||
$dark-bg2: #070A10;
|
$dark-bg2: #070A10;
|
||||||
$dark-border-color: #1d2634;
|
$dark-border-color: #1d2634;
|
||||||
|
|
||||||
|
$easing-in: cubic-bezier(0.54,0.78,0.55,0.97);
|
||||||
|
$easing-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||||
|
$easing-in-out: cubic-bezier(0.79, 0.14, 0.15, 0.86);
|
||||||
|
|
|
@ -1,78 +1,79 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="$route.name === 'DashboardHome'">
|
<transition name="slide-fade" appear>
|
||||||
<h1 class="mb-3">
|
<div v-if="$route.name === 'DashboardHome'">
|
||||||
Quick Stats
|
<h1 class="mb-3">
|
||||||
</h1>
|
Quick Stats
|
||||||
|
</h1>
|
||||||
|
|
||||||
<div class="shadow-box big-padding text-center">
|
<div class="shadow-box big-padding text-center">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h3>Up</h3>
|
<h3>Up</h3>
|
||||||
<span class="num">{{ stats.up }}</span>
|
<span class="num">{{ stats.up }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h3>Down</h3>
|
||||||
|
<span class="num text-danger">{{ stats.down }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h3>Unknown</h3>
|
||||||
|
<span class="num text-secondary">{{ stats.unknown }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h3>Pause</h3>
|
||||||
|
<span class="num text-secondary">{{ stats.pause }}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div v-if="false" class="row">
|
||||||
<h3>Down</h3>
|
<div class="col-3">
|
||||||
<span class="num text-danger">{{ stats.down }}</span>
|
<h3>Uptime</h3>
|
||||||
</div>
|
<p>(24-hour)</p>
|
||||||
<div class="col">
|
<span class="num" />
|
||||||
<h3>Unknown</h3>
|
</div>
|
||||||
<span class="num text-secondary">{{ stats.unknown }}</span>
|
<div class="col-3">
|
||||||
</div>
|
<h3>Uptime</h3>
|
||||||
<div class="col">
|
<p>(30-day)</p>
|
||||||
<h3>Pause</h3>
|
<span class="num" />
|
||||||
<span class="num text-secondary">{{ stats.pause }}</span>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="false" class="row">
|
|
||||||
<div class="col-3">
|
<div class="shadow-box" style="margin-top: 25px;overflow-x: scroll">
|
||||||
<h3>Uptime</h3>
|
<table class="table table-borderless table-hover">
|
||||||
<p>(24-hour)</p>
|
<thead>
|
||||||
<span class="num" />
|
<tr>
|
||||||
</div>
|
<th>Name</th>
|
||||||
<div class="col-3">
|
<th>Status</th>
|
||||||
<h3>Uptime</h3>
|
<th>DateTime</th>
|
||||||
<p>(30-day)</p>
|
<th>Message</th>
|
||||||
<span class="num" />
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="(beat, index) in displayedRecords" :key="index">
|
||||||
|
<td>{{ beat.name }}</td>
|
||||||
|
<td><Status :status="beat.status" /></td>
|
||||||
|
<td><Datetime :value="beat.time" /></td>
|
||||||
|
<td>{{ beat.msg }}</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr v-if="importantHeartBeatList.length === 0">
|
||||||
|
<td colspan="4">
|
||||||
|
No important events
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<div class="d-flex justify-content-center kuma_pagination">
|
||||||
|
<pagination
|
||||||
|
v-model="page"
|
||||||
|
:records="importantHeartBeatList.length"
|
||||||
|
:per-page="perPage"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</transition>
|
||||||
<div class="shadow-box" style="margin-top: 25px;overflow-x: scroll">
|
|
||||||
<table class="table table-borderless table-hover">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Status</th>
|
|
||||||
<th>DateTime</th>
|
|
||||||
<th>Message</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr v-for="(beat, index) in displayedRecords" :key="index">
|
|
||||||
<td>{{ beat.name }}</td>
|
|
||||||
<td><Status :status="beat.status" /></td>
|
|
||||||
<td><Datetime :value="beat.time" /></td>
|
|
||||||
<td>{{ beat.msg }}</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr v-if="importantHeartBeatList.length === 0">
|
|
||||||
<td colspan="4">
|
|
||||||
No important events
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center kuma_pagination">
|
|
||||||
<pagination
|
|
||||||
v-model="page"
|
|
||||||
:records="importantHeartBeatList.length"
|
|
||||||
:per-page="perPage"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<router-view ref="child" />
|
<router-view ref="child" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,169 +1,175 @@
|
||||||
<template>
|
<template>
|
||||||
<h1> {{ monitor.name }}</h1>
|
<transition name="slide-fade" appear>
|
||||||
<p class="url">
|
<div>
|
||||||
<a v-if="monitor.type === 'http' || monitor.type === 'keyword' " :href="monitor.url" target="_blank">{{ monitor.url }}</a>
|
<h1> {{ monitor.name }}</h1>
|
||||||
<span v-if="monitor.type === 'port'">TCP Ping {{ monitor.hostname }}:{{ monitor.port }}</span>
|
<p class="url">
|
||||||
<span v-if="monitor.type === 'ping'">Ping: {{ monitor.hostname }}</span>
|
<a v-if="monitor.type === 'http' || monitor.type === 'keyword' " :href="monitor.url" target="_blank">{{ monitor.url }}</a>
|
||||||
<span v-if="monitor.type === 'keyword'">
|
<span v-if="monitor.type === 'port'">TCP Ping {{ monitor.hostname }}:{{ monitor.port }}</span>
|
||||||
<br>
|
<span v-if="monitor.type === 'ping'">Ping: {{ monitor.hostname }}</span>
|
||||||
<span>Keyword:</span> <span class="keyword">{{ monitor.keyword }}</span>
|
<span v-if="monitor.type === 'keyword'">
|
||||||
</span>
|
<br>
|
||||||
</p>
|
<span>Keyword:</span> <span class="keyword">{{ monitor.keyword }}</span>
|
||||||
|
|
||||||
<div class="functions">
|
|
||||||
<button v-if="monitor.active" class="btn btn-light" @click="pauseDialog">
|
|
||||||
<font-awesome-icon icon="pause" /> Pause
|
|
||||||
</button>
|
|
||||||
<button v-if="! monitor.active" class="btn btn-primary" @click="resumeMonitor">
|
|
||||||
<font-awesome-icon icon="play" /> Resume
|
|
||||||
</button>
|
|
||||||
<router-link :to=" '/edit/' + monitor.id " class="btn btn-secondary">
|
|
||||||
<font-awesome-icon icon="edit" /> Edit
|
|
||||||
</router-link>
|
|
||||||
<button class="btn btn-danger" @click="deleteDialog">
|
|
||||||
<font-awesome-icon icon="trash" /> Delete
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="shadow-box">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-8">
|
|
||||||
<HeartbeatBar :monitor-id="monitor.id" />
|
|
||||||
<span class="word">Check every {{ monitor.interval }} seconds.</span>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4 text-center">
|
|
||||||
<span class="badge rounded-pill" :class=" 'bg-' + status.color " style="font-size: 30px">{{ status.text }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="shadow-box big-padding text-center stats">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<h4>{{ pingTitle }}</h4>
|
|
||||||
<p>(Current)</p>
|
|
||||||
<span class="num">
|
|
||||||
<a href="#" @click.prevent="showPingChartBox = !showPingChartBox">
|
|
||||||
<CountUp :value="ping" />
|
|
||||||
</a>
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</p>
|
||||||
<div class="col">
|
|
||||||
<h4>Avg. {{ pingTitle }}</h4>
|
<div class="functions">
|
||||||
<p>(24-hour)</p>
|
<button v-if="monitor.active" class="btn btn-light" @click="pauseDialog">
|
||||||
<span class="num"><CountUp :value="avgPing" /></span>
|
<font-awesome-icon icon="pause" /> Pause
|
||||||
</div>
|
</button>
|
||||||
<div class="col">
|
<button v-if="! monitor.active" class="btn btn-primary" @click="resumeMonitor">
|
||||||
<h4>Uptime</h4>
|
<font-awesome-icon icon="play" /> Resume
|
||||||
<p>(24-hour)</p>
|
</button>
|
||||||
<span class="num"><Uptime :monitor="monitor" type="24" /></span>
|
<router-link :to=" '/edit/' + monitor.id " class="btn btn-secondary">
|
||||||
</div>
|
<font-awesome-icon icon="edit" /> Edit
|
||||||
<div class="col">
|
</router-link>
|
||||||
<h4>Uptime</h4>
|
<button class="btn btn-danger" @click="deleteDialog">
|
||||||
<p>(30-day)</p>
|
<font-awesome-icon icon="trash" /> Delete
|
||||||
<span class="num"><Uptime :monitor="monitor" type="720" /></span>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="certInfo" class="col">
|
<div class="shadow-box">
|
||||||
<h4>Cert Exp.</h4>
|
<div class="row">
|
||||||
<p>(<Datetime :value="certInfo.validTo" date-only />)</p>
|
<div class="col-md-8">
|
||||||
<span class="num">
|
<HeartbeatBar :monitor-id="monitor.id" />
|
||||||
<a href="#" @click.prevent="toggleCertInfoBox = !toggleCertInfoBox">{{ certInfo.daysRemaining }} days</a>
|
<span class="word">Check every {{ monitor.interval }} seconds.</span>
|
||||||
</span>
|
</div>
|
||||||
|
<div class="col-md-4 text-center">
|
||||||
|
<span class="badge rounded-pill" :class=" 'bg-' + status.color " style="font-size: 30px">{{ status.text }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="showPingChartBox" class="shadow-box big-padding text-center ping-chart-wrapper">
|
<div class="shadow-box big-padding text-center stats">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<PingChart :monitor-id="monitor.id" />
|
<h4>{{ pingTitle }}</h4>
|
||||||
|
<p>(Current)</p>
|
||||||
|
<span class="num">
|
||||||
|
<a href="#" @click.prevent="showPingChartBox = !showPingChartBox">
|
||||||
|
<CountUp :value="ping" />
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h4>Avg. {{ pingTitle }}</h4>
|
||||||
|
<p>(24-hour)</p>
|
||||||
|
<span class="num"><CountUp :value="avgPing" /></span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h4>Uptime</h4>
|
||||||
|
<p>(24-hour)</p>
|
||||||
|
<span class="num"><Uptime :monitor="monitor" type="24" /></span>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h4>Uptime</h4>
|
||||||
|
<p>(30-day)</p>
|
||||||
|
<span class="num"><Uptime :monitor="monitor" type="720" /></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="certInfo" class="col">
|
||||||
|
<h4>Cert Exp.</h4>
|
||||||
|
<p>(<Datetime :value="certInfo.validTo" date-only />)</p>
|
||||||
|
<span class="num">
|
||||||
|
<a href="#" @click.prevent="toggleCertInfoBox = !toggleCertInfoBox">{{ certInfo.daysRemaining }} days</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="showCertInfoBox" class="shadow-box big-padding text-center">
|
<transition name="slide-fade" appear>
|
||||||
<div class="row">
|
<div v-if="showCertInfoBox" class="shadow-box big-padding text-center">
|
||||||
<div class="col">
|
<div class="row">
|
||||||
<h4>Certificate Info</h4>
|
<div class="col">
|
||||||
<table class="text-start">
|
<h4>Certificate Info</h4>
|
||||||
|
<table class="text-start">
|
||||||
|
<tbody>
|
||||||
|
<tr class="my-3">
|
||||||
|
<td class="px-3">
|
||||||
|
Valid:
|
||||||
|
</td>
|
||||||
|
<td>{{ certInfo.valid }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="my-3">
|
||||||
|
<td class="px-3">
|
||||||
|
Valid To:
|
||||||
|
</td>
|
||||||
|
<td><Datetime :value="certInfo.validTo" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="my-3">
|
||||||
|
<td class="px-3">
|
||||||
|
Days Remaining:
|
||||||
|
</td>
|
||||||
|
<td>{{ certInfo.daysRemaining }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="my-3">
|
||||||
|
<td class="px-3">
|
||||||
|
Issuer:
|
||||||
|
</td>
|
||||||
|
<td>{{ certInfo.issuer }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="my-3">
|
||||||
|
<td class="px-3">
|
||||||
|
Fingerprint:
|
||||||
|
</td>
|
||||||
|
<td>{{ certInfo.fingerprint }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<div v-if="showPingChartBox" class="shadow-box big-padding text-center ping-chart-wrapper">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<PingChart :monitor-id="monitor.id" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="shadow-box">
|
||||||
|
<table class="table table-borderless table-hover">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Status</th>
|
||||||
|
<th>DateTime</th>
|
||||||
|
<th>Message</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="my-3">
|
<tr v-for="(beat, index) in displayedRecords" :key="index">
|
||||||
<td class="px-3">
|
<td><Status :status="beat.status" /></td>
|
||||||
Valid:
|
<td><Datetime :value="beat.time" /></td>
|
||||||
</td>
|
<td>{{ beat.msg }}</td>
|
||||||
<td>{{ certInfo.valid }}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="my-3">
|
|
||||||
<td class="px-3">
|
<tr v-if="importantHeartBeatList.length === 0">
|
||||||
Valid To:
|
<td colspan="3">
|
||||||
|
No important events
|
||||||
</td>
|
</td>
|
||||||
<td><Datetime :value="certInfo.validTo" /></td>
|
|
||||||
</tr>
|
|
||||||
<tr class="my-3">
|
|
||||||
<td class="px-3">
|
|
||||||
Days Remaining:
|
|
||||||
</td>
|
|
||||||
<td>{{ certInfo.daysRemaining }}</td>
|
|
||||||
</tr>
|
|
||||||
<tr class="my-3">
|
|
||||||
<td class="px-3">
|
|
||||||
Issuer:
|
|
||||||
</td>
|
|
||||||
<td>{{ certInfo.issuer }}</td>
|
|
||||||
</tr>
|
|
||||||
<tr class="my-3">
|
|
||||||
<td class="px-3">
|
|
||||||
Fingerprint:
|
|
||||||
</td>
|
|
||||||
<td>{{ certInfo.fingerprint }}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<div class="d-flex justify-content-center kuma_pagination">
|
||||||
|
<pagination
|
||||||
|
v-model="page"
|
||||||
|
:records="importantHeartBeatList.length"
|
||||||
|
:per-page="perPage"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<Confirm ref="confirmPause" @yes="pauseMonitor">
|
||||||
|
Are you sure want to pause?
|
||||||
|
</Confirm>
|
||||||
|
|
||||||
|
<Confirm ref="confirmDelete" btn-style="btn-danger" @yes="deleteMonitor">
|
||||||
|
Are you sure want to delete this monitor?
|
||||||
|
</Confirm>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</transition>
|
||||||
|
|
||||||
<div class="shadow-box">
|
|
||||||
<table class="table table-borderless table-hover">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Status</th>
|
|
||||||
<th>DateTime</th>
|
|
||||||
<th>Message</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr v-for="(beat, index) in displayedRecords" :key="index">
|
|
||||||
<td><Status :status="beat.status" /></td>
|
|
||||||
<td><Datetime :value="beat.time" /></td>
|
|
||||||
<td>{{ beat.msg }}</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr v-if="importantHeartBeatList.length === 0">
|
|
||||||
<td colspan="3">
|
|
||||||
No important events
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center kuma_pagination">
|
|
||||||
<pagination
|
|
||||||
v-model="page"
|
|
||||||
:records="importantHeartBeatList.length"
|
|
||||||
:per-page="perPage"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Confirm ref="confirmPause" @yes="pauseMonitor">
|
|
||||||
Are you sure want to pause?
|
|
||||||
</Confirm>
|
|
||||||
|
|
||||||
<Confirm ref="confirmDelete" btn-style="btn-danger" @yes="deleteMonitor">
|
|
||||||
Are you sure want to delete this monitor?
|
|
||||||
</Confirm>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -1,150 +1,154 @@
|
||||||
<template>
|
<template>
|
||||||
<h1 class="mb-3">{{ pageName }}</h1>
|
<transition name="slide-fade" appear>
|
||||||
<form @submit.prevent="submit">
|
<div>
|
||||||
<div class="shadow-box">
|
<h1 class="mb-3">{{ pageName }}</h1>
|
||||||
<div class="row">
|
<form @submit.prevent="submit">
|
||||||
<div class="col-md-6">
|
<div class="shadow-box">
|
||||||
<h2 class="mb-2">General</h2>
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h2 class="mb-2">General</h2>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="type" class="form-label">Monitor Type</label>
|
<label for="type" class="form-label">Monitor Type</label>
|
||||||
<select id="type" v-model="monitor.type" class="form-select" aria-label="Default select example">
|
<select id="type" v-model="monitor.type" class="form-select" aria-label="Default select example">
|
||||||
<option value="http">
|
<option value="http">
|
||||||
HTTP(s)
|
HTTP(s)
|
||||||
</option>
|
</option>
|
||||||
<option value="port">
|
<option value="port">
|
||||||
TCP Port
|
TCP Port
|
||||||
</option>
|
</option>
|
||||||
<option value="ping">
|
<option value="ping">
|
||||||
Ping
|
Ping
|
||||||
</option>
|
</option>
|
||||||
<option value="keyword">
|
<option value="keyword">
|
||||||
HTTP(s) - Keyword
|
HTTP(s) - Keyword
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="name" class="form-label">Friendly Name</label>
|
<label for="name" class="form-label">Friendly Name</label>
|
||||||
<input id="name" v-model="monitor.name" type="text" class="form-control" required>
|
<input id="name" v-model="monitor.name" type="text" class="form-control" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
||||||
<label for="url" class="form-label">URL</label>
|
<label for="url" class="form-label">URL</label>
|
||||||
<input id="url" v-model="monitor.url" type="url" class="form-control" pattern="https?://.+" required>
|
<input id="url" v-model="monitor.url" type="url" class="form-control" pattern="https?://.+" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="monitor.type === 'keyword' " class="my-3">
|
<div v-if="monitor.type === 'keyword' " class="my-3">
|
||||||
<label for="keyword" class="form-label">Keyword</label>
|
<label for="keyword" class="form-label">Keyword</label>
|
||||||
<input id="keyword" v-model="monitor.keyword" type="text" class="form-control" required>
|
<input id="keyword" v-model="monitor.keyword" type="text" class="form-control" required>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
Search keyword in plain html or JSON response and it is case-sensitive
|
Search keyword in plain html or JSON response and it is case-sensitive
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="monitor.type === 'port' || monitor.type === 'ping' " class="my-3">
|
||||||
|
<label for="hostname" class="form-label">Hostname</label>
|
||||||
|
<input id="hostname" v-model="monitor.hostname" type="text" class="form-control" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="monitor.type === 'port' " class="my-3">
|
||||||
|
<label for="port" class="form-label">Port</label>
|
||||||
|
<input id="port" v-model="monitor.port" type="number" class="form-control" required min="0" max="65535" step="1">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="my-3">
|
||||||
|
<label for="interval" class="form-label">Heartbeat Interval (Every {{ monitor.interval }} seconds)</label>
|
||||||
|
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required min="20" step="1">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="my-3">
|
||||||
|
<label for="maxRetries" class="form-label">Retries</label>
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<h2 class="mt-5 mb-2">Advanced</h2>
|
||||||
|
|
||||||
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3 form-check">
|
||||||
|
<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">
|
||||||
|
<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 v-if="monitor.type === 'http' || monitor.type === 'keyword' " 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 v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
||||||
|
<label for="acceptedStatusCodes" class="form-label">Accepted Status Codes</label>
|
||||||
|
|
||||||
|
<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"
|
||||||
|
:max-height="600"
|
||||||
|
:taggable="true"
|
||||||
|
></VueMultiselect>
|
||||||
|
|
||||||
|
<div class="form-text">
|
||||||
|
Select status codes which are considered as a successful response.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-5 mb-1">
|
||||||
|
<button class="btn btn-primary" type="submit" :disabled="processing">Save</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="monitor.type === 'port' || monitor.type === 'ping' " class="my-3">
|
<div class="col-md-6">
|
||||||
<label for="hostname" class="form-label">Hostname</label>
|
<div v-if="$root.isMobile" class="mt-3" />
|
||||||
<input id="hostname" v-model="monitor.hostname" type="text" class="form-control" required>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="monitor.type === 'port' " class="my-3">
|
<h2 class="mb-2">Notifications</h2>
|
||||||
<label for="port" class="form-label">Port</label>
|
<p v-if="$root.notificationList.length === 0">
|
||||||
<input id="port" v-model="monitor.port" type="number" class="form-control" required min="0" max="65535" step="1">
|
Not available, please setup.
|
||||||
</div>
|
</p>
|
||||||
|
|
||||||
<div class="my-3">
|
<div v-for="notification in $root.notificationList" :key="notification.id" class="form-check form-switch my-3">
|
||||||
<label for="interval" class="form-label">Heartbeat Interval (Every {{ monitor.interval }} seconds)</label>
|
<input :id=" 'notification' + notification.id" v-model="monitor.notificationIDList[notification.id]" class="form-check-input" type="checkbox">
|
||||||
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required min="20" step="1">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="my-3">
|
<label class="form-check-label" :for=" 'notification' + notification.id">
|
||||||
<label for="maxRetries" class="form-label">Retries</label>
|
{{ notification.name }}
|
||||||
<input id="maxRetries" v-model="monitor.maxretries" type="number" class="form-control" required min="0" step="1">
|
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
|
||||||
<div class="form-text">
|
</label>
|
||||||
Maximum retries before the service is marked as down and a notification is sent
|
</div>
|
||||||
|
|
||||||
|
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
||||||
|
Setup Notification
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 class="mt-5 mb-2">Advanced</h2>
|
|
||||||
|
|
||||||
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3 form-check">
|
|
||||||
<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">
|
|
||||||
<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 v-if="monitor.type === 'http' || monitor.type === 'keyword' " 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 v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
|
||||||
<label for="acceptedStatusCodes" class="form-label">Accepted Status Codes</label>
|
|
||||||
|
|
||||||
<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"
|
|
||||||
:max-height="600"
|
|
||||||
:taggable="true"
|
|
||||||
></VueMultiselect>
|
|
||||||
|
|
||||||
<div class="form-text">
|
|
||||||
Select status codes which are considered as a successful response.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mt-5 mb-1">
|
|
||||||
<button class="btn btn-primary" type="submit" :disabled="processing">Save</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
<div class="col-md-6">
|
<NotificationDialog ref="notificationDialog" />
|
||||||
<div v-if="$root.isMobile" class="mt-3" />
|
|
||||||
|
|
||||||
<h2 class="mb-2">Notifications</h2>
|
|
||||||
<p v-if="$root.notificationList.length === 0">
|
|
||||||
Not available, please setup.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div v-for="notification in $root.notificationList" :key="notification.id" class="form-check form-switch my-3">
|
|
||||||
<input :id=" 'notification' + notification.id" v-model="monitor.notificationIDList[notification.id]" class="form-check-input" type="checkbox">
|
|
||||||
|
|
||||||
<label class="form-check-label" :for=" 'notification' + notification.id">
|
|
||||||
{{ notification.name }}
|
|
||||||
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
|
||||||
Setup Notification
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</transition>
|
||||||
|
|
||||||
<NotificationDialog ref="notificationDialog" />
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -181,7 +185,7 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
"$route.fullPath" () {
|
"$route.fullPath"() {
|
||||||
this.init();
|
this.init();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,155 +1,159 @@
|
||||||
<template>
|
<template>
|
||||||
<h1 class="mb-3">
|
<transition name="slide-fade" appear>
|
||||||
Settings
|
<div>
|
||||||
</h1>
|
<h1 v-show="show" class="mb-3">
|
||||||
|
Settings
|
||||||
|
</h1>
|
||||||
|
|
||||||
<div class="shadow-box">
|
<div class="shadow-box">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h2 class="mb-2">General</h2>
|
<h2 class="mb-2">General</h2>
|
||||||
|
|
||||||
<form class="mb-3" @submit.prevent="saveGeneral">
|
<form class="mb-3" @submit.prevent="saveGeneral">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="timezone" class="form-label">Theme</label>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
|
||||||
<input id="btncheck1" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="light">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck1">Light</label>
|
|
||||||
|
|
||||||
<input id="btncheck2" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="dark">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck2">Dark</label>
|
|
||||||
|
|
||||||
<input id="btncheck3" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="auto">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck3">Auto</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mb-3">
|
|
||||||
<label class="form-label">Theme - Heartbeat Bar</label>
|
|
||||||
<div>
|
|
||||||
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
|
||||||
<input id="btncheck4" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="normal">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck4">Normal</label>
|
|
||||||
|
|
||||||
<input id="btncheck5" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="bottom">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck5">Bottom</label>
|
|
||||||
|
|
||||||
<input id="btncheck6" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="none">
|
|
||||||
<label class="btn btn-outline-primary" for="btncheck6">None</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="timezone" class="form-label">Timezone</label>
|
|
||||||
<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>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mb-3">
|
|
||||||
<label class="form-label">Search Engine Visibility</label>
|
|
||||||
|
|
||||||
<div class="form-check">
|
|
||||||
<input id="searchEngineIndexYes" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="true" required>
|
|
||||||
<label class="form-check-label" for="searchEngineIndexYes">
|
|
||||||
Allow indexing
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<div class="form-check">
|
|
||||||
<input id="searchEngineIndexNo" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="false" required>
|
|
||||||
<label class="form-check-label" for="searchEngineIndexNo">
|
|
||||||
Discourage search engines from indexing site
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<button class="btn btn-primary" type="submit">
|
|
||||||
Save
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<template v-if="loaded">
|
|
||||||
<template v-if="! settings.disableAuth">
|
|
||||||
<h2 class="mt-5 mb-2">Change Password</h2>
|
|
||||||
<form class="mb-3" @submit.prevent="savePassword">
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="current-password" class="form-label">Current Password</label>
|
<label for="timezone" class="form-label">Theme</label>
|
||||||
<input id="current-password" v-model="password.currentPassword" type="password" class="form-control" required>
|
|
||||||
|
<div>
|
||||||
|
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
||||||
|
<input id="btncheck1" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="light">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck1">Light</label>
|
||||||
|
|
||||||
|
<input id="btncheck2" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="dark">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck2">Dark</label>
|
||||||
|
|
||||||
|
<input id="btncheck3" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="auto">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck3">Auto</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="new-password" class="form-label">New Password</label>
|
<label class="form-label">Theme - Heartbeat Bar</label>
|
||||||
<input id="new-password" v-model="password.newPassword" type="password" class="form-control" required>
|
<div>
|
||||||
|
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
||||||
|
<input id="btncheck4" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="normal">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck4">Normal</label>
|
||||||
|
|
||||||
|
<input id="btncheck5" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="bottom">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck5">Bottom</label>
|
||||||
|
|
||||||
|
<input id="btncheck6" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="none">
|
||||||
|
<label class="btn btn-outline-primary" for="btncheck6">None</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="repeat-new-password" class="form-label">Repeat New Password</label>
|
<label for="timezone" class="form-label">Timezone</label>
|
||||||
<input id="repeat-new-password" v-model="password.repeatNewPassword" type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" required>
|
<select id="timezone" v-model="$root.userTimezone" class="form-select">
|
||||||
<div class="invalid-feedback">
|
<option value="auto">
|
||||||
The repeat password does not match.
|
Auto: {{ guessTimezone }}
|
||||||
|
</option>
|
||||||
|
<option v-for="(timezone, index) in timezoneList" :key="index" :value="timezone.value">
|
||||||
|
{{ timezone.name }}
|
||||||
|
</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label class="form-label">Search Engine Visibility</label>
|
||||||
|
|
||||||
|
<div class="form-check">
|
||||||
|
<input id="searchEngineIndexYes" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="true" required>
|
||||||
|
<label class="form-check-label" for="searchEngineIndexYes">
|
||||||
|
Allow indexing
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input id="searchEngineIndexNo" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="false" required>
|
||||||
|
<label class="form-check-label" for="searchEngineIndexNo">
|
||||||
|
Discourage search engines from indexing site
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<button class="btn btn-primary" type="submit">
|
<button class="btn btn-primary" type="submit">
|
||||||
Update Password
|
Save
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</template>
|
|
||||||
|
|
||||||
<h2 class="mt-5 mb-2">Advanced</h2>
|
<template v-if="loaded">
|
||||||
|
<template v-if="! settings.disableAuth">
|
||||||
|
<h2 class="mt-5 mb-2">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 id="current-password" v-model="password.currentPassword" type="password" class="form-control" required>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<button v-if="settings.disableAuth" class="btn btn-outline-primary me-1" @click="enableAuth">Enable Auth</button>
|
<label for="new-password" class="form-label">New Password</label>
|
||||||
<button v-if="! settings.disableAuth" class="btn btn-primary me-1" @click="confirmDisableAuth">Disable Auth</button>
|
<input id="new-password" v-model="password.newPassword" type="password" class="form-control" required>
|
||||||
<button v-if="! settings.disableAuth" class="btn btn-danger me-1" @click="$root.logout">Logout</button>
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="repeat-new-password" class="form-label">Repeat New Password</label>
|
||||||
|
<input id="repeat-new-password" v-model="password.repeatNewPassword" type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" required>
|
||||||
|
<div class="invalid-feedback">
|
||||||
|
The repeat password does not match.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<button class="btn btn-primary" type="submit">
|
||||||
|
Update Password
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<h2 class="mt-5 mb-2">Advanced</h2>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<button v-if="settings.disableAuth" class="btn btn-outline-primary me-1" @click="enableAuth">Enable Auth</button>
|
||||||
|
<button v-if="! settings.disableAuth" class="btn btn-primary me-1" @click="confirmDisableAuth">Disable Auth</button>
|
||||||
|
<button v-if="! settings.disableAuth" class="btn btn-danger me-1" @click="$root.logout">Logout</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
|
||||||
|
<div class="notification-list col-md-6">
|
||||||
|
<div v-if="$root.isMobile" class="mt-3" />
|
||||||
|
|
||||||
|
<h2>Notifications</h2>
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
||||||
|
Setup Notification
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="notification-list col-md-6">
|
<NotificationDialog ref="notificationDialog" />
|
||||||
<div v-if="$root.isMobile" class="mt-3" />
|
|
||||||
|
|
||||||
<h2>Notifications</h2>
|
<Confirm ref="confirmDisableAuth" btn-style="btn-danger" yes-text="I understand, please disable" no-text="Leave" @yes="disableAuth">
|
||||||
<p v-if="$root.notificationList.length === 0">
|
<p>Are you sure want to <strong>disable auth</strong>?</p>
|
||||||
Not available, please setup.
|
<p>It is for <strong>someone who have 3rd-party auth</strong> in front of Uptime Kuma such as Cloudflare Access.</p>
|
||||||
</p>
|
<p>Please use it carefully.</p>
|
||||||
<p v-else>
|
</Confirm>
|
||||||
Please assign a notification to monitor(s) to get it to work.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
|
||||||
Setup Notification
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</transition>
|
||||||
|
|
||||||
<NotificationDialog ref="notificationDialog" />
|
|
||||||
|
|
||||||
<Confirm ref="confirmDisableAuth" btn-style="btn-danger" yes-text="I understand, please disable" no-text="Leave" @yes="disableAuth">
|
|
||||||
<p>Are you sure want to <strong>disable auth</strong>?</p>
|
|
||||||
<p>It is for <strong>someone who have 3rd-party auth</strong> in front of Uptime Kuma such as Cloudflare Access.</p>
|
|
||||||
<p>Please use it carefully.</p>
|
|
||||||
</Confirm>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -174,7 +178,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
timezoneList: timezoneList(),
|
timezoneList: timezoneList(),
|
||||||
guessTimezone: dayjs.tz.guess(),
|
guessTimezone: dayjs.tz.guess(),
|
||||||
|
show: true,
|
||||||
invalidPassword: false,
|
invalidPassword: false,
|
||||||
password: {
|
password: {
|
||||||
currentPassword: "",
|
currentPassword: "",
|
||||||
|
|
Loading…
Reference in a new issue