1
1
/* eslint-disable no-use-before-define */
2
2
import React from 'react' ;
3
- import { BLOCKS , INLINES , MARKS } from '@contentful/rich-text-types' ;
3
+ import { BLOCKS , INLINES , MARKS , helpers } from '@contentful/rich-text-types' ;
4
4
5
5
import cx from './lib/cx' ;
6
6
import get from './lib/get' ;
@@ -15,11 +15,6 @@ export const defaultOptions = {
15
15
createElement : React . createElement
16
16
} ;
17
17
18
- const customBlockNodes = {
19
- [ BLOCKS . EMBEDDED_ENTRY ] : true ,
20
- [ BLOCKS . EMBEDDED_ASSET ] : true
21
- } ;
22
-
23
18
const tagMap = {
24
19
[ BLOCKS . HEADING_1 ] : 'h1' ,
25
20
[ BLOCKS . HEADING_2 ] : 'h2' ,
@@ -40,6 +35,10 @@ const tagMap = {
40
35
[ MARKS . CODE ] : 'code'
41
36
} ;
42
37
38
+ function isCustom ( node ) {
39
+ return ! tagMap [ node . nodeType ] ;
40
+ }
41
+
43
42
export default function richTextToJsx ( richText , options = { } ) {
44
43
if ( ! richText ) {
45
44
return null ;
@@ -61,15 +60,11 @@ export function nodeToJsx(node = {}, options = {}, key) {
61
60
return unknownNodeToJsx ( node , options , key ) ;
62
61
}
63
62
64
- const isTextNode = nodeType === 'text' ;
65
-
66
- if ( isTextNode ) {
63
+ if ( helpers . isText ( node ) ) {
67
64
return textNodeToJsx ( node , options , key ) ;
68
65
}
69
66
70
- const isCustomNode = ! tagMap [ nodeType ] ;
71
-
72
- if ( isCustomNode ) {
67
+ if ( isCustom ( node ) ) {
73
68
return customNodeToJsx ( node , options , key ) ;
74
69
}
75
70
@@ -123,8 +118,7 @@ export function customNodeToJsx(node, options, key) {
123
118
124
119
const elementOverrides = overrides [ contentType ] ;
125
120
126
- const isBlockNode = customBlockNodes [ nodeType ] ;
127
- const DefaultElement = isBlockNode ? BlockElement : InlineElement ;
121
+ const DefaultElement = helpers . isBlock ( node ) ? BlockElement : InlineElement ;
128
122
const element = getElement ( nodeType , elementOverrides ) || DefaultElement ;
129
123
130
124
const props = getProps ( nodeType , elementOverrides , {
0 commit comments