Copyright panel: port to svelte, generate licenses detects 'mostly white' icons now, fix #2041

This commit is contained in:
Pieter Vander Vennet 2024-07-23 17:59:06 +02:00
parent f2d2240896
commit 2aa77b7b47
9 changed files with 331 additions and 245 deletions

View file

@ -0,0 +1,42 @@
<script lang="ts">
import type SmallLicense from "../../Models/smallLicense"
import { Utils } from "../../Utils"
import { twJoin } from "tailwind-merge"
export let iconPath: string
export let license: SmallLicense
try {
iconPath = "." + new URL(iconPath).pathname
} catch (e) {
console.warn(e)
}
let sources = Utils.NoNull(Utils.NoEmpty(license?.sources))
function sourceName(lnk: string) {
try {
return new URL(lnk).hostname
} catch {
console.error("Not a valid URL:", lnk)
}
return lnk
}
</script>
{#if license != undefined && license.license.indexOf("trivial") < 0}
<div class="flex flex-wrap border-b border-gray-300 m-2 border-box">
<img class={twJoin( "w-12 min-h-12 mr-2 mb-2", license["mostly_white"] && "bg-slate-400 rounded-full h-12" )}
src={iconPath} />
<div class="flex flex-col" style="width: calc(100% - 50px - 0.5em); min-width: 12rem;">
<div class="font-bold">
{license.authors.join("; ")}
</div>
{license.license}
{#each sources as source}
<a href={source} target="_blank">{sourceName(source)}</a>
{/each}
</div>
</div>
{/if}