-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathParsedHtml.tsx
258 lines (225 loc) · 8.32 KB
/
ParsedHtml.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import React, { Fragment } from 'react';
import { Provider } from 'react-redux';
import ReactDOMServer from 'react-dom/server';
import { isTag, isText } from 'domhandler';
import htmlReactParser, {
Element,
domToReact,
attributesToProps,
DOMNode,
HTMLReactParserOptions,
} from 'html-react-parser';
import { BodyLong, Heading } from '@navikt/ds-react';
import { store } from 'store/store';
import { usePageContentProps } from 'store/pageContext';
import { NextImage } from 'components/_common/image/NextImage';
import { getMediaUrl } from 'utils/urls';
import { processedHtmlMacroTag, ProcessedHtmlProps } from 'types/processed-html-props';
import { headingToLevel, headingToSize, isHeadingTag } from 'types/typo-style';
import { MacroType } from 'types/macro-props/_macros-common';
import { MacroMapper } from 'components/macros/MacroMapper';
import { EditorHelp } from 'components/_editor-only/editor-help/EditorHelp';
import { LenkeInline } from 'components/_common/lenke/lenkeInline/LenkeInline';
import { Table } from 'components/_common/table/Table';
const blockLevelMacros: ReadonlySet<string> = new Set([
MacroType.AlertBox,
MacroType.HeaderWithAnchor,
MacroType.HtmlFragment,
MacroType.InfoBoks,
MacroType.Ingress,
MacroType.ProductCardMini,
MacroType.ProductCardMicro,
MacroType.Quote,
MacroType.VarselBoks,
MacroType.Video,
MacroType.FormDetails,
]);
const hasBlockLevelMacroChildren = (element: Element) => {
return element.children?.some(
(child) =>
isTag(child) &&
child.name === processedHtmlMacroTag &&
blockLevelMacros.has(child.attribs?.['data-macro-name'])
);
};
const getNonEmptyChildren = ({ children }: Element): Element['children'] => {
if (!children) {
return [];
}
return children.filter((child) => {
if (isTag(child)) {
// Macros and image tags are allowed to be empty
if (
child.name === processedHtmlMacroTag ||
(child.name === 'img' && child.attribs?.src)
) {
return true;
}
const grandChildren = getNonEmptyChildren(child);
return grandChildren.length > 0;
}
if (isText(child)) {
const stringData = child.data?.replace?.(/ /g, ' ').trim();
return !!stringData;
}
return true;
});
};
type Props = {
htmlProps: ProcessedHtmlProps | string;
};
export const ParsedHtml = ({ htmlProps }: Props) => {
const { editorView, language } = usePageContentProps();
if (!htmlProps) {
return null;
}
const { processedHtml, macros } =
typeof htmlProps === 'string' ? { processedHtml: htmlProps, macros: [] } : htmlProps;
if (!processedHtml) {
return null;
}
// TODO: refactor this mess :D
const parserOptions: HTMLReactParserOptions = {
replace: (element: DOMNode) => {
if (!isTag(element)) {
return undefined;
}
const { name, attribs, children } = element;
const tag = name?.toLowerCase();
//Remove all inline styling except in table cells
if (tag !== 'td') {
delete attribs?.style;
}
const domNodes = children as DOMNode[];
const props = !!attribs && attributesToProps(attribs);
const validChildren = getNonEmptyChildren(element) as DOMNode[];
const tagIsEmpty = validChildren.length === 0;
// Handle macros
if (tag === processedHtmlMacroTag) {
return (
<MacroMapper
key={attribs?.['data-macro-ref']}
macros={macros}
macroRef={attribs?.['data-macro-ref']}
/>
);
}
// Remove img without src
if (tag === 'img') {
if (!attribs?.src) {
return <Fragment />;
}
return (
<NextImage
{...props}
alt={attribs.alt || ''}
src={getMediaUrl(attribs.src, !!editorView, language)}
/>
);
}
// Fix header-tags
if (isHeadingTag(tag)) {
// Header-tags should not be used as empty spacers
if (tagIsEmpty) {
return <p>{''}</p>;
}
const level = tag === 'h1' ? '2' : headingToLevel[tag]; //Level 1 reserved for page heading
const size = headingToSize[tag];
// Ignore heading-tag if it contains a macro
if (hasBlockLevelMacroChildren(element)) {
return <>{domToReact(domNodes, parserOptions)}</>;
}
return (
// H1 tags should only be used for the page heading
<Heading {...props} size={size} level={level} spacing>
{domToReact(validChildren, parserOptions)}
</Heading>
);
}
// Handle paragraphs
if (tag === 'p' && children) {
// Block level elements should not be nested under inline elements
if (hasBlockLevelMacroChildren(element)) {
return <>{domToReact(domNodes, parserOptions)}</>;
}
return (
<BodyLong spacing {...props} className={undefined}>
{domToReact(domNodes, parserOptions)}
</BodyLong>
);
}
// Remove underline
if (tag === 'u') {
if (!children) {
return <Fragment />;
}
return <>{domToReact(domNodes, parserOptions)}</>;
}
// Handle links
if (tag === 'a') {
if (tagIsEmpty || typeof props.href !== 'string') {
return <Fragment />;
}
return (
<LenkeInline
{...props}
href={props.href}
style={undefined}
className={undefined}
>
{domToReact(validChildren, parserOptions)}
</LenkeInline>
);
}
// Remove empty lists and other tags that should not be empty
switch (tag) {
case 'ul':
case 'ol':
case 'dl':
case 'div':
case 'thead':
if (tagIsEmpty) {
return <Fragment />;
}
break;
}
// Handle li - remove if empty
if (tag === 'li') {
if (tagIsEmpty) {
return <Fragment />;
}
return (
<BodyLong {...props} as={'li'}>
{domToReact(validChildren, parserOptions)}
</BodyLong>
);
}
// Table class fix, excluding large-table (statistics pages)
if (tag === 'table' && attribs?.class !== 'statTab') {
return <Table>{domToReact(validChildren, parserOptions)}</Table>;
}
// Replace empty rows with stylable element
if (tag === 'tr' && tagIsEmpty) {
return <tr {...props} role="none" className={'spacer-row'} />;
}
},
};
const htmlParsed = htmlReactParser(processedHtml, parserOptions);
// If the html renders to an empty string (or whitespace only), show an
// error message in the editor
if (editorView === 'edit') {
const htmlRaw = ReactDOMServer.renderToStaticMarkup(
<Provider store={store}>{htmlParsed}</Provider>
).trim();
if (!htmlRaw) {
return (
<EditorHelp
text={"HTML'en er tom eller inneholder feil."}
globalWarningText={'Feil på riktekst/HTML-komponent'}
type={'error'}
/>
);
}
}
return <>{htmlParsed}</>;
};