2 <article v-if="show" class="message" :class="message.style">
3 <div v-if="message.title || message.icon" class="message-header">
5 <i v-if="message.icon" :class="`fa-fw ${message.icon}`"></i>
10 v-if="message.content"
12 v-html="message.content"
29 created: async function () {
30 // Look for a new message if an endpoint is provided.
31 this.message = Object.assign({}, this.item);
32 if (this.item && this.item.url) {
33 let fetchedMessage = await this.getMessage(this.item.url);
34 if (this.item.mapping) fetchedMessage = this.mapRemoteMessage(fetchedMessage);
35 // keep the original config value if no value is provided by the endpoint
36 for (const prop of ["title", "style", "content"]) {
37 if (prop in fetchedMessage && fetchedMessage[prop] !== null) {
38 this.message[prop] = fetchedMessage[prop];
42 this.show = this.message.title || this.message.content;
45 getMessage: function (url) {
46 return fetch(url).then(function (response) {
47 if (response.status != 200) {
50 return response.json();
54 mapRemoteMessage: function (message) {
56 // map property from message into mapped according to mapping config (only if field has a value):
57 for (const prop in this.item.mapping) if (message[this.item.mapping[prop]]) mapped[prop] = message[this.item.mapping[prop]];