tiptap/packages/react/src/NodeViewContent.tsx

26 lines
525 B
TypeScript
Raw Normal View History

import React from 'react'
import { useReactNodeView } from './useReactNodeView'
2021-03-14 23:30:06 +08:00
2021-03-15 04:45:14 +08:00
export interface NodeViewContentProps {
[key: string]: any,
2021-04-08 15:11:45 +08:00
as?: React.ElementType,
2021-03-15 04:45:14 +08:00
}
export const NodeViewContent: React.FC<NodeViewContentProps> = props => {
2021-06-14 22:03:29 +08:00
const Tag = props.as || 'div'
const { nodeViewContentRef } = useReactNodeView()
2021-03-15 04:45:14 +08:00
2021-06-14 22:03:29 +08:00
return (
2021-06-14 22:06:49 +08:00
<Tag
{...props}
ref={nodeViewContentRef}
2021-06-14 22:06:49 +08:00
data-node-view-content=""
style={{
whiteSpace: 'pre-wrap',
...props.style,
2021-06-14 22:06:49 +08:00
}}
/>
2021-06-14 22:03:29 +08:00
)
}