30 lines
885 B
TypeScript
30 lines
885 B
TypeScript
|
import Mention from '@tiptap/extension-mention'
|
||
|
import {
|
||
|
mergeAttributes,
|
||
|
NodeViewWrapper,
|
||
|
ReactNodeViewRenderer,
|
||
|
} from '@tiptap/react'
|
||
|
import clsx from 'clsx'
|
||
|
import { Linkify } from '../linkify'
|
||
|
|
||
|
const name = 'mention-component'
|
||
|
|
||
|
const MentionComponent = (props: any) => {
|
||
|
return (
|
||
|
<NodeViewWrapper className={clsx(name, 'not-prose inline text-indigo-700')}>
|
||
|
<Linkify text={'@' + props.node.attrs.label} />
|
||
|
</NodeViewWrapper>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Mention extension that renders React. See:
|
||
|
* https://tiptap.dev/guide/custom-extensions#extend-existing-extensions
|
||
|
* https://tiptap.dev/guide/node-views/react#render-a-react-component
|
||
|
*/
|
||
|
export const DisplayMention = Mention.extend({
|
||
|
parseHTML: () => [{ tag: name }],
|
||
|
renderHTML: ({ HTMLAttributes }) => [name, mergeAttributes(HTMLAttributes)],
|
||
|
addNodeView: () => ReactNodeViewRenderer(MentionComponent),
|
||
|
})
|