uptime-kuma/src/layouts/Layout.vue

327 lines
9.7 KiB
Vue
Raw Normal View History

2021-06-25 09:55:49 -04:00
<template>
2021-08-10 03:02:46 -04:00
<div :class="classes">
<div v-if="! $root.socket.connected && ! $root.socket.firstConnect" class="lost-connection">
<div class="container-fluid">
{{ $root.connectionErrorMsg }}
<div v-if="$root.showReverseProxyGuide">
2022-04-29 08:17:15 -04:00
{{ $t("Using a Reverse Proxy?") }} <a href="https://github.com/louislam/uptime-kuma/wiki/Reverse-Proxy" target="_blank">{{ $t("Check how to config it for WebSocket") }}</a>
</div>
</div>
2021-06-25 09:55:49 -04:00
</div>
<!-- Desktop header -->
<header v-if="! $root.isMobile" class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom">
<router-link to="/dashboard" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
2021-08-24 11:38:25 -04:00
<object class="bi me-2 ms-4" width="40" height="40" data="/icon.svg" />
2021-09-26 11:19:39 -04:00
<span class="fs-4 title">{{ $t("Uptime Kuma") }}</span>
</router-link>
2021-08-21 07:50:22 -04:00
<a v-if="hasNewVersion" target="_blank" href="https://github.com/louislam/uptime-kuma/releases" class="btn btn-info me-3">
2021-08-24 04:44:58 -04:00
<font-awesome-icon icon="arrow-alt-circle-up" /> {{ $t("New Update") }}
2021-08-21 07:50:22 -04:00
</a>
<ul class="nav nav-pills">
<li v-if="$root.loggedIn" class="nav-item me-2">
2022-03-10 08:34:30 -05:00
<router-link to="/manage-status-page" class="nav-link">
<font-awesome-icon icon="stream" /> {{ $t("Status Pages") }}
</router-link>
2021-09-11 07:40:03 -04:00
</li>
<li v-if="$root.loggedIn" class="nav-item me-2">
<router-link to="/dashboard" class="nav-link">
2021-08-24 04:44:58 -04:00
<font-awesome-icon icon="tachometer-alt" /> {{ $t("Dashboard") }}
</router-link>
</li>
<li v-if="$root.loggedIn" class="nav-item">
2022-04-18 12:39:49 -04:00
<div class="dropdown dropdown-profile-pic">
2022-05-06 02:52:09 -04:00
<div class="nav-link" data-bs-toggle="dropdown">
2022-04-19 07:40:28 -04:00
<div class="profile-pic">{{ $root.usernameFirstChar }}</div>
2022-04-18 12:39:49 -04:00
<font-awesome-icon icon="angle-down" />
</div>
2022-09-17 10:00:11 -04:00
<!-- Header's Dropdown Menu -->
2022-04-18 12:39:49 -04:00
<ul class="dropdown-menu">
2022-09-17 10:00:11 -04:00
<!-- Username -->
<li>
2022-04-20 03:09:31 -04:00
<i18n-t v-if="$root.username != null" tag="span" keypath="signedInDisp" class="dropdown-item-text">
<strong>{{ $root.username }}</strong>
</i18n-t>
<span v-if="$root.username == null" class="dropdown-item-text">{{ $t("signedInDispDisabled") }}</span>
</li>
2022-09-17 10:00:11 -04:00
2022-04-18 12:39:49 -04:00
<li><hr class="dropdown-divider"></li>
2022-09-17 10:00:11 -04:00
<!-- Functions -->
<li>
<router-link to="/maintenance" class="dropdown-item" :class="{ active: $route.path.includes('manage-maintenance') }">
<font-awesome-icon icon="wrench" /> {{ $t("Maintenance") }}
</router-link>
</li>
2022-04-18 12:39:49 -04:00
<li>
2022-10-10 13:45:30 -04:00
<router-link to="/settings/general" class="dropdown-item" :class="{ active: $route.path.includes('settings') }">
2022-04-18 12:39:49 -04:00
<font-awesome-icon icon="cog" /> {{ $t("Settings") }}
</router-link>
</li>
2022-09-17 10:00:11 -04:00
2023-01-15 23:39:24 -05:00
<li>
<a href="https://github.com/louislam/uptime-kuma/wiki" class="dropdown-item" target="_blank">
<font-awesome-icon icon="info-circle" /> {{ $t("Help") }}
</a>
</li>
<li v-if="$root.loggedIn && $root.socket.token !== 'autoLogin'">
2022-04-18 12:39:49 -04:00
<button class="dropdown-item" @click="$root.logout">
<font-awesome-icon icon="sign-out-alt" />
{{ $t("Logout") }}
</button>
</li>
</ul>
</div>
</li>
</ul>
</header>
<!-- Mobile header -->
<header v-else class="d-flex flex-wrap justify-content-center pt-2 pb-2 mb-3">
<router-link to="/dashboard" class="d-flex align-items-center text-dark text-decoration-none">
<object class="bi" width="40" height="40" data="/icon.svg" />
<span class="fs-4 title ms-2">Uptime Kuma</span>
</router-link>
</header>
<main>
<router-view v-if="$root.loggedIn" />
<Login v-if="! $root.loggedIn && $root.allowLoginDialog" />
</main>
<!-- Mobile Only -->
2021-08-24 11:38:25 -04:00
<div v-if="$root.isMobile" style="width: 100%; height: 60px;" />
2022-09-17 10:00:11 -04:00
<nav v-if="$root.isMobile && $root.loggedIn" class="bottom-nav">
2021-08-19 06:12:52 -04:00
<router-link to="/dashboard" class="nav-link">
<div><font-awesome-icon icon="tachometer-alt" /></div>
{{ $t("Home") }}
</router-link>
2021-08-19 06:12:52 -04:00
<router-link to="/list" class="nav-link">
<div><font-awesome-icon icon="list" /></div>
{{ $t("List") }}
2021-08-19 06:12:52 -04:00
</router-link>
2021-08-19 06:12:52 -04:00
<router-link to="/add" class="nav-link">
<div><font-awesome-icon icon="plus" /></div>
2022-10-11 10:28:00 -04:00
{{ $t("Add") }}
</router-link>
2021-08-19 06:12:52 -04:00
<router-link to="/settings" class="nav-link">
<div><font-awesome-icon icon="cog" /></div>
2021-08-24 04:44:58 -04:00
{{ $t("Settings") }}
</router-link>
</nav>
</div>
2021-06-25 09:55:49 -04:00
</template>
<script>
import Login from "../components/Login.vue";
2021-08-21 07:50:22 -04:00
import compareVersions from "compare-versions";
2021-06-25 09:55:49 -04:00
export default {
2021-08-10 03:02:46 -04:00
2021-06-25 09:55:49 -04:00
components: {
2021-07-27 13:47:13 -04:00
Login,
2021-07-11 03:23:28 -04:00
},
2021-08-10 03:02:46 -04:00
2021-07-11 03:23:28 -04:00
data() {
return {};
2021-06-25 09:55:49 -04:00
},
2021-08-10 03:02:46 -04:00
computed: {
// Theme or Mobile
classes() {
const classes = {};
classes[this.$root.theme] = true;
classes["mobile"] = this.$root.isMobile;
return classes;
2021-08-21 07:50:22 -04:00
},
hasNewVersion() {
if (this.$root.info.latestVersion && this.$root.info.version) {
return compareVersions(this.$root.info.latestVersion, this.$root.info.version) >= 1;
} else {
return false;
}
},
2021-08-10 03:02:46 -04:00
},
2021-06-25 09:55:49 -04:00
watch: {
2021-09-23 01:57:24 -04:00
2021-07-27 13:47:13 -04:00
},
2021-08-10 03:02:46 -04:00
2021-07-27 13:47:13 -04:00
mounted() {
2021-09-23 01:57:24 -04:00
2021-06-25 09:55:49 -04:00
},
2021-08-10 03:02:46 -04:00
2021-06-25 09:55:49 -04:00
methods: {
2021-09-15 08:40:26 -04:00
2021-07-27 13:47:13 -04:00
},
2021-08-10 03:02:46 -04:00
};
2021-06-25 09:55:49 -04:00
</script>
<style lang="scss" scoped>
2021-07-11 03:23:28 -04:00
@import "../assets/vars.scss";
2021-06-25 09:55:49 -04:00
2021-09-11 07:40:03 -04:00
.nav-link {
&.status-page {
background-color: rgba(255, 255, 255, 0.1);
}
}
2021-07-11 03:23:28 -04:00
.bottom-nav {
z-index: 1000;
position: fixed;
bottom: 0;
height: 60px;
width: 100%;
left: 0;
2021-07-13 00:16:11 -04:00
background-color: #fff;
2021-07-11 03:23:28 -04:00
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;
white-space: nowrap;
2021-07-27 04:52:44 -04:00
padding: 0 10px;
2021-06-25 09:55:49 -04:00
2021-07-11 03:23:28 -04:00
a {
text-align: center;
width: 25%;
display: inline-block;
height: 100%;
padding: 8px 10px 0;
font-size: 13px;
color: #c1c1c1;
overflow: hidden;
text-decoration: none;
2021-06-30 09:04:58 -04:00
&.router-link-exact-active, &.active {
2021-07-11 03:23:28 -04:00
color: $primary;
font-weight: bold;
}
div {
font-size: 20px;
}
2021-06-30 09:04:58 -04:00
}
2021-07-11 03:23:28 -04:00
}
2021-08-08 13:58:56 -04:00
main {
2021-08-24 11:38:25 -04:00
min-height: calc(100vh - 160px);
2021-08-08 13:58:56 -04:00
}
2021-07-11 03:23:28 -04:00
.title {
font-weight: bold;
}
.nav {
margin-right: 25px;
}
.lost-connection {
padding: 5px;
background-color: crimson;
color: white;
position: fixed;
width: 100%;
2022-03-31 04:15:34 -04:00
z-index: 99999;
2021-07-11 03:23:28 -04:00
}
2022-04-18 12:39:49 -04:00
// Profile Pic Button with Dropdown
.dropdown-profile-pic {
user-select: none;
.nav-link {
cursor: pointer;
display: flex;
gap: 6px;
align-items: center;
background-color: rgba(200, 200, 200, 0.2);
padding: 0.5rem 0.8rem;
&:hover {
background-color: rgba(255, 255, 255, 0.2);
}
}
.dropdown-menu {
transition: all 0.2s;
padding-left: 0;
padding-bottom: 0;
2022-04-19 07:46:21 -04:00
margin-top: 8px !important;
border-radius: 16px;
overflow: hidden;
2022-04-18 12:39:49 -04:00
.dropdown-divider {
margin: 0;
border-top: 1px solid rgba(0, 0, 0, 0.4);
background-color: transparent;
}
.dropdown-item-text {
font-size: 14px;
padding-bottom: 0.7rem;
}
.dropdown-item {
padding: 0.7rem 1rem;
}
.dark & {
background-color: $dark-bg;
color: $dark-font-color;
border-color: $dark-border-color;
.dropdown-item {
color: $dark-font-color;
&.active {
color: $dark-font-color2;
background-color: $highlight !important;
}
&:hover {
background-color: $dark-bg2;
}
}
}
}
.profile-pic {
display: flex;
align-items: center;
justify-content: center;
color: white;
background-color: $primary;
width: 24px;
height: 24px;
margin-right: 5px;
border-radius: 50rem;
font-weight: bold;
font-size: 10px;
}
2021-07-11 03:23:28 -04:00
}
.dark {
header {
2021-10-20 06:54:20 -04:00
background-color: $dark-header-bg;
border-bottom-color: $dark-header-bg !important;
span {
2021-08-24 11:38:25 -04:00
color: #f0f6fc;
}
}
.bottom-nav {
background-color: $dark-bg;
}
}
2021-06-25 09:55:49 -04:00
</style>