58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
import { useState } from 'react';
|
|
import { toast } from 'sonner';
|
|
import { MediaUploader } from '@app/chats/components/mediaUploader';
|
|
import { useArk } from '@libs/ark';
|
|
import { EnterIcon } from '@shared/icons';
|
|
|
|
export function ChatForm({ receiverPubkey }: { receiverPubkey: string }) {
|
|
const ark = useArk();
|
|
const [value, setValue] = useState('');
|
|
|
|
const submit = async () => {
|
|
try {
|
|
const publish = await ark.nip04Encrypt({ content: value, pubkey: receiverPubkey });
|
|
if (publish) setValue('');
|
|
} catch (e) {
|
|
toast.error(e);
|
|
}
|
|
};
|
|
|
|
const handleEnterPress = (e: {
|
|
key: string;
|
|
shiftKey: KeyboardEvent['shiftKey'];
|
|
preventDefault: () => void;
|
|
}) => {
|
|
if (e.key === 'Enter' && !e.shiftKey) {
|
|
e.preventDefault();
|
|
submit();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<MediaUploader setState={setValue} />
|
|
<div className="flex w-full items-center justify-between rounded-full bg-neutral-300 px-3 dark:bg-neutral-700">
|
|
<input
|
|
value={value}
|
|
onChange={(e) => setValue(e.target.value)}
|
|
onKeyDown={handleEnterPress}
|
|
spellCheck={false}
|
|
autoComplete="off"
|
|
autoCorrect="off"
|
|
autoCapitalize="off"
|
|
placeholder="Message..."
|
|
className="h-10 flex-1 resize-none border-none bg-transparent px-3 text-neutral-900 placeholder:text-neutral-600 focus:border-none focus:shadow-none focus:outline-none focus:ring-0 dark:text-neutral-100 dark:placeholder:text-neutral-300"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={submit}
|
|
className="inline-flex shrink-0 items-center gap-1.5 text-sm font-medium text-neutral-600 dark:text-neutral-300"
|
|
>
|
|
<EnterIcon className="h-5 w-5" />
|
|
Send
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|