72 lines
2.0 KiB
Svelte
72 lines
2.0 KiB
Svelte
<script lang="ts">
|
|
import {writable} from "svelte/store"
|
|
import type {EventContent} from "@welshman/util"
|
|
import {isMobile, preventDefault} from "@lib/html"
|
|
import GallerySend from "@assets/icons/gallery-send.svg?dataurl"
|
|
import Plane from "@assets/icons/plane-2.svg?dataurl"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import EditorContent from "@app/editor/EditorContent.svelte"
|
|
import {makeEditor} from "@app/editor"
|
|
|
|
type Props = {
|
|
onSubmit: (event: EventContent) => void
|
|
}
|
|
|
|
const {onSubmit}: Props = $props()
|
|
|
|
const autofocus = !isMobile
|
|
|
|
const uploading = writable(false)
|
|
|
|
export const focus = () => editor.then(ed => ed.chain().focus().run())
|
|
|
|
const uploadFiles = () => editor.then(ed => ed.chain().selectFiles().run())
|
|
|
|
const submit = async () => {
|
|
if ($uploading) return
|
|
|
|
const ed = await editor
|
|
const content = ed.getText({blockSeparator: "\n"}).trim()
|
|
const tags = ed.storage.nostr.getEditorTags()
|
|
|
|
if (!content) return
|
|
|
|
onSubmit({content, tags})
|
|
|
|
ed.chain().clearContent().run()
|
|
}
|
|
|
|
const editor = makeEditor({
|
|
autofocus,
|
|
submit,
|
|
uploading,
|
|
aggressive: true,
|
|
encryptFiles: true,
|
|
})
|
|
</script>
|
|
|
|
<form class="relative z-feature flex gap-2 p-2" onsubmit={preventDefault(submit)}>
|
|
<Button
|
|
data-tip="Add an image"
|
|
class="center tooltip tooltip-right h-10 w-10 min-w-10 rounded-box bg-base-300 transition-colors hover:bg-base-200"
|
|
disabled={$uploading}
|
|
onclick={uploadFiles}>
|
|
{#if $uploading}
|
|
<span class="loading loading-spinner loading-xs"></span>
|
|
{:else}
|
|
<Icon icon={GallerySend} />
|
|
{/if}
|
|
</Button>
|
|
<div class="chat-editor flex-grow overflow-hidden">
|
|
<EditorContent {editor} />
|
|
</div>
|
|
<Button
|
|
data-tip="{window.navigator.platform.includes('Mac') ? 'cmd' : 'ctrl'}+enter to send"
|
|
class="center tooltip tooltip-left absolute right-4 h-10 w-10 min-w-10 rounded-full"
|
|
disabled={$uploading}
|
|
onclick={submit}>
|
|
<Icon icon={Plane} />
|
|
</Button>
|
|
</form>
|