open-webui/src/lib/components/chat/ShareChatModal.svelte

54 lines
1.3 KiB
Svelte
Raw Normal View History

2024-01-18 05:01:30 +00:00
<script lang="ts">
import { getContext } from 'svelte';
2024-01-18 05:01:30 +00:00
import Modal from '../common/Modal.svelte';
const i18n = getContext('i18n');
2024-01-18 05:01:30 +00:00
export let downloadChat: Function;
export let shareChat: Function;
export let shareLocalChat: Function;
2024-01-18 05:01:30 +00:00
export let show = false;
</script>
<Modal bind:show size="xs">
<div class="px-4 pt-4 pb-5 w-full flex flex-col justify-center">
<button
class=" self-center px-8 py-1.5 w-full rounded-full text-sm font-medium bg-blue-600 hover:bg-blue-500 text-white"
type="button"
on:click={() => {
shareChat();
show = false;
}}
>
{$i18n.t('Share to OpenWebUI Community')}
2024-01-18 05:01:30 +00:00
</button>
<button
class=" self-center px-8 py-1.5 w-full rounded-full text-sm font-medium bg-blue-600 hover:bg-blue-500 text-white mt-1.5"
type="button"
on:click={() => {
shareLocalChat();
show = false;
}}
>
{$i18n.t('Create local share link')}
</button>
2024-01-18 05:01:30 +00:00
<div class="flex justify-center space-x-1 mt-1.5">
<div class=" self-center text-gray-400 text-xs font-medium">{$i18n.t('or')}</div>
2024-01-18 05:01:30 +00:00
<button
2024-01-18 05:03:53 +00:00
class=" self-center rounded-full text-xs font-medium text-gray-700 dark:text-gray-500 underline"
2024-01-18 05:01:30 +00:00
type="button"
on:click={() => {
downloadChat();
show = false;
}}
>
{$i18n.t('Download as a File')}
2024-01-18 05:01:30 +00:00
</button>
</div>
</div>
</Modal>