tiptap/packages/react/src/NodeViewContent.tsx

20 lines
440 B
TypeScript
Raw Normal View History

2021-03-14 23:30:06 +08:00
import React from 'react'
2021-03-15 03:40:40 +08:00
import { useReactNodeView } from './useReactNodeView'
2021-03-14 23:30:06 +08:00
2021-03-15 04:45:14 +08:00
export interface NodeViewContentProps {
as: React.ElementType
}
export const NodeViewContent: React.FC<NodeViewContentProps> = props => {
2021-03-15 03:40:40 +08:00
const { isEditable } = useReactNodeView()
2021-03-15 04:45:14 +08:00
const Tag = props.as || 'div'
2021-03-14 23:30:06 +08:00
return (
2021-03-15 04:45:14 +08:00
<Tag
2021-03-14 23:30:06 +08:00
data-node-view-content=""
contentEditable={isEditable}
2021-03-15 05:41:25 +08:00
style={{ whiteSpace: 'pre-wrap' }}
2021-03-14 23:30:06 +08:00
/>
)
}