Skip to content

Commit 966a0a9

Browse files
committed
fix(weatherstatus): fix location marker icon with dark theme, only use icons from @mdi/svg
Signed-off-by: Julien Veyssier <[email protected]>
1 parent c96bde7 commit 966a0a9

File tree

2 files changed

+26
-16
lines changed

2 files changed

+26
-16
lines changed

apps/weather_status/img/cross.svg

-3
This file was deleted.

apps/weather_status/src/App.vue

+26-13
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,25 @@
2424
{{ forecastMessage }}
2525
</NcActionText>
2626
<NcActionLink v-if="gotWeather"
27-
icon="icon-address"
2827
target="_blank"
2928
:aria-hidden="true"
3029
:href="weatherLinkTarget"
3130
:close-after-click="true">
31+
<template #icon>
32+
<NcIconSvgWrapper name="MapMarker"
33+
:svg="mapMarkerSvg"
34+
:size="20" />
35+
</template>
3236
{{ locationText }}
3337
</NcActionLink>
3438
<NcActionButton v-if="gotWeather"
3539
:aria-hidden="true"
3640
@click="onAddRemoveFavoriteClick">
3741
<template #icon>
38-
<component :is="addRemoveFavoriteIcon" :size="20" class="favorite-color" />
42+
<NcIconSvgWrapper name="Star"
43+
:svg="addRemoveFavoriteSvg"
44+
:size="20"
45+
class="favorite-color" />
3946
</template>
4047
{{ addRemoveFavoriteText }}
4148
</NcActionButton>
@@ -45,8 +52,8 @@
4552
:aria-hidden="true"
4653
@click="onBrowserLocationClick">
4754
<template #icon>
48-
<NcIconSvgWrapper :name="t('weather_status', 'Detect location')"
49-
:svg="crossSvg"
55+
<NcIconSvgWrapper name="Crosshairs"
56+
:svg="crosshairsSvg"
5057
:size="20" />
5158
</template>
5259
{{ t('weather_status', 'Detect location') }}
@@ -66,7 +73,10 @@
6673
:aria-hidden="true"
6774
@click="onFavoriteClick($event, favorite)">
6875
<template #icon>
69-
<IconStar :size="20" :class="{'favorite-color': address === favorite}" />
76+
<NcIconSvgWrapper name="Star"
77+
:svg="starSvg"
78+
:size="20"
79+
class="favorite-color" />
7080
</template>
7181
{{ favorite }}
7282
</NcActionButton>
@@ -80,8 +90,6 @@ import { showError } from '@nextcloud/dialogs'
8090
import moment from '@nextcloud/moment'
8191
import { getLocale } from '@nextcloud/l10n'
8292
import { imagePath } from '@nextcloud/router'
83-
import IconStar from 'vue-material-design-icons/Star.vue'
84-
import IconStarOutline from 'vue-material-design-icons/StarOutline.vue'
8593
import NcActions from '@nextcloud/vue/dist/Components/NcActions.js'
8694
import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js'
8795
import NcActionCaption from '@nextcloud/vue/dist/Components/NcActionCaption.js'
@@ -92,7 +100,10 @@ import NcActionText from '@nextcloud/vue/dist/Components/NcActionText.js'
92100
import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js'
93101
import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js'
94102
import * as network from './services/weatherStatusService.js'
95-
import crossSvg from '../img/cross.svg?raw'
103+
import crosshairsSvg from '@mdi/svg/svg/crosshairs.svg?raw'
104+
import mapMarkerSvg from '@mdi/svg/svg/map-marker.svg?raw'
105+
import starSvg from '@mdi/svg/svg/star.svg?raw'
106+
import starOutlineSvg from '@mdi/svg/svg/star-outline.svg?raw'
96107

97108
const MODE_BROWSER_LOCATION = 1
98109
const MODE_MANUAL_LOCATION = 2
@@ -227,7 +238,6 @@ const weatherOptions = {
227238
export default {
228239
name: 'App',
229240
components: {
230-
IconStar,
231241
NcActions,
232242
NcActionButton,
233243
NcActionCaption,
@@ -240,7 +250,10 @@ export default {
240250
},
241251
data() {
242252
return {
243-
crossSvg,
253+
crosshairsSvg,
254+
mapMarkerSvg,
255+
starSvg,
256+
starOutlineSvg,
244257
locale: getLocale(),
245258
loading: true,
246259
errorMessage: '',
@@ -314,10 +327,10 @@ export default {
314327
gotWeather() {
315328
return this.address && !this.errorMessage
316329
},
317-
addRemoveFavoriteIcon() {
330+
addRemoveFavoriteSvg() {
318331
return this.currentAddressIsFavorite
319-
? IconStar
320-
: IconStarOutline
332+
? starSvg
333+
: starOutlineSvg
321334
},
322335
addRemoveFavoriteText() {
323336
return this.currentAddressIsFavorite

0 commit comments

Comments
 (0)