Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(theme-classic): move some logic of CodeBlock to theme-common #5922

Merged
merged 2 commits into from
Nov 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/docusaurus-theme-classic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"globby": "^11.0.2",
"infima": "0.2.0-alpha.34",
"lodash": "^4.17.20",
"parse-numeric-range": "^1.3.0",
"postcss": "^8.3.7",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.23.0",
Expand Down
171 changes: 13 additions & 158 deletions packages/docusaurus-theme-classic/src/theme/CodeBlock/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,100 +5,22 @@
* LICENSE file in the root directory of this source tree.
*/

import React, {useEffect, useState, useRef} from 'react';
import React, {useEffect, useState} from 'react';
import clsx from 'clsx';
import Highlight, {defaultProps, Language} from 'prism-react-renderer';
import copy from 'copy-text-to-clipboard';
import rangeParser from 'parse-numeric-range';
import Translate, {translate} from '@docusaurus/Translate';
import {
useThemeConfig,
parseCodeBlockTitle,
parseLanguage,
parseLines,
} from '@docusaurus/theme-common';
import usePrismTheme from '@theme/hooks/usePrismTheme';
import type {Props} from '@theme/CodeBlock';
import Translate, {translate} from '@docusaurus/Translate';

import styles from './styles.module.css';

import {useThemeConfig, parseCodeBlockTitle} from '@docusaurus/theme-common';

const HighlightLinesRangeRegex = /{([\d,-]+)}/;

const HighlightLanguages = ['js', 'jsBlock', 'jsx', 'python', 'html'] as const;
type HighlightLanguage = typeof HighlightLanguages[number];

type HighlightLanguageConfig = {
start: string;
end: string;
};

// Supported types of highlight comments
const HighlightComments: Record<HighlightLanguage, HighlightLanguageConfig> = {
js: {
start: '\\/\\/',
end: '',
},
jsBlock: {
start: '\\/\\*',
end: '\\*\\/',
},
jsx: {
start: '\\{\\s*\\/\\*',
end: '\\*\\/\\s*\\}',
},
python: {
start: '#',
end: '',
},
html: {
start: '<!--',
end: '-->',
},
};

// Supported highlight directives
const HighlightDirectives = [
'highlight-next-line',
'highlight-start',
'highlight-end',
];

const getHighlightDirectiveRegex = (
languages: readonly HighlightLanguage[] = HighlightLanguages,
) => {
// to be more reliable, the opening and closing comment must match
const commentPattern = languages
.map((lang) => {
const {start, end} = HighlightComments[lang];
return `(?:${start}\\s*(${HighlightDirectives.join('|')})\\s*${end})`;
})
.join('|');
// white space is allowed, but otherwise it should be on it's own line
return new RegExp(`^\\s*(?:${commentPattern})\\s*$`);
};

// select comment styles based on language
const highlightDirectiveRegex = (lang: string) => {
switch (lang) {
case 'js':
case 'javascript':
case 'ts':
case 'typescript':
return getHighlightDirectiveRegex(['js', 'jsBlock']);

case 'jsx':
case 'tsx':
return getHighlightDirectiveRegex(['js', 'jsBlock', 'jsx']);

case 'html':
return getHighlightDirectiveRegex(['js', 'jsBlock', 'html']);

case 'python':
case 'py':
return getHighlightDirectiveRegex(['python']);

default:
// all comment types
return getHighlightDirectiveRegex();
}
};

export default function CodeBlock({
children,
className: blockClassName,
Expand All @@ -124,78 +46,16 @@ export default function CodeBlock({
// so we probably don't need to parse the metastring
// (note: title="xyz" => title prop still has the quotes)
const codeBlockTitle = parseCodeBlockTitle(metastring) || title;

const button = useRef(null);
let highlightLines: number[] = [];

const prismTheme = usePrismTheme();

// In case interleaved Markdown (e.g. when using CodeBlock as standalone component).
const content = Array.isArray(children)
? children.join('')
: (children as string);

if (metastring && HighlightLinesRangeRegex.test(metastring)) {
// Tested above
const highlightLinesRange = metastring.match(HighlightLinesRangeRegex)![1];
highlightLines = rangeParser(highlightLinesRange).filter((n) => n > 0);
}

const languageClassName = blockClassName
?.split(' ')
.find((str) => str.startsWith('language-'));
let language = languageClassName?.replace(/language-/, '') as Language;

if (!language && prism.defaultLanguage) {
language = prism.defaultLanguage as Language;
}

// only declaration OR directive highlight can be used for a block
let code = content.replace(/\n$/, '');
if (highlightLines.length === 0 && language !== undefined) {
let range = '';
const directiveRegex = highlightDirectiveRegex(language);
// go through line by line
const lines = content.replace(/\n$/, '').split('\n');
let blockStart: number;
// loop through lines
for (let index = 0; index < lines.length; ) {
const line = lines[index];
// adjust for 0-index
const lineNumber = index + 1;
const match = line.match(directiveRegex);
if (match !== null) {
const directive = match
.slice(1)
.reduce(
(final: string | undefined, item) => final || item,
undefined,
);
switch (directive) {
case 'highlight-next-line':
range += `${lineNumber},`;
break;

case 'highlight-start':
blockStart = lineNumber;
break;

case 'highlight-end':
range += `${blockStart!}-${lineNumber - 1},`;
break;

default:
break;
}
lines.splice(index, 1);
} else {
// lines without directives are unchanged
index += 1;
}
}
highlightLines = rangeParser(range);
code = lines.join('\n');
}
const language =
parseLanguage(blockClassName) ?? (prism.defaultLanguage as Language);
const {highlightLines, code} = parseLines(content, metastring, language);

const handleCopyCode = () => {
copy(code);
Expand All @@ -212,11 +72,7 @@ export default function CodeBlock({
code={code}
language={language}>
{({className, style, tokens, getLineProps, getTokenProps}) => (
<div
className={clsx(
styles.codeBlockContainer,
blockClassName?.replace(/language-[^ ]+/, ''),
)}>
<div className={clsx(styles.codeBlockContainer, blockClassName)}>
{codeBlockTitle && (
<div style={style} className={styles.codeBlockTitle}>
{codeBlockTitle}
Expand All @@ -236,7 +92,7 @@ export default function CodeBlock({

const lineProps = getLineProps({line, key: i});

if (highlightLines.includes(i + 1)) {
if (highlightLines.includes(i)) {
lineProps.className += ' docusaurus-highlight-code-line';
}

Expand All @@ -253,7 +109,6 @@ export default function CodeBlock({
</pre>

<button
ref={button}
type="button"
aria-label={translate({
id: 'theme.CodeBlock.copyButtonAriaLabel',
Expand Down
1 change: 1 addition & 0 deletions packages/docusaurus-theme-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@docusaurus/types": "2.0.0-beta.9",
"clsx": "^1.1.1",
"fs-extra": "^10.0.0",
"parse-numeric-range": "^1.3.0",
"tslib": "^2.3.1",
"utility-types": "^3.10.0"
},
Expand Down
6 changes: 5 additions & 1 deletion packages/docusaurus-theme-common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ export {createStorageSlot, listStorageKeys} from './utils/storageUtils';

export {useAlternatePageUtils} from './utils/useAlternatePageUtils';

export {parseCodeBlockTitle} from './utils/codeBlockUtils';
export {
parseCodeBlockTitle,
parseLanguage,
parseLines,
} from './utils/codeBlockUtils';

export {docVersionSearchTag, DEFAULT_SEARCH_TAG} from './utils/searchUtils';

Expand Down
Loading