homer/app.js

121 lines
3.9 KiB
JavaScript
Raw Normal View History

2019-02-18 09:23:20 +01:00
const app = new Vue({
2018-06-14 07:14:05 +02:00
el: '#app',
data: {
config: null,
2019-02-18 09:23:20 +01:00
offline: false,
filter: '',
2019-10-02 06:35:51 +02:00
vlayout: true,
2019-10-08 07:32:30 +02:00
isDark: null
2018-06-14 07:14:05 +02:00
},
created: async function () {
2018-06-17 00:48:28 +02:00
let that = this;
this.isDark = 'overrideDark' in localStorage ?
2019-10-08 07:32:30 +02:00
JSON.parse(localStorage.overrideDark) : matchMedia("(prefers-color-scheme: dark)").matches;
2018-06-17 00:48:28 +02:00
2019-10-08 07:32:30 +02:00
if ('vlayout' in localStorage) {
this.vlayout = JSON.parse(localStorage.vlayout)
}
2019-02-18 09:23:20 +01:00
this.checkOffline();
try {
this.config = await this.getConfig();
} catch (error) {
this.offline = true;
}
// Look for a new message if an endpoint is provided.
if (this.config.message.url) {
this.getMessage(this.config.message.url).then(function(message){
// keep the original config value if no value is provided by the endpoint
for (const prop of ['title','style','content']) {
if (prop in message && message[prop] !== null) {
that.config.message[prop] = message[prop];
}
}
});
}
2019-02-18 09:23:20 +01:00
document.addEventListener('visibilitychange', function () {
if (document.visibilityState == "visible") {
that.checkOffline();
}
}, false);
},
methods: {
checkOffline: function () {
let that = this;
return fetch(window.location.href + "?alive", {
method: 'HEAD',
cache: 'no-store'
}).then(function () {
that.offline = false;
}).catch(function () {
that.offline = true;
});
},
getConfig: function (event) {
return fetch('config.yml').then(function (response) {
if (response.status != 200) {
return
}
return response.text().then(function (body) {
return jsyaml.load(body);
});
});
},
getMessage: function (url) {
return fetch(url).then(function (response) {
if (response.status != 200) {
return;
}
return response.json();
});
},
2019-10-02 06:35:51 +02:00
toggleTheme: function() {
2019-10-08 07:32:30 +02:00
this.isDark = !this.isDark;
localStorage.overrideDark = this.isDark;
},
toggleLayout: function() {
this.vlayout = !this.vlayout;
localStorage.vlayout = this.vlayout;
},
2018-06-14 07:14:05 +02:00
}
});
2019-02-20 07:20:46 +01:00
Vue.component('service', {
props: ['item'],
template: `<div>
<div class="card">
<a :href="item.url">
<div class="card-content">
<div class="media">
<div v-if="item.logo" class="media-left">
<figure class="image is-48x48">
<img :src="item.logo" />
</figure>
</div>
<div v-if="item.icon" class="media-left">
<figure class="image is-48x48">
<i style="font-size: 35px" :class="item.icon"></i>
</figure>
</div>
<div class="media-content">
<p class="title is-4">{{ item.name }}</p>
<p class="subtitle is-6">{{ item.subtitle }}</p>
</div>
</div>
2019-10-23 23:29:55 +02:00
<div class="tag" :class="item.tagstyle" v-if="item.tag">
<strong class="tag-text">#{{ item.tag }}</strong>
</div>
2019-02-20 07:20:46 +01:00
</div>
</a>
</div></div>`
});
2019-02-18 09:23:20 +01:00
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('worker.js');
2018-06-14 07:14:05 +02:00
});
2018-11-13 06:14:38 +01:00
}