mirror of
https://github.com/docmost/docmost.git
synced 2025-11-25 01:41:12 +10:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import React, { ReactNode } from 'react';
|
|
import {
|
|
ActionIcon,
|
|
Popover,
|
|
Button,
|
|
useMantineColorScheme,
|
|
} from '@mantine/core';
|
|
import { useDisclosure } from '@mantine/hooks';
|
|
import { Suspense } from 'react';
|
|
|
|
const Picker = React.lazy(() => import('@emoji-mart/react'));
|
|
|
|
export interface EmojiPickerInterface {
|
|
onEmojiSelect: (emoji: any) => void;
|
|
icon: ReactNode;
|
|
removeEmojiAction: () => void;
|
|
readOnly: boolean;
|
|
}
|
|
|
|
function EmojiPicker({
|
|
onEmojiSelect,
|
|
icon,
|
|
removeEmojiAction,
|
|
readOnly,
|
|
}: EmojiPickerInterface) {
|
|
const [opened, handlers] = useDisclosure(false);
|
|
const { colorScheme } = useMantineColorScheme();
|
|
|
|
const handleEmojiSelect = (emoji) => {
|
|
onEmojiSelect(emoji);
|
|
handlers.close();
|
|
};
|
|
|
|
const handleRemoveEmoji = () => {
|
|
removeEmojiAction();
|
|
handlers.close();
|
|
};
|
|
|
|
return (
|
|
<Popover
|
|
opened={opened}
|
|
onClose={handlers.close}
|
|
width={332}
|
|
position="bottom"
|
|
disabled={readOnly}
|
|
>
|
|
<Popover.Target>
|
|
<ActionIcon c="gray" variant="transparent" onClick={handlers.toggle}>
|
|
{icon}
|
|
</ActionIcon>
|
|
</Popover.Target>
|
|
<Popover.Dropdown bg="000" style={{ border: 'none' }}>
|
|
<Suspense fallback={null}>
|
|
<Picker
|
|
data={async () => (await import('@emoji-mart/data')).default}
|
|
onEmojiSelect={handleEmojiSelect}
|
|
perLine={8}
|
|
skinTonePosition="search"
|
|
theme={colorScheme}
|
|
/>
|
|
</Suspense>
|
|
<Button
|
|
variant="default"
|
|
c="gray"
|
|
size="xs"
|
|
style={{
|
|
position: 'absolute',
|
|
zIndex: 2,
|
|
bottom: '1rem',
|
|
right: '1rem',
|
|
}}
|
|
onClick={handleRemoveEmoji}
|
|
>
|
|
Remove
|
|
</Button>
|
|
</Popover.Dropdown>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
export default EmojiPicker;
|