]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - src/components/services/OpenWeather.vue
Fixes apikey inconsistency
[github/bastienwirtz/homer.git] / src / components / services / OpenWeather.vue
CommitLineData
593f8afc
DW
1<template>
2 <div>
3 <div class="card" :class="item.class">
f11b1c9d
BW
4 <a
5 :href="`https://openweathermap.org/city/${id}`"
6 :target="item.target"
7 rel="noreferrer"
8 >
593f8afc
DW
9 <div class="card-content">
10 <div class="media">
f11b1c9d 11 <div v-if="icon" class="media-left" :class="item.background">
593f8afc 12 <figure class="image is-48x48">
b79561bc 13 <img
f11b1c9d 14 :src="`https://openweathermap.org/img/wn/${icon}@2x.png`"
b79561bc
DW
15 :alt="conditions"
16 :title="conditions"
17 />
593f8afc
DW
18 </figure>
19 </div>
593f8afc 20 <div class="media-content">
f11b1c9d
BW
21 <p v-if="error" class="error">Data could not be retrieved</p>
22 <div v-else>
23 <p class="title is-4">{{ name }}</p>
24 <p class="subtitle is-6">
25 {{ temp | tempSuffix(this.item.units) }}
26 </p>
27 </div>
593f8afc
DW
28 </div>
29 </div>
30 <div class="tag" :class="item.tagstyle" v-if="item.tag">
31 <strong class="tag-text">#{{ item.tag }}</strong>
32 </div>
33 </div>
34 </a>
35 </div>
36 </div>
37</template>
38
39<script>
40export default {
41 name: "OpenWeather",
42 props: {
43 item: Object,
44 },
45 data: () => ({
f11b1c9d
BW
46 id: null,
47 icon: null,
48 name: null,
49 temp: null,
50 conditions: null,
fb158d47 51 error: false,
593f8afc 52 }),
593f8afc 53 created() {
f11b1c9d 54 this.fetchWeather();
593f8afc
DW
55 },
56 methods: {
f11b1c9d 57 fetchWeather: async function () {
551e32e2
DW
58 let locationQuery;
59
f11b1c9d 60 // Use location ID if specified, otherwise retrieve value from location (name).
551e32e2
DW
61 if (this.item.locationId) {
62 locationQuery = `id=${this.item.locationId}`;
63 } else {
64 locationQuery = `q=${this.item.location}`;
65 }
66
487f954a 67 const url = `https://api.openweathermap.org/data/2.5/weather?${locationQuery}&appid=${this.item.apikey}&units=${this.item.units}`;
f11b1c9d
BW
68 fetch(url)
69 .then((response) => {
70 if (!response.ok) {
71 throw Error(response.statusText);
72 }
73 return response.json();
74 })
75 .then((weather) => {
76 this.id = weather.id;
77 this.name = weather.name;
78 this.temp = parseInt(weather.main.temp).toFixed(1);
79 this.icon = weather.weather[0].icon;
80 this.conditions = weather.weather[0].description;
81 })
82 .catch((e) => {
83 console.log(e);
84 this.error = true;
fb158d47 85 });
593f8afc
DW
86 },
87 },
f11b1c9d
BW
88 filters: {
89 tempSuffix: function (value, type) {
90 if (!value) return "";
91
92 let unit = "K";
93 if (type === "metric") {
94 unit = "°C";
95 } else if (type === "imperial") {
96 unit = "°F";
97 }
98 return `${value} ${unit}`;
99 },
100 },
593f8afc
DW
101};
102</script>
103
104<style scoped lang="scss">
fb158d47
DW
105// Add a border around the weather image.
106// Otherwise the image is not always distinguishable.
fd12de9e
DW
107.media-left {
108 &.circle,
109 &.square {
110 background-color: #e4e4e4;
111 }
112
113 &.circle {
114 border-radius: 90%;
115 }
116
117 img {
118 max-height: 100%;
119 }
120}
121
fb158d47
DW
122.error {
123 color: #de0000;
124}
125
126// Change background color in dark mode.
fd12de9e
DW
127.is-dark {
128 .media-left {
129 &.circle,
130 &.square {
131 background-color: #909090;
132 }
133 }
593f8afc 134}
b79561bc 135</style>