]>
Commit | Line | Data |
---|---|---|
b9c5fcf0 BW |
1 | <template> |
2 | <div | |
3 | id="app" | |
4 | v-if="config" | |
5 | :class="[ | |
6 | `theme-${config.theme}`, | |
7 | isDark ? 'is-dark' : 'is-light', | |
9814a037 | 8 | !config.footer ? 'no-footer' : '', |
b9c5fcf0 BW |
9 | ]" |
10 | > | |
11 | <DynamicTheme :themes="config.colors" /> | |
12 | <div id="bighead"> | |
13 | <section v-if="config.header" class="first-line"> | |
14 | <div v-cloak class="container"> | |
15 | <div class="logo"> | |
3bf0edcf | 16 | <img v-if="config.logo" :src="config.logo" alt="dashboard logo" /> |
239ef168 | 17 | <i v-if="config.icon" :class="config.icon"></i> |
b9c5fcf0 BW |
18 | </div> |
19 | <div class="dashboard-title"> | |
20 | <span class="headline">{{ config.subtitle }}</span> | |
21 | <h1>{{ config.title }}</h1> | |
22 | </div> | |
23 | </div> | |
24 | </section> | |
25 | ||
26 | <Navbar | |
27 | :open="showMenu" | |
28 | :links="config.links" | |
ed8b17e0 | 29 | @navbar-toggle="showMenu = !showMenu" |
b9c5fcf0 BW |
30 | > |
31 | <DarkMode @updated="isDark = $event" /> | |
32 | ||
33 | <SettingToggle | |
34 | @updated="vlayout = $event" | |
35 | name="vlayout" | |
36 | icon="fa-list" | |
37 | iconAlt="fa-columns" | |
38 | /> | |
39 | ||
40 | <SearchInput | |
41 | class="navbar-item is-inline-block-mobile" | |
42 | @input="filterServices" | |
ed8b17e0 BW |
43 | @search-focus="showMenu = true" |
44 | @search-open="navigateToFirstService" | |
45 | @search-cancel="filterServices" | |
b9c5fcf0 BW |
46 | /> |
47 | </Navbar> | |
48 | </div> | |
49 | ||
50 | <section id="main-section" class="section"> | |
51 | <div v-cloak class="container"> | |
e9113b48 BW |
52 | <ConnectivityChecker |
53 | v-if="config.connectivityCheck" | |
ed8b17e0 | 54 | @network-status-update="offline = $event" |
e9113b48 | 55 | /> |
b9c5fcf0 BW |
56 | <div v-if="!offline"> |
57 | <!-- Optional messages --> | |
58 | <Message :item="config.message" /> | |
59 | ||
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"> | |
da6e676d | 64 | <i v-if="group.icon" :class="['fa-fw', group.icon]"></i> |
b9c5fcf0 BW |
65 | {{ group.name }} |
66 | </h2> | |
67 | <Service | |
e1ecf86f | 68 | v-for="(item, index) in group.items" |
69 | :key="index" | |
b9c5fcf0 | 70 | v-bind:item="item" |
9e4fe0d2 | 71 | :class="['column', `is-${12 / config.columns}`]" |
b9c5fcf0 BW |
72 | /> |
73 | </template> | |
74 | </div> | |
75 | ||
76 | <!-- Vertical layout --> | |
77 | <div | |
78 | v-if="!filter && vlayout" | |
79 | class="columns is-multiline layout-vertical" | |
80 | > | |
81 | <div | |
9e4fe0d2 | 82 | :class="['column', `is-${12 / config.columns}`]" |
b9c5fcf0 BW |
83 | v-for="group in services" |
84 | :key="group.name" | |
85 | > | |
86 | <h2 v-if="group.name" class="group-title"> | |
da6e676d | 87 | <i v-if="group.icon" :class="['fa-fw', group.icon]"></i> |
b9c5fcf0 BW |
88 | {{ group.name }} |
89 | </h2> | |
90 | <Service | |
e1ecf86f | 91 | v-for="(item, index) in group.items" |
92 | :key="index" | |
b9c5fcf0 | 93 | v-bind:item="item" |
b9c5fcf0 BW |
94 | /> |
95 | </div> | |
96 | </div> | |
97 | </div> | |
98 | </div> | |
99 | </section> | |
100 | ||
101 | <footer class="footer"> | |
102 | <div class="container"> | |
103 | <div | |
104 | class="content has-text-centered" | |
105 | v-if="config.footer" | |
106 | v-html="config.footer" | |
107 | ></div> | |
108 | </div> | |
109 | </footer> | |
110 | </div> | |
111 | </template> | |
112 | ||
113 | <script> | |
114 | const jsyaml = require("js-yaml"); | |
115 | const merge = require("lodash.merge"); | |
116 | ||
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"; | |
125 | ||
126 | import defaultConfig from "./assets/defaults.yml"; | |
127 | ||
128 | export default { | |
129 | name: "App", | |
130 | components: { | |
131 | Navbar, | |
132 | ConnectivityChecker, | |
133 | Service, | |
134 | Message, | |
135 | SearchInput, | |
136 | SettingToggle, | |
137 | DarkMode, | |
9814a037 | 138 | DynamicTheme, |
b9c5fcf0 BW |
139 | }, |
140 | data: function () { | |
141 | return { | |
142 | config: null, | |
143 | services: null, | |
144 | offline: false, | |
145 | filter: "", | |
146 | vlayout: true, | |
147 | isDark: null, | |
9814a037 | 148 | showMenu: false, |
b9c5fcf0 BW |
149 | }; |
150 | }, | |
151 | created: async function () { | |
bd910942 | 152 | const defaults = jsyaml.load(defaultConfig); |
0ae40f78 BW |
153 | let config; |
154 | try { | |
155 | config = await this.getConfig(); | |
156 | } catch (error) { | |
157 | console.log(error); | |
158 | config = this.handleErrors("⚠️ Error loading configuration", error); | |
159 | } | |
bd910942 BW |
160 | this.config = merge(defaults, config); |
161 | this.services = this.config.services; | |
67fd101a BW |
162 | document.title = |
163 | this.config.documentTitle || | |
164 | `${this.config.title} | ${this.config.subtitle}`; | |
6777bc34 | 165 | if (this.config.stylesheet) { |
ffe3404a | 166 | let stylesheet = ""; |
8e5ee54a GC |
167 | for (const file of this.config.stylesheet) { |
168 | stylesheet += `@import "${file}";`; | |
169 | } | |
170 | this.createStylesheet(stylesheet); | |
6777bc34 | 171 | } |
b9c5fcf0 BW |
172 | }, |
173 | methods: { | |
b102c9b2 | 174 | getConfig: function (path = "assets/config.yml") { |
1a42e30a | 175 | return fetch(path).then((response) => { |
0ae40f78 BW |
176 | if (response.redirected) { |
177 | // This allows to work with authentication proxies. | |
178 | window.location.href = response.url; | |
179 | return; | |
180 | } | |
1a42e30a | 181 | if (!response.ok) { |
0ae40f78 | 182 | throw Error(`${response.statusText}: ${response.body}`); |
1a42e30a BW |
183 | } |
184 | ||
185 | const that = this; | |
186 | return response | |
187 | .text() | |
188 | .then((body) => { | |
bd910942 | 189 | return jsyaml.load(body); |
1a42e30a BW |
190 | }) |
191 | .then(function (config) { | |
192 | if (config.externalConfig) { | |
193 | return that.getConfig(config.externalConfig); | |
194 | } | |
195 | return config; | |
bd910942 | 196 | }); |
1a42e30a | 197 | }); |
b9c5fcf0 BW |
198 | }, |
199 | matchesFilter: function (item) { | |
200 | return ( | |
201 | item.name.toLowerCase().includes(this.filter) || | |
1c451e11 | 202 | (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || |
b9c5fcf0 BW |
203 | (item.tag && item.tag.toLowerCase().includes(this.filter)) |
204 | ); | |
205 | }, | |
206 | navigateToFirstService: function (target) { | |
207 | try { | |
208 | const service = this.services[0].items[0]; | |
209 | window.open(service.url, target || service.target || "_self"); | |
210 | } catch (error) { | |
211 | console.warning("fail to open service"); | |
212 | } | |
213 | }, | |
214 | filterServices: function (filter) { | |
215 | this.filter = filter; | |
216 | ||
217 | if (!filter) { | |
218 | this.services = this.config.services; | |
219 | return; | |
220 | } | |
221 | ||
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); | |
227 | } | |
228 | } | |
229 | } | |
230 | ||
231 | this.services = [ | |
232 | { | |
233 | name: filter, | |
234 | icon: "fas fa-search", | |
9814a037 BW |
235 | items: searchResultItems, |
236 | }, | |
b9c5fcf0 | 237 | ]; |
9814a037 | 238 | }, |
bd910942 BW |
239 | handleErrors: function (title, content) { |
240 | return { | |
241 | message: { | |
242 | title: title, | |
243 | style: "is-danger", | |
244 | content: content, | |
245 | }, | |
246 | }; | |
247 | }, | |
ffe3404a BW |
248 | createStylesheet: function (css) { |
249 | let style = document.createElement("style"); | |
6777bc34 GC |
250 | style.appendChild(document.createTextNode(css)); |
251 | document.head.appendChild(style); | |
252 | }, | |
9814a037 | 253 | }, |
b9c5fcf0 BW |
254 | }; |
255 | </script> |