-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathSyntax.tsx
157 lines (136 loc) · 4.07 KB
/
Syntax.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
import React, { useMemo } from 'react';
import { HLJSOptions, HLJSPlugin } from 'highlight.js';
import hljs from 'highlight.js/lib/core'; // Skip highlight's auto-registering
import hljsDefineGraphQL from 'highlightjs-graphql';
import { css, cx } from '@leafygreen-ui/emotion';
import {
useBaseFontSize,
useDarkMode,
} from '@leafygreen-ui/leafygreen-provider';
import { fontFamilies, typeScales } from '@leafygreen-ui/tokens';
import { injectGlobalStyles } from '../globalStyles';
import { LeafyGreenHighlightResult } from '../highlight';
import { languageParsers, SupportedLanguages } from '../languages';
import renderingPlugin, {
TableContent,
} from '../renderingPlugin/renderingPlugin';
import { SyntaxContext } from '../Syntax/SyntaxContext';
import { Language } from '../types';
import { SyntaxProps } from '..';
type FilteredSupportedLanguagesEnum = Omit<
typeof SupportedLanguages,
// Aliases for languages
'Cs' | 'JS' | 'TS'
>;
type FilteredSupportedLanguages =
FilteredSupportedLanguagesEnum[keyof FilteredSupportedLanguagesEnum];
function filterSupportedLanguages(
language: SupportedLanguages,
): language is FilteredSupportedLanguages {
return language !== 'cs' && language !== 'js' && language !== 'ts';
}
let syntaxHighlightingInitialized = false;
function initializeSyntaxHighlighting() {
syntaxHighlightingInitialized = true;
injectGlobalStyles();
// We filter out 'cs' here because it's redundant with 'csharp' and 'js' because it's redundant with 'javascript'
const SupportedLanguagesList = Object.values(SupportedLanguages).filter(
filterSupportedLanguages,
);
SupportedLanguagesList.forEach(language => {
if (language === 'graphql') {
hljsDefineGraphQL(hljs);
} else {
hljs.registerLanguage(language, languageParsers[language]);
}
});
hljs.configure({
languages: SupportedLanguagesList,
tabReplace: ' ',
} as Partial<HLJSOptions>);
hljs.addPlugin(renderingPlugin as HLJSPlugin);
}
const codeStyles = css`
color: inherit;
font-family: ${fontFamilies.code};
`;
/**
* @internal
*/
function Syntax({
children,
language,
showLineNumbers = false,
lineNumberStart,
highlightLines = [],
className,
...rest
}: SyntaxProps) {
if (!syntaxHighlightingInitialized) {
initializeSyntaxHighlighting();
}
const highlightedContent: LeafyGreenHighlightResult | null = useMemo(() => {
if (language === Language.None) {
return null;
}
return hljs.highlight(children, {
language,
ignoreIllegals: true,
}) as LeafyGreenHighlightResult;
}, [language, children]);
const content =
highlightedContent === null ? (
// We create a similar data structure to the rendering plugin so that we can generate
// a table that's identical when the plugin isn't being used.
<TableContent
lines={children.split('\n').map(item => (item ? [item] : []))}
/>
) : (
highlightedContent.react
// highlightedContent.string
);
const { theme, darkMode } = useDarkMode();
const baseFontSize = useBaseFontSize();
// TODO: remove 14 check when useBaseFontSize is updated
const typeScale = baseFontSize === 14 ? typeScales.code1 : typeScales.code2;
const codeFontStyles = css`
font-size: ${typeScale.fontSize}px;
line-height: ${typeScale.lineHeight}px;
`;
return (
<SyntaxContext.Provider
value={{
highlightLines,
showLineNumbers,
lineNumberStart,
darkMode,
}}
>
<code
{...rest}
className={cx(
`lg-highlight-hljs-${theme}`,
codeStyles,
codeFontStyles,
language,
className,
)}
>
<table
className={css`
border-spacing: 0;
`}
>
<tbody>{content}</tbody>
{/* {language === Language.None ? (
<tbody>{content}</tbody>
) : (
<tbody dangerouslySetInnerHTML={{ __html: content }} />
)} */}
</table>
</code>
</SyntaxContext.Provider>
);
}
Syntax.displayName = 'Syntax';
export default Syntax;