blob: a404314df8f8911597fb9dd72c1d7e1056f04fd7 (
plain) (
tree)
|
|
const app = new Vue({
el: '#app',
data: {
config: null,
offline: false,
filter: '',
vlayout: true,
overrideDark: null
},
created: function () {
let that = this;
this.checkOffline();
that.getConfig().then(function (config) {
that.config = config;
}).catch(function () {
that.offline = true;
});
document.addEventListener('visibilitychange', function () {
if (document.visibilityState == "visible") {
that.checkOffline();
}
}, false);
},
computed: {
isDark: function() {
return this.overrideDark !== null
? this.overrideDark
: matchMedia("(prefers-color-scheme: dark)").matches;
}
},
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);
});
});
},
toggleTheme: function() {
this.overrideDark = !this.isDark;
}
}
});
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>
<strong class="tag" v-if="item.tag">#{{ item.tag }}</strong>
</div>
</a>
</div></div>`
});
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/worker.js');
});
}
|