6 `theme-${config.theme}`,
7 isDark ? 'is-dark' : 'is-light',
8 !config.footer ? 'no-footer' : '',
11 <DynamicTheme :themes="config.colors" />
13 <section v-if="config.header" class="first-line">
14 <div v-cloak class="container">
16 <img v-if="config.logo" :src="config.logo" alt="dashboard logo" />
17 <i v-if="config.icon" :class="config.icon"></i>
19 <div class="dashboard-title">
20 <span class="headline">{{ config.subtitle }}</span>
21 <h1>{{ config.title }}</h1>
29 @navbar-toggle="showMenu = !showMenu"
31 <DarkMode @updated="isDark = $event" />
34 @updated="vlayout = $event"
41 class="navbar-item is-inline-block-mobile"
42 @input="filterServices"
43 @search-focus="showMenu = true"
44 @search-open="navigateToFirstService"
45 @search-cancel="filterServices"
50 <section id="main-section" class="section">
51 <div v-cloak class="container">
53 v-if="config.connectivityCheck"
54 @network-status-update="offline = $event"
57 <!-- Optional messages -->
58 <Message :item="config.message" />
60 <!-- Horizontal layout -->
61 <div v-if="!vlayout || filter" class="columns is-multiline">
62 <template v-for="group in services">
63 <h2 v-if="group.name" class="column is-full group-title">
64 <i v-if="group.icon" :class="['fa-fw', group.icon]"></i>
68 v-for="(item, index) in group.items"
71 :class="['column', `is-${12 / config.columns}`]"
76 <!-- Vertical layout -->
78 v-if="!filter && vlayout"
79 class="columns is-multiline layout-vertical"
82 :class="['column', `is-${12 / config.columns}`]"
83 v-for="group in services"
86 <h2 v-if="group.name" class="group-title">
87 <i v-if="group.icon" :class="['fa-fw', group.icon]"></i>
91 v-for="(item, index) in group.items"
101 <footer class="footer">
102 <div class="container">
104 class="content has-text-centered"
106 v-html="config.footer"
114 const jsyaml = require("js-yaml");
115 const merge = require("lodash.merge");
117 import Navbar from "./components/Navbar.vue";
118 import ConnectivityChecker from "./components/ConnectivityChecker.vue";
119 import Service from "./components/Service.vue";
120 import Message from "./components/Message.vue";
121 import SearchInput from "./components/SearchInput.vue";
122 import SettingToggle from "./components/SettingToggle.vue";
123 import DarkMode from "./components/DarkMode.vue";
124 import DynamicTheme from "./components/DynamicTheme.vue";
126 import defaultConfig from "./assets/defaults.yml";
151 created: async function () {
152 const defaults = jsyaml.load(defaultConfig);
155 config = await this.getConfig();
158 config = this.handleErrors("⚠️ Error loading configuration", error);
160 this.config = merge(defaults, config);
161 this.services = this.config.services;
163 this.config.documentTitle ||
164 `${this.config.title} | ${this.config.subtitle}`;
165 if (this.config.stylesheet) {
167 for (const file of this.config.stylesheet) {
168 stylesheet += `@import "${file}";`;
170 this.createStylesheet(stylesheet);
174 getConfig: function (path = "assets/config.yml") {
175 return fetch(path).then((response) => {
176 if (response.redirected) {
177 // This allows to work with authentication proxies.
178 window.location.href = response.url;
182 throw Error(`${response.statusText}: ${response.body}`);
189 return jsyaml.load(body);
191 .then(function (config) {
192 if (config.externalConfig) {
193 return that.getConfig(config.externalConfig);
199 matchesFilter: function (item) {
201 item.name.toLowerCase().includes(this.filter) ||
202 (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) ||
203 (item.tag && item.tag.toLowerCase().includes(this.filter))
206 navigateToFirstService: function (target) {
208 const service = this.services[0].items[0];
209 window.open(service.url, target || service.target || "_self");
211 console.warning("fail to open service");
214 filterServices: function (filter) {
215 this.filter = filter;
218 this.services = this.config.services;
222 const searchResultItems = [];
223 for (const group of this.config.services) {
224 for (const item of group.items) {
225 if (this.matchesFilter(item)) {
226 searchResultItems.push(item);
234 icon: "fas fa-search",
235 items: searchResultItems,
239 handleErrors: function (title, content) {
248 createStylesheet: function (css) {
249 let style = document.createElement("style");
250 style.appendChild(document.createTextNode(css));
251 document.head.appendChild(style);