89 lines
2.4 KiB
Svelte
89 lines
2.4 KiB
Svelte
<script lang="ts">
|
|
import { toast } from 'svelte-sonner';
|
|
|
|
import { getContext } from 'svelte';
|
|
const i18n = getContext('i18n');
|
|
import { settings } from '$lib/stores';
|
|
|
|
import Modal from '$lib/components/common/Modal.svelte';
|
|
import XMark from '$lib/components/icons/XMark.svelte';
|
|
import { isValidHttpUrl } from '$lib/utils';
|
|
|
|
export let show = false;
|
|
export let onSubmit: (e) => void;
|
|
|
|
let url = '';
|
|
|
|
const submitHandler = () => {
|
|
if (isValidHttpUrl(url)) {
|
|
onSubmit({
|
|
type:
|
|
url.startsWith('https://www.youtube.com') || url.startsWith('https://youtu.be') || url.startsWith('https://youtube.com') || url.startsWith('https://m.youtube.com')
|
|
? 'youtube'
|
|
: 'web',
|
|
data: url
|
|
});
|
|
|
|
show = false;
|
|
url = '';
|
|
} else {
|
|
toast.error($i18n.t('Please enter a valid URL.'));
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<Modal bind:show size="sm">
|
|
<div class="flex flex-col h-full">
|
|
<div class="flex justify-between items-center dark:text-gray-100 px-5 pt-4 pb-1.5">
|
|
<h1 class="text-lg font-medium self-center font-primary">
|
|
{$i18n.t('Attach Webpage')}
|
|
</h1>
|
|
<button
|
|
class="self-center"
|
|
aria-label={$i18n.t('Close modal')}
|
|
on:click={() => {
|
|
show = false;
|
|
}}
|
|
>
|
|
<XMark className="size-5" />
|
|
</button>
|
|
</div>
|
|
|
|
<div class="px-5 pb-4">
|
|
<form
|
|
on:submit={(e) => {
|
|
e.preventDefault();
|
|
submitHandler();
|
|
}}
|
|
>
|
|
<div class="flex justify-between mb-0.5">
|
|
<label
|
|
for="webpage-url"
|
|
class={`text-xs ${($settings?.highContrastMode ?? false) ? 'text-gray-800 dark:text-gray-100' : 'text-gray-500'}`}
|
|
>{$i18n.t('Webpage URL')}</label
|
|
>
|
|
</div>
|
|
|
|
<input
|
|
id="webpage-url"
|
|
class={`w-full flex-1 text-sm bg-transparent ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}
|
|
type="text"
|
|
bind:value={url}
|
|
placeholder={'https://example.com'}
|
|
autocomplete="off"
|
|
required
|
|
/>
|
|
|
|
<div class="flex justify-end gap-2 pt-3 bg-gray-50 dark:bg-gray-900/50">
|
|
<button
|
|
class="px-3.5 py-1.5 text-sm font-medium bg-black hover:bg-gray-800 text-white dark:bg-white dark:text-black dark:hover:bg-gray-200 transition rounded-full"
|
|
type="submit"
|
|
>
|
|
{$i18n.t('Add')}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</Modal>
|