web/admin: fix rendering of applications with custom icon
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f3b3ce6572
commit
ff03db61a8
|
@ -2,6 +2,7 @@ import { t } from "@lingui/macro";
|
||||||
|
|
||||||
import { CSSResult, TemplateResult, css, html } from "lit";
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
||||||
import { customElement, property } from "lit/decorators.js";
|
import { customElement, property } from "lit/decorators.js";
|
||||||
|
import { ifDefined } from "lit/directives/if-defined.js";
|
||||||
|
|
||||||
import PFAvatar from "@patternfly/patternfly/components/Avatar/avatar.css";
|
import PFAvatar from "@patternfly/patternfly/components/Avatar/avatar.css";
|
||||||
|
|
||||||
|
@ -94,15 +95,24 @@ export class ApplicationListPage extends TablePage<Application> {
|
||||||
</ak-forms-delete-bulk>`;
|
</ak-forms-delete-bulk>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderIcon(item: Application): TemplateResult {
|
||||||
|
if (item?.metaIcon) {
|
||||||
|
if (item.metaIcon.startsWith("fa://")) {
|
||||||
|
const icon = item.metaIcon.replaceAll("fa://", "");
|
||||||
|
return html`<i class="fas ${icon}"></i>`;
|
||||||
|
}
|
||||||
|
return html`<img
|
||||||
|
class="app-icon pf-c-avatar"
|
||||||
|
src="${ifDefined(item.metaIcon)}"
|
||||||
|
alt="${t`Application Icon`}"
|
||||||
|
/>`;
|
||||||
|
}
|
||||||
|
return html`<i class="fas fa-share-square"></i>`;
|
||||||
|
}
|
||||||
|
|
||||||
row(item: Application): TemplateResult[] {
|
row(item: Application): TemplateResult[] {
|
||||||
return [
|
return [
|
||||||
item.metaIcon
|
this.renderIcon(item),
|
||||||
? html`<img
|
|
||||||
class="app-icon pf-c-avatar"
|
|
||||||
src="${item.metaIcon}"
|
|
||||||
alt="${t`Application Icon`}"
|
|
||||||
/>`
|
|
||||||
: html`<i class="fas fa-question-circle"></i>`,
|
|
||||||
html`<a href="#/core/applications/${item.slug}">
|
html`<a href="#/core/applications/${item.slug}">
|
||||||
<div>${item.name}</div>
|
<div>${item.name}</div>
|
||||||
${item.metaPublisher ? html`<small>${item.metaPublisher}</small>` : html``}
|
${item.metaPublisher ? html`<small>${item.metaPublisher}</small>` : html``}
|
||||||
|
|
Reference in New Issue