mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
30 lines
965 B
TypeScript
30 lines
965 B
TypeScript
|
import React from "react";
|
||
|
// editor
|
||
|
import { EditorReadOnlyRefApi, ILiteTextReadOnlyEditor, LiteTextReadOnlyEditorWithRef } from "@plane/lite-text-editor";
|
||
|
// helpers
|
||
|
import { cn } from "@/helpers/common.helper";
|
||
|
// hooks
|
||
|
import { useMention } from "@/hooks/store";
|
||
|
|
||
|
interface LiteTextReadOnlyEditorWrapperProps extends Omit<ILiteTextReadOnlyEditor, "mentionHandler"> {}
|
||
|
|
||
|
export const LiteTextReadOnlyEditor = React.forwardRef<EditorReadOnlyRefApi, LiteTextReadOnlyEditorWrapperProps>(
|
||
|
({ ...props }, ref) => {
|
||
|
const { mentionHighlights } = useMention({});
|
||
|
|
||
|
return (
|
||
|
<LiteTextReadOnlyEditorWithRef
|
||
|
ref={ref}
|
||
|
mentionHandler={{
|
||
|
highlights: mentionHighlights,
|
||
|
}}
|
||
|
{...props}
|
||
|
// overriding the containerClassName to add relative class passed
|
||
|
containerClassName={cn(props.containerClassName, "relative p-2")}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
);
|
||
|
|
||
|
LiteTextReadOnlyEditor.displayName = "LiteTextReadOnlyEditor";
|