Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(dashboard): Use the widget icon URL when it was provided
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and AndyScherzinger committed Jul 11, 2024
commit 5368b935393c1bd7e192c35498eda9d76ad99ee8
2 changes: 2 additions & 0 deletions apps/dashboard/lib/Controller/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use OCP\AppFramework\Http\Attribute\OpenAPI;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\AppFramework\Services\IInitialState;
use OCP\Dashboard\IIconWidget;
use OCP\Dashboard\IManager;
use OCP\Dashboard\IWidget;
use OCP\EventDispatcher\IEventDispatcher;
Expand Down Expand Up @@ -54,6 +55,7 @@ public function index(): TemplateResponse {
'id' => $widget->getId(),
'title' => $widget->getTitle(),
'iconClass' => $widget->getIconClass(),
'iconUrl' => $widget instanceof IIconWidget ? $widget->getIconUrl() : '',
'url' => $widget->getUrl()
];
}, $this->dashboardManager->getWidgets());
Expand Down
24 changes: 22 additions & 2 deletions apps/dashboard/src/DashboardApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
class="panel">
<div class="panel--header">
<h2>
<span :aria-labelledby="`panel-${panels[panelId].id}--header--icon--description`"
<img v-if="apiWidgets[panels[panelId].id].icon_url"
:alt="apiWidgets[panels[panelId].id].title + ' icon'"
:src="apiWidgets[panels[panelId].id].icon_url"
aria-hidden="true">
<span v-else
:aria-labelledby="`panel-${panels[panelId].id}--header--icon--description`"
aria-hidden="true"
:class="apiWidgets[panels[panelId].id].icon_class"
role="img" />
Expand Down Expand Up @@ -97,7 +102,11 @@
:checked="isActive(panel)"
@input="updateCheckbox(panel, $event.target.checked)">
<label :for="'panel-checkbox-' + panel.id" :class="{ draggable: isActive(panel) }">
<span :class="panel.iconClass" aria-hidden="true" />
<img v-if="panel.iconUrl"
:alt="panel.title + ' icon'"
:src="panel.iconUrl"
aria-hidden="true">
<span v-else :class="panel.iconClass" aria-hidden="true" />
{{ panel.title }}
</label>
</li>
Expand Down Expand Up @@ -554,6 +563,8 @@ export default {
overflow: hidden;
text-overflow: ellipsis;
cursor: grab;

img,
span {
background-size: 32px;
width: 32px;
Expand All @@ -564,6 +575,10 @@ export default {
margin-top: -6px;
margin-left: 6px;
}

img {
filter: var(--background-invert-if-dark);
}
}
}

Expand Down Expand Up @@ -651,6 +666,7 @@ export default {
text-overflow: ellipsis;
white-space: nowrap;

img,
span {
position: absolute;
top: 16px;
Expand All @@ -659,6 +675,10 @@ export default {
background-size: 24px;
}

img {
filter: var(--background-invert-if-dark);
}

&:hover {
border-color: var(--color-primary-element);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/dashboard-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dashboard-main.js.map

Large diffs are not rendered by default.