mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 09:25:47 +01:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { HoverCard, useMantineTheme} from '@mantine/core';
|
|
import { RichTextEditor, Link } from '@mantine/tiptap';
|
|
import { useEditor } from '@tiptap/react';
|
|
import StarterKit from '@tiptap/starter-kit';
|
|
import { IconInfoCircle } from '@tabler/icons-react';
|
|
|
|
interface InfoCardProps {
|
|
content: string;
|
|
}
|
|
|
|
export const InfoCard = ({ content }: InfoCardProps) => {
|
|
const { colorScheme } = useMantineTheme();
|
|
const editor = useEditor({
|
|
content,
|
|
editable: false,
|
|
editorProps:{ attributes:{ style: 'padding: 0;' }, },
|
|
extensions: [
|
|
StarterKit,
|
|
Link,
|
|
],
|
|
});
|
|
|
|
return (
|
|
<HoverCard withinPortal position="top">
|
|
<HoverCard.Target>
|
|
<IconInfoCircle size="1.25rem" style={{ display: 'block', opacity: 0.5 }} />
|
|
</HoverCard.Target>
|
|
<HoverCard.Dropdown
|
|
c='transparent'
|
|
maw={400}
|
|
p={0}
|
|
style={{ border:"0", }}
|
|
>
|
|
<RichTextEditor editor={editor}>
|
|
<RichTextEditor.Content
|
|
bg={colorScheme === 'light' ? "gray.2" : "dark.8"}
|
|
px="10px"
|
|
py="5px"
|
|
/>
|
|
</RichTextEditor>
|
|
</HoverCard.Dropdown>
|
|
</HoverCard>
|
|
)
|
|
}; |