diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/App.vue | 65 | ||||
-rw-r--r-- | src/components/Message.vue | 25 |
2 files changed, 54 insertions, 36 deletions
diff --git a/src/App.vue b/src/App.vue index cd1d9ba..aff340c 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -13,7 +13,9 @@ | |||
13 | <section v-if="config.header" class="first-line"> | 13 | <section v-if="config.header" class="first-line"> |
14 | <div v-cloak class="container"> | 14 | <div v-cloak class="container"> |
15 | <div class="logo"> | 15 | <div class="logo"> |
16 | <a href="#"><img v-if="config.logo" :src="config.logo" alt="dashboard logo" /></a> | 16 | <a href="#"> |
17 | <img v-if="config.logo" :src="config.logo" alt="dashboard logo" /> | ||
18 | </a> | ||
17 | <i v-if="config.icon" :class="config.icon"></i> | 19 | <i v-if="config.icon" :class="config.icon"></i> |
18 | </div> | 20 | </div> |
19 | <div class="dashboard-title"> | 21 | <div class="dashboard-title"> |
@@ -149,36 +151,41 @@ export default { | |||
149 | }; | 151 | }; |
150 | }, | 152 | }, |
151 | created: async function () { | 153 | created: async function () { |
152 | const defaults = jsyaml.load(defaultConfig); | 154 | this.buildDashboard(); |
153 | let config; | 155 | window.onhashchange = this.buildDashboard; |
154 | window.onhashchange = function() { location.reload(); }; | ||
155 | try { | ||
156 | config = await this.getConfig(); | ||
157 | const path = (window.location.hash.substring(1) != '') ? window.location.hash.substring(1) : null; | ||
158 | if (path) { | ||
159 | let pathConfig = await this.getConfig(`assets/${path}.yml`); // the slash (/) is included in the pathname | ||
160 | for (const prop in pathConfig) config[prop] = pathConfig[prop]; | ||
161 | } | ||
162 | // config = await this.getConfig(path ? `assets/${path}.yml` : null); | ||
163 | //config = await (path ? this.getConfig(`assets/${path}.yml`) : this.getConfig()) | ||
164 | } catch (error) { | ||
165 | console.log(error); | ||
166 | config = this.handleErrors("⚠️ Error loading configuration", error); | ||
167 | } | ||
168 | this.config = merge(defaults, config); | ||
169 | this.services = this.config.services; | ||
170 | document.title = | ||
171 | this.config.documentTitle || | ||
172 | `${this.config.title} | ${this.config.subtitle}`; | ||
173 | if (this.config.stylesheet) { | ||
174 | let stylesheet = ""; | ||
175 | for (const file of this.config.stylesheet) { | ||
176 | stylesheet += `@import "${file}";`; | ||
177 | } | ||
178 | this.createStylesheet(stylesheet); | ||
179 | } | ||
180 | }, | 156 | }, |
181 | methods: { | 157 | methods: { |
158 | buildDashboard: async function () { | ||
159 | const defaults = jsyaml.load(defaultConfig); | ||
160 | let config; | ||
161 | try { | ||
162 | config = await this.getConfig(); | ||
163 | const path = | ||
164 | window.location.hash.substring(1) != "" | ||
165 | ? window.location.hash.substring(1) | ||
166 | : null; | ||
167 | |||
168 | if (path) { | ||
169 | let pathConfig = await this.getConfig(`assets/${path}.yml`); // the slash (/) is included in the pathname | ||
170 | config = Object.assign(config, pathConfig); | ||
171 | } | ||
172 | } catch (error) { | ||
173 | console.log(error); | ||
174 | config = this.handleErrors("⚠️ Error loading configuration", error); | ||
175 | } | ||
176 | this.config = merge(defaults, config); | ||
177 | this.services = this.config.services; | ||
178 | document.title = | ||
179 | this.config.documentTitle || | ||
180 | `${this.config.title} | ${this.config.subtitle}`; | ||
181 | if (this.config.stylesheet) { | ||
182 | let stylesheet = ""; | ||
183 | for (const file of this.config.stylesheet) { | ||
184 | stylesheet += `@import "${file}";`; | ||
185 | } | ||
186 | this.createStylesheet(stylesheet); | ||
187 | } | ||
188 | }, | ||
182 | getConfig: function (path = "assets/config.yml") { | 189 | getConfig: function (path = "assets/config.yml") { |
183 | return fetch(path).then((response) => { | 190 | return fetch(path).then((response) => { |
184 | if (response.redirected) { | 191 | if (response.redirected) { |
diff --git a/src/components/Message.vue b/src/components/Message.vue index 2f71f3f..7c6acdd 100644 --- a/src/components/Message.vue +++ b/src/components/Message.vue | |||
@@ -22,7 +22,6 @@ export default { | |||
22 | }, | 22 | }, |
23 | data: function () { | 23 | data: function () { |
24 | return { | 24 | return { |
25 | show: false, | ||
26 | message: {}, | 25 | message: {}, |
27 | }; | 26 | }; |
28 | }, | 27 | }, |
@@ -30,14 +29,23 @@ export default { | |||
30 | // Look for a new message if an endpoint is provided. | 29 | // Look for a new message if an endpoint is provided. |
31 | this.message = Object.assign({}, this.item); | 30 | this.message = Object.assign({}, this.item); |
32 | await this.getMessage(); | 31 | await this.getMessage(); |
33 | this.show = this.message.title || this.message.content; | ||
34 | }, | 32 | }, |
35 | 33 | computed: { | |
34 | show: function () { | ||
35 | return this.message.title || this.message.content; | ||
36 | }, | ||
37 | }, | ||
38 | watch: { | ||
39 | item: function (item) { | ||
40 | this.message = Object.assign({}, item); | ||
41 | }, | ||
42 | }, | ||
36 | methods: { | 43 | methods: { |
37 | getMessage: async function() { | 44 | getMessage: async function () { |
38 | if (this.item && this.item.url) { | 45 | if (this.item && this.item.url) { |
39 | let fetchedMessage = await this.downloadMessage(this.item.url); | 46 | let fetchedMessage = await this.downloadMessage(this.item.url); |
40 | if (this.item.mapping) fetchedMessage = this.mapRemoteMessage(fetchedMessage); | 47 | if (this.item.mapping) |
48 | fetchedMessage = this.mapRemoteMessage(fetchedMessage); | ||
41 | // keep the original config value if no value is provided by the endpoint | 49 | // keep the original config value if no value is provided by the endpoint |
42 | for (const prop of ["title", "style", "content"]) { | 50 | for (const prop of ["title", "style", "content"]) { |
43 | if (prop in fetchedMessage && fetchedMessage[prop] !== null) { | 51 | if (prop in fetchedMessage && fetchedMessage[prop] !== null) { |
@@ -45,7 +53,8 @@ export default { | |||
45 | } | 53 | } |
46 | } | 54 | } |
47 | } | 55 | } |
48 | if (this.item.refreshInterval) setTimeout(this.getMessage, this.item.refreshInterval); | 56 | if (this.item.refreshInterval) |
57 | setTimeout(this.getMessage, this.item.refreshInterval); | ||
49 | }, | 58 | }, |
50 | 59 | ||
51 | downloadMessage: function (url) { | 60 | downloadMessage: function (url) { |
@@ -60,7 +69,9 @@ export default { | |||
60 | mapRemoteMessage: function (message) { | 69 | mapRemoteMessage: function (message) { |
61 | let mapped = {}; | 70 | let mapped = {}; |
62 | // map property from message into mapped according to mapping config (only if field has a value): | 71 | // map property from message into mapped according to mapping config (only if field has a value): |
63 | for (const prop in this.item.mapping) if (message[this.item.mapping[prop]]) mapped[prop] = message[this.item.mapping[prop]]; | 72 | for (const prop in this.item.mapping) |
73 | if (message[this.item.mapping[prop]]) | ||
74 | mapped[prop] = message[this.item.mapping[prop]]; | ||
64 | return mapped; | 75 | return mapped; |
65 | }, | 76 | }, |
66 | }, | 77 | }, |