mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-08 22:21:07 +00:00
114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
|
|
import type { PlateContentProps } from '@udecode/plate-common/react';
|
|
import type { VariantProps } from 'class-variance-authority';
|
|
|
|
import { cn } from '@udecode/cn';
|
|
import {
|
|
PlateContent,
|
|
useEditorContainerRef,
|
|
useEditorRef,
|
|
} from '@udecode/plate-common/react';
|
|
import { cva } from 'class-variance-authority';
|
|
|
|
const editorContainerVariants = cva(
|
|
'relative w-full cursor-text overflow-y-auto caret-primary selection:bg-brand/25 [&_.slate-selection-area]:border [&_.slate-selection-area]:border-brand/25 [&_.slate-selection-area]:bg-brand/15',
|
|
{
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
},
|
|
variants: {
|
|
variant: {
|
|
default: 'h-full',
|
|
demo: 'h-[650px]',
|
|
},
|
|
},
|
|
}
|
|
);
|
|
|
|
export const EditorContainer = ({
|
|
className,
|
|
variant,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLDivElement> &
|
|
VariantProps<typeof editorContainerVariants>) => {
|
|
const editor = useEditorRef();
|
|
const containerRef = useEditorContainerRef();
|
|
|
|
return (
|
|
<div
|
|
id={editor.uid}
|
|
ref={containerRef}
|
|
className={cn(
|
|
'ignore-click-outside/toolbar',
|
|
editorContainerVariants({ variant }),
|
|
className
|
|
)}
|
|
role="button"
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
EditorContainer.displayName = 'EditorContainer';
|
|
|
|
const editorVariants = cva(
|
|
cn(
|
|
'group/editor',
|
|
'relative w-full overflow-x-hidden whitespace-pre-wrap break-words',
|
|
'rounded-md ring-offset-background placeholder:text-muted-foreground/80 focus-visible:outline-none',
|
|
'[&_[data-slate-placeholder]]:text-muted-foreground/80 [&_[data-slate-placeholder]]:!opacity-100',
|
|
'[&_[data-slate-placeholder]]:top-[auto_!important]',
|
|
'[&_strong]:font-bold'
|
|
),
|
|
{
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
},
|
|
variants: {
|
|
disabled: {
|
|
true: 'cursor-not-allowed opacity-50',
|
|
},
|
|
focused: {
|
|
true: 'ring-2 ring-ring ring-offset-2',
|
|
},
|
|
variant: {
|
|
ai: 'w-full px-0 text-sm',
|
|
aiChat:
|
|
'max-h-[min(70vh,320px)] w-full max-w-[700px] overflow-y-auto px-3 py-2 text-sm',
|
|
default:
|
|
'size-full px-16 pb-72 pt-4 text-base sm:px-[max(64px,calc(50%-350px))]',
|
|
demo: 'size-full px-16 pb-72 pt-4 text-base sm:px-[max(64px,calc(50%-350px))]',
|
|
fullWidth: 'size-full px-16 pb-72 pt-4 text-base sm:px-24',
|
|
},
|
|
},
|
|
}
|
|
);
|
|
|
|
export type EditorProps = PlateContentProps &
|
|
VariantProps<typeof editorVariants>;
|
|
|
|
export const Editor = React.forwardRef<HTMLDivElement, EditorProps>(
|
|
({ className, disabled, focused, variant, ...props }, ref) => {
|
|
return (
|
|
<PlateContent
|
|
ref={ref}
|
|
className={cn(
|
|
editorVariants({
|
|
disabled,
|
|
focused,
|
|
variant,
|
|
}),
|
|
className
|
|
)}
|
|
disabled={disabled}
|
|
disableDefaultStyles
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
|
|
Editor.displayName = 'Editor';
|