mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
47 lines
1.1 KiB
Svelte
47 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { WEBUI_BASE_URL } from '$lib/constants';
|
|
import ImagePreview from './ImagePreview.svelte';
|
|
import XMark from '$lib/components/icons/XMark.svelte';
|
|
|
|
export let src = '';
|
|
export let alt = '';
|
|
|
|
export let className = ' w-full outline-hidden focus:outline-hidden';
|
|
export let imageClassName = 'rounded-lg';
|
|
|
|
export let dismissible = false;
|
|
export let onDismiss = () => {};
|
|
|
|
let _src = '';
|
|
$: _src = src.startsWith('/') ? `${WEBUI_BASE_URL}${src}` : src;
|
|
|
|
let showImagePreview = false;
|
|
</script>
|
|
|
|
<ImagePreview bind:show={showImagePreview} src={_src} {alt} />
|
|
|
|
<div class=" relative group w-fit">
|
|
<button
|
|
class={className}
|
|
on:click={() => {
|
|
showImagePreview = true;
|
|
}}
|
|
type="button"
|
|
>
|
|
<img src={_src} {alt} class={imageClassName} draggable="false" data-cy="image" />
|
|
</button>
|
|
|
|
{#if dismissible}
|
|
<div class=" absolute -top-1 -right-1">
|
|
<button
|
|
class=" bg-white text-black border border-white rounded-full group-hover:visible invisible transition"
|
|
type="button"
|
|
on:click={() => {
|
|
onDismiss();
|
|
}}
|
|
>
|
|
<XMark className={'size-4'} />
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
</div>
|