-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dashboard): Correctly handle non-rounded icons for dashboard widgets
Signed-off-by: Ferdinand Thiessen <[email protected]>
- Loading branch information
Showing
3 changed files
with
84 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!-- | ||
- SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
<script setup lang="ts"> | ||
import { ref } from 'vue' | ||
import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js' | ||
import NcDashboardWidgetItem from '@nextcloud/vue/dist/Components/NcDashboardWidgetItem.js' | ||
import IconFile from 'vue-material-design-icons/File.vue' | ||
|
||
defineProps({ | ||
item: { | ||
type: Object, | ||
required: true, | ||
}, | ||
iconSize: { | ||
type: Number, | ||
required: true, | ||
}, | ||
roundedIcons: { | ||
type: Boolean, | ||
default: true, | ||
}, | ||
}) | ||
|
||
/** | ||
* True as soon as the image is loaded | ||
*/ | ||
const imageLoaded = ref(false) | ||
/** | ||
* True if the image failed to load and we should show a fallback | ||
*/ | ||
const loadingImageFailed = ref(false) | ||
</script> | ||
|
||
<template> | ||
<NcDashboardWidgetItem :target-url="item.link" | ||
:overlay-icon-url="item.overlayIconUrl ? item.overlayIconUrl : ''" | ||
:main-text="item.title" | ||
:sub-text="item.subtitle"> | ||
<template #avatar> | ||
<template v-if="item.iconUrl"> | ||
<NcAvatar v-if="roundedIcons" | ||
:size="iconSize" | ||
:url="item.iconUrl" /> | ||
<template v-else> | ||
<img v-show="!loadingImageFailed" | ||
alt="" | ||
class="api-dashboard-widget-item__icon" | ||
:class="{'hidden-visually': !imageLoaded }" | ||
:src="item.iconUrl" | ||
@error="loadingImageFailed = true" | ||
@load="imageLoaded = true"> | ||
<!-- Placeholder while the image is loaded and also the fallback if the URL is broken --> | ||
<IconFile v-if="!imageLoaded" | ||
:size="iconSize" /> | ||
</template> | ||
</template> | ||
</template> | ||
</NcDashboardWidgetItem> | ||
</template> | ||
|
||
<style scoped> | ||
.api-dashboard-widget-item__icon { | ||
height: var(--default-clickable-area); | ||
width: var(--default-clickable-area); | ||
} | ||
</style> |