File size: 622 Bytes
5e914f7 ffd8d78 5e914f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<script lang="ts">
interface Props {
value: string | null;
type: "gallery" | "table";
selected?: boolean;
}
let { value, type, selected = false }: Props = $props();
function truncate_text(text: string | null, max_length = 60): string {
if (!text) return "";
const str = String(text);
if (str.length <= max_length) return str;
return str.slice(0, max_length) + "...";
}
</script>
<pre
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected>{truncate_text(value)}</pre>
<style>
pre {
text-align: left;
}
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>
|