diff options
author | Dick Wolff <dckwlff@gmail.com> | 2021-01-13 22:19:17 +0100 |
---|---|---|
committer | Dick Wolff <dckwlff@gmail.com> | 2021-01-13 22:19:17 +0100 |
commit | fb158d4767b85160c0c2c5fea5c6429c265576a9 (patch) | |
tree | e161d98498cb17062380d22fd74ababf264e10f2 /src/components | |
parent | 9e0ef05efe00ffd98ff6c7314a67e8a05505dcc4 (diff) | |
download | homer-fb158d4767b85160c0c2c5fea5c6429c265576a9.tar.gz homer-fb158d4767b85160c0c2c5fea5c6429c265576a9.tar.zst homer-fb158d4767b85160c0c2c5fea5c6429c265576a9.zip |
Error handling and fixed link to city.
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/services/OpenWeather.vue | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/src/components/services/OpenWeather.vue b/src/components/services/OpenWeather.vue index c535a89..8029716 100644 --- a/src/components/services/OpenWeather.vue +++ b/src/components/services/OpenWeather.vue | |||
@@ -1,7 +1,7 @@ | |||
1 | <template> | 1 | <template> |
2 | <div> | 2 | <div> |
3 | <div class="card" :class="item.class"> | 3 | <div class="card" :class="item.class"> |
4 | <a :href="item.url" :target="item.target" rel="noreferrer"> | 4 | <a :href="`https://openweathermap.org/city/` + locationId" :target="item.target" rel="noreferrer"> |
5 | <div class="card-content"> | 5 | <div class="card-content"> |
6 | <div class="media"> | 6 | <div class="media"> |
7 | <div v-if="image" class="media-left" :class="item.background"> | 7 | <div v-if="image" class="media-left" :class="item.background"> |
@@ -25,10 +25,15 @@ | |||
25 | {{ item.subtitle }} | 25 | {{ item.subtitle }} |
26 | </template> | 26 | </template> |
27 | <template v-else-if="api"> | 27 | <template v-else-if="api"> |
28 | {{ temp }} | 28 | <template v-if="temp !== ''"> |
29 | <span v-if="this.item.units == 'metric'">°C</span> | 29 | {{ temp }} |
30 | <span v-else-if="this.item.units == 'imperial'">°F</span> | 30 | <span v-if="this.item.units === 'metric'">°C</span> |
31 | <span v-else>K</span> | 31 | <span v-else-if="this.item.units === 'imperial'">°F</span> |
32 | <span v-else>K</span> | ||
33 | </template> | ||
34 | <template v-else> | ||
35 | <span class="error">Data could not be retrieved</span> | ||
36 | </template> | ||
32 | </template> | 37 | </template> |
33 | </p> | 38 | </p> |
34 | </div> | 39 | </div> |
@@ -49,7 +54,9 @@ export default { | |||
49 | item: Object, | 54 | item: Object, |
50 | }, | 55 | }, |
51 | data: () => ({ | 56 | data: () => ({ |
57 | error: false, | ||
52 | api: { | 58 | api: { |
59 | id: "", | ||
53 | name: "", | 60 | name: "", |
54 | weather: [ | 61 | weather: [ |
55 | { | 62 | { |
@@ -65,8 +72,14 @@ export default { | |||
65 | }, | 72 | }, |
66 | }), | 73 | }), |
67 | computed: { | 74 | computed: { |
68 | temp: function () { | 75 | locationId: function () { |
69 | if (this.api) { | 76 | if (this.api) { |
77 | return this.api.id; | ||
78 | } | ||
79 | return ""; | ||
80 | }, | ||
81 | temp: function () { | ||
82 | if (this.api && this.api.main.temp !== "") { | ||
70 | return parseInt(this.api.main.temp).toFixed(1); | 83 | return parseInt(this.api.main.temp).toFixed(1); |
71 | } | 84 | } |
72 | return ""; | 85 | return ""; |
@@ -92,13 +105,19 @@ export default { | |||
92 | const url = `https://api.openweathermap.org/data/2.5/weather?q=${this.item.location}&appid=${this.item.apiKey}&units=${this.item.units}`; | 105 | const url = `https://api.openweathermap.org/data/2.5/weather?q=${this.item.location}&appid=${this.item.apiKey}&units=${this.item.units}`; |
93 | this.api = await fetch(url) | 106 | this.api = await fetch(url) |
94 | .then((response) => response.json()) | 107 | .then((response) => response.json()) |
95 | .catch((e) => console.log(e)); | 108 | .catch((e) => { |
109 | this.error = true; | ||
110 | console.log(e) | ||
111 | }); | ||
96 | }, | 112 | }, |
97 | }, | 113 | }, |
98 | }; | 114 | }; |
99 | </script> | 115 | </script> |
100 | 116 | ||
101 | <style scoped lang="scss"> | 117 | <style scoped lang="scss"> |
118 | |||
119 | // Add a border around the weather image. | ||
120 | // Otherwise the image is not always distinguishable. | ||
102 | .media-left { | 121 | .media-left { |
103 | &.circle, | 122 | &.circle, |
104 | &.square { | 123 | &.square { |
@@ -114,8 +133,11 @@ export default { | |||
114 | } | 133 | } |
115 | } | 134 | } |
116 | 135 | ||
117 | // Add a circular border around the weather image when in dark mode. | 136 | .error { |
118 | // Otherwise the image is not distinguishable. | 137 | color: #de0000; |
138 | } | ||
139 | |||
140 | // Change background color in dark mode. | ||
119 | .is-dark { | 141 | .is-dark { |
120 | .media-left { | 142 | .media-left { |
121 | &.circle, | 143 | &.circle, |