|
@ -1,28 +1,35 @@ |
|
|
<template> |
|
|
<template> |
|
|
|
|
|
<div class="lost-connection" v-if="!$root.socket.connected && !$root.socket.firstConnect"> |
|
|
<div class="lost-connection" v-if="! $root.socket.connected && ! $root.socket.firstConnect"> |
|
|
<div class="container-fluid">Lost connection to the socket server. Reconnecting...</div> |
|
|
<div class="container-fluid"> |
|
|
|
|
|
Lost connection to the socket server. Reconnecting... |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- Desktop header --> |
|
|
<!-- Desktop header --> |
|
|
<header class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom" v-if="! $root.isMobile"> |
|
|
<header |
|
|
<router-link to="/dashboard" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none"> |
|
|
class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom" |
|
|
<object class="bi me-2 ms-4" width="40" height="40" data="/icon.svg"></object> |
|
|
v-if="!$root.isMobile" |
|
|
|
|
|
> |
|
|
|
|
|
<router-link |
|
|
|
|
|
to="/dashboard" |
|
|
|
|
|
class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-decoration-none" |
|
|
|
|
|
> |
|
|
|
|
|
<img class="bi me-2 ms-4" width="40" height="40" src="/icon.svg" /> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
<span class="fs-4 title">Uptime Kuma</span> |
|
|
</router-link> |
|
|
</router-link> |
|
|
|
|
|
|
|
|
<ul class="nav nav-pills" > |
|
|
<ul class="nav nav-pills"> |
|
|
<li class="nav-item"><router-link to="/dashboard" class="nav-link">📊 Dashboard</router-link></li> |
|
|
<li class="nav-item"> |
|
|
<li class="nav-item"><router-link to="/settings" class="nav-link">🔧 Settings</router-link></li> |
|
|
<router-link to="/dashboard" class="nav-link">📊 Dashboard</router-link> |
|
|
|
|
|
</li> |
|
|
|
|
|
<li class="nav-item"> |
|
|
|
|
|
<router-link to="/settings" class="nav-link">🔧 Settings</router-link> |
|
|
|
|
|
</li> |
|
|
</ul> |
|
|
</ul> |
|
|
</header> |
|
|
</header> |
|
|
|
|
|
|
|
|
<!-- Mobile header --> |
|
|
<!-- Mobile header --> |
|
|
<header class="d-flex flex-wrap justify-content-center mt-3 mb-3" v-else> |
|
|
<header class="d-flex flex-wrap justify-content-center mt-3 mb-3" v-else> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center text-dark text-decoration-none"> |
|
|
<router-link to="/dashboard" class="d-flex align-items-center text-decoration-none"> |
|
|
<object class="bi" width="40" height="40" data="/icon.svg"></object> |
|
|
<img style="height:2rem;" src="/icon.svg" /> |
|
|
<span class="fs-4 title ms-2">Uptime Kuma</span> |
|
|
<span class="fs-4 title ms-2">Uptime Kuma</span> |
|
|
</router-link> |
|
|
</router-link> |
|
|
</header> |
|
|
</header> |
|
@ -30,24 +37,39 @@ |
|
|
<main> |
|
|
<main> |
|
|
<!-- Add :key to disable vue router re-use the same component --> |
|
|
<!-- Add :key to disable vue router re-use the same component --> |
|
|
<router-view v-if="$root.loggedIn" :key="$route.fullPath" /> |
|
|
<router-view v-if="$root.loggedIn" :key="$route.fullPath" /> |
|
|
<Login v-if="! $root.loggedIn && $root.allowLoginDialog" /> |
|
|
<Login v-if="!$root.loggedIn && $root.allowLoginDialog" /> |
|
|
</main> |
|
|
</main> |
|
|
|
|
|
|
|
|
<footer> |
|
|
<footer> |
|
|
<div class="container-fluid"> |
|
|
<div class="container-fluid"> |
|
|
Uptime Kuma - |
|
|
Uptime Kuma - |
|
|
Version: {{ $root.info.version }} - |
|
|
Version: {{ $root.info.version }} - |
|
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank">Check Update On GitHub</a> |
|
|
<a |
|
|
|
|
|
href="https://github.com/louislam/uptime-kuma/releases" |
|
|
|
|
|
target="_blank" |
|
|
|
|
|
>Check Update On GitHub</a> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
</footer> |
|
|
|
|
|
|
|
|
<!-- Mobile Only --> |
|
|
<!-- Mobile Only --> |
|
|
<div style="width: 100%;height: 60px;" v-if="$root.isMobile"></div> |
|
|
<div style="width: 100%;height: 60px;" v-if="$root.isMobile"></div> |
|
|
<nav class="bottom-nav" v-if="$root.isMobile"> |
|
|
<nav class="bottom-nav" v-if="$root.isMobile"> |
|
|
<router-link to="/dashboard" class="nav-link" @click="$root.cancelActiveList"><div>📊</div>Dashboard</router-link> |
|
|
<router-link to="/dashboard" class="nav-link" @click="$root.cancelActiveList"> |
|
|
<a href="#" :class=" { 'router-link-exact-active' : $root.showListMobile } " @click="$root.showListMobile = ! $root.showListMobile"><div>📃</div>List</a> |
|
|
<div>📊</div>Dashboard |
|
|
<router-link to="/add" class="nav-link" @click="$root.cancelActiveList"><div>➕</div>Add</router-link> |
|
|
</router-link> |
|
|
<router-link to="/settings" class="nav-link" @click="$root.cancelActiveList"><div>🔧</div>Settings</router-link> |
|
|
<a |
|
|
|
|
|
href="#" |
|
|
|
|
|
:class="{ 'router-link-exact-active': $root.showListMobile }" |
|
|
|
|
|
@click="$root.showListMobile = !$root.showListMobile" |
|
|
|
|
|
> |
|
|
|
|
|
<div>📃</div>List |
|
|
|
|
|
</a> |
|
|
|
|
|
<router-link to="/add" class="nav-link" @click="$root.cancelActiveList"> |
|
|
|
|
|
<div>➕</div>Add |
|
|
|
|
|
</router-link> |
|
|
|
|
|
<router-link to="/settings" class="nav-link" @click="$root.cancelActiveList"> |
|
|
|
|
|
<div>🔧</div>Settings |
|
|
|
|
|
</router-link> |
|
|
</nav> |
|
|
</nav> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
@ -70,7 +92,7 @@ export default { |
|
|
this.init(); |
|
|
this.init(); |
|
|
}, |
|
|
}, |
|
|
watch: { |
|
|
watch: { |
|
|
$route (to, from) { |
|
|
$route(to, from) { |
|
|
this.init(); |
|
|
this.init(); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
@ -95,8 +117,9 @@ export default { |
|
|
height: 60px; |
|
|
height: 60px; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
left: 0; |
|
|
left: 0; |
|
|
background-color: #fff; |
|
|
background-color: var(--background-navbar); |
|
|
box-shadow: 0 15px 47px 0 rgba(0, 0, 0, 0.05), 0 5px 14px 0 rgba(0, 0, 0, 0.05); |
|
|
box-shadow: 0 15px 47px 0 rgba(0, 0, 0, 0.05), |
|
|
|
|
|
0 5px 14px 0 rgba(0, 0, 0, 0.05); |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
white-space: nowrap; |
|
|
white-space: nowrap; |
|
|
padding: 0 35px; |
|
|
padding: 0 35px; |
|
@ -108,7 +131,7 @@ export default { |
|
|
height: 100%; |
|
|
height: 100%; |
|
|
padding: 8px 10px 0; |
|
|
padding: 8px 10px 0; |
|
|
font-size: 13px; |
|
|
font-size: 13px; |
|
|
color: #c1c1c1; |
|
|
color: var(--main-font-color); |
|
|
overflow: hidden; |
|
|
overflow: hidden; |
|
|
text-decoration: none; |
|
|
text-decoration: none; |
|
|
|
|
|
|
|
@ -138,14 +161,12 @@ export default { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
main { |
|
|
main { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
footer { |
|
|
footer { |
|
|
color: #AAA; |
|
|
color: #aaa; |
|
|
font-size: 13px; |
|
|
font-size: 13px; |
|
|
margin-bottom: 30px; |
|
|
margin-bottom: 30px; |
|
|
margin-left: 10px; |
|
|
margin-left: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|