Skip to content

Commit f9539db

Browse files
committed
Use helpers from Contentful
1 parent 1e4fc68 commit f9539db

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

src/rich-text-to-jsx.js

+8-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-use-before-define */
22
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';
44

55
import cx from './lib/cx';
66
import get from './lib/get';
@@ -15,11 +15,6 @@ export const defaultOptions = {
1515
createElement: React.createElement
1616
};
1717

18-
const customBlockNodes = {
19-
[BLOCKS.EMBEDDED_ENTRY]: true,
20-
[BLOCKS.EMBEDDED_ASSET]: true
21-
};
22-
2318
const tagMap = {
2419
[BLOCKS.HEADING_1]: 'h1',
2520
[BLOCKS.HEADING_2]: 'h2',
@@ -40,6 +35,10 @@ const tagMap = {
4035
[MARKS.CODE]: 'code'
4136
};
4237

38+
function isCustom(node) {
39+
return !tagMap[node.nodeType];
40+
}
41+
4342
export default function richTextToJsx(richText, options = {}) {
4443
if (!richText) {
4544
return null;
@@ -61,15 +60,11 @@ export function nodeToJsx(node = {}, options = {}, key) {
6160
return unknownNodeToJsx(node, options, key);
6261
}
6362

64-
const isTextNode = nodeType === 'text';
65-
66-
if (isTextNode) {
63+
if (helpers.isText(node)) {
6764
return textNodeToJsx(node, options, key);
6865
}
6966

70-
const isCustomNode = !tagMap[nodeType];
71-
72-
if (isCustomNode) {
67+
if (isCustom(node)) {
7368
return customNodeToJsx(node, options, key);
7469
}
7570

@@ -123,8 +118,7 @@ export function customNodeToJsx(node, options, key) {
123118

124119
const elementOverrides = overrides[contentType];
125120

126-
const isBlockNode = customBlockNodes[nodeType];
127-
const DefaultElement = isBlockNode ? BlockElement : InlineElement;
121+
const DefaultElement = helpers.isBlock(node) ? BlockElement : InlineElement;
128122
const element = getElement(nodeType, elementOverrides) || DefaultElement;
129123

130124
const props = getProps(nodeType, elementOverrides, {

0 commit comments

Comments
 (0)