]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - src/components/services/PiHole.vue
Merge pull request #186 from pdevq/connectivity_checker_status
[github/bastienwirtz/homer.git] / src / components / services / PiHole.vue
CommitLineData
9a14de00
BW
1<template>
2 <div>
3 <div class="card" :class="item.class">
4 <a :href="item.url" :target="item.target" rel="noreferrer">
5 <div class="card-content">
6 <div class="media">
7 <div v-if="item.logo" class="media-left">
8 <figure class="image is-48x48">
9 <img :src="item.logo" :alt="`${item.name} logo`" />
10 </figure>
11 </div>
12 <div v-if="item.icon" class="media-left">
13 <figure class="image is-48x48">
c5eab80d 14 <i style="font-size: 35px" :class="['fa-fw', item.icon]"></i>
9a14de00
BW
15 </figure>
16 </div>
17 <div class="media-content">
18 <p class="title is-4">{{ item.name }}</p>
c5eab80d
BC
19 <p class="subtitle is-6">
20 <template v-if="item.subtitle">
21 {{ item.subtitle }}
22 </template>
4ce53b68 23 <template v-else-if="api">
f81dc6f4 24 {{ percentage }}&percnt; blocked
c5eab80d
BC
25 </template>
26 </p>
9a14de00 27 </div>
4ce53b68
BC
28 <div v-if="api" class="status" :class="api.status">
29 {{ api.status }}
9a14de00
BW
30 </div>
31 </div>
32 <div class="tag" :class="item.tagstyle" v-if="item.tag">
33 <strong class="tag-text">#{{ item.tag }}</strong>
34 </div>
35 </div>
36 </a>
37 </div>
38 </div>
39</template>
40
41<script>
42export default {
43 name: "PiHole",
44 props: {
45 item: Object,
46 },
f81dc6f4 47 data: () => ({
4ce53b68 48 api: {
f81dc6f4
BC
49 status: "",
50 ads_percentage_today: 0,
51 },
52 }),
c5eab80d 53 computed: {
f81dc6f4 54 percentage: function () {
4ce53b68
BC
55 if (this.api) {
56 return this.api.ads_percentage_today.toFixed(1);
c5eab80d
BC
57 }
58 return "";
59 },
60 },
f81dc6f4 61 created() {
9a14de00
BW
62 this.fetchStatus();
63 },
64 methods: {
65 fetchStatus: async function () {
f81dc6f4 66 const url = `${this.item.url}/api.php`;
4ce53b68 67 this.api = await fetch(url)
f81dc6f4
BC
68 .then((response) => response.json())
69 .catch((e) => console.log(e));
9a14de00
BW
70 },
71 },
72};
73</script>
74
75<style scoped lang="scss">
76.media-left img {
77 max-height: 100%;
78}
79.status {
80 font-size: 0.8rem;
81 color: var(--text-title);
82
83 &.enabled:before {
84 background-color: #94e185;
85 border-color: #78d965;
3a8fa151 86 box-shadow: 0 0 5px 1px #94e185;
9a14de00
BW
87 }
88
89 &.disabled:before {
90 background-color: #c9404d;
91 border-color: #c42c3b;
3a8fa151 92 box-shadow: 0 0 5px 1px #c9404d;
9a14de00
BW
93 }
94
95 &:before {
96 content: " ";
97 display: inline-block;
98 width: 7px;
99 height: 7px;
100 margin-right: 10px;
101 border: 1px solid #000;
102 border-radius: 7px;
103 }
104}
105</style>