mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 23:05:23 +00:00
* Update 17 files * remove: legacy react devtool * Update 3 files * fix(editor): allow horizontal scroll * Update SandpackRoot.tsx
130 lines
3.8 KiB
TypeScript
130 lines
3.8 KiB
TypeScript
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
import {memo, useRef, useState} from 'react';
|
|
import {flushSync} from 'react-dom';
|
|
import {
|
|
useSandpack,
|
|
useActiveCode,
|
|
SandpackCodeEditor,
|
|
SandpackLayout,
|
|
} from '@codesandbox/sandpack-react/unstyled';
|
|
import cn from 'classnames';
|
|
|
|
import {IconChevron} from 'components/Icon/IconChevron';
|
|
import {NavigationBar} from './NavigationBar';
|
|
import {Preview} from './Preview';
|
|
|
|
import {useSandpackLint} from './useSandpackLint';
|
|
|
|
export const CustomPreset = memo(function CustomPreset({
|
|
providedFiles,
|
|
}: {
|
|
providedFiles: Array<string>;
|
|
}) {
|
|
const {lintErrors, lintExtensions} = useSandpackLint();
|
|
const {sandpack} = useSandpack();
|
|
const {code} = useActiveCode();
|
|
const {activeFile} = sandpack;
|
|
const lineCountRef = useRef<{[key: string]: number}>({});
|
|
if (!lineCountRef.current[activeFile]) {
|
|
lineCountRef.current[activeFile] = code.split('\n').length;
|
|
}
|
|
const lineCount = lineCountRef.current[activeFile];
|
|
const isExpandable = lineCount > 16;
|
|
return (
|
|
<SandboxShell
|
|
providedFiles={providedFiles}
|
|
lintErrors={lintErrors}
|
|
lintExtensions={lintExtensions}
|
|
isExpandable={isExpandable}
|
|
/>
|
|
);
|
|
});
|
|
|
|
const SandboxShell = memo(function SandboxShell({
|
|
providedFiles,
|
|
lintErrors,
|
|
lintExtensions,
|
|
isExpandable,
|
|
}: {
|
|
providedFiles: Array<string>;
|
|
lintErrors: Array<any>;
|
|
lintExtensions: Array<any>;
|
|
isExpandable: boolean;
|
|
}) {
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const [isExpanded, setIsExpanded] = useState(false);
|
|
return (
|
|
<>
|
|
<div
|
|
className="shadow-lg dark:shadow-lg-dark rounded-lg"
|
|
ref={containerRef}
|
|
style={{
|
|
contain: 'content',
|
|
}}>
|
|
<NavigationBar providedFiles={providedFiles} />
|
|
<SandpackLayout
|
|
className={cn(
|
|
!(isExpandable || isExpanded) && 'rounded-b-lg overflow-hidden',
|
|
isExpanded && 'sp-layout-expanded'
|
|
)}>
|
|
<Editor lintExtensions={lintExtensions} />
|
|
<Preview
|
|
className="order-last xl:order-2"
|
|
isExpanded={isExpanded}
|
|
lintErrors={lintErrors}
|
|
/>
|
|
{(isExpandable || isExpanded) && (
|
|
<button
|
|
translate="yes"
|
|
className="sandpack-expand flex text-base justify-between dark:border-card-dark bg-wash dark:bg-card-dark items-center z-10 p-1 w-full order-2 xl:order-last border-b-1 relative top-0"
|
|
onClick={() => {
|
|
const nextIsExpanded = !isExpanded;
|
|
flushSync(() => {
|
|
setIsExpanded(nextIsExpanded);
|
|
});
|
|
if (!nextIsExpanded && containerRef.current !== null) {
|
|
// @ts-ignore
|
|
if (containerRef.current.scrollIntoViewIfNeeded) {
|
|
// @ts-ignore
|
|
containerRef.current.scrollIntoViewIfNeeded();
|
|
} else {
|
|
containerRef.current.scrollIntoView({
|
|
block: 'nearest',
|
|
inline: 'nearest',
|
|
});
|
|
}
|
|
}
|
|
}}>
|
|
<span className="flex p-2 focus:outline-none text-primary dark:text-primary-dark leading-[20px]">
|
|
<IconChevron
|
|
className="inline me-1.5 text-xl"
|
|
displayDirection={isExpanded ? 'up' : 'down'}
|
|
/>
|
|
{isExpanded ? 'Show less' : 'Show more'}
|
|
</span>
|
|
</button>
|
|
)}
|
|
</SandpackLayout>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
const Editor = memo(function Editor({
|
|
lintExtensions,
|
|
}: {
|
|
lintExtensions: Array<any>;
|
|
}) {
|
|
return (
|
|
<SandpackCodeEditor
|
|
showLineNumbers
|
|
showInlineErrors
|
|
showTabs={false}
|
|
showRunButton={false}
|
|
extensions={lintExtensions}
|
|
/>
|
|
);
|
|
});
|