mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure the following is done: 1. Fork [the repository](https://github.com/facebook/react) and create your branch from `main`. 2. Run `yarn` in the repository root. 3. If you've fixed a bug or added code that should be tested, add tests! 4. Ensure the test suite passes (`yarn test`). Tip: `yarn test --watch TestName` is helpful in development. 5. Run `yarn test --prod` to test in the production environment. It supports the same options as `yarn test`. 6. If you need a debugger, run `yarn test --debug --watch TestName`, open `chrome://inspect`, and press "Inspect". 7. Format your code with [prettier](https://github.com/prettier/prettier) (`yarn prettier`). 8. Make sure your code lints (`yarn lint`). Tip: `yarn linc` to only check changed files. 9. Run the [Flow](https://flowtype.org/) type checks (`yarn flow`). 10. If you haven't already, complete the CLA. Learn more about contributing: https://reactjs.org/docs/how-to-contribute.html --> ## Summary <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> Introduced `<ViewTransition>` to the React Compiler Playground. Added an initial animation on the config panel opening/closing to allow for a smoother visual experience. Previously, the panel would flash in and out of the screen upon open/close. ## How did you test this change? <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes the user interface. How exactly did you verify that your PR solves the issue you wanted to solve? If you leave this empty, your PR will very likely be closed. --> https://github.com/user-attachments/assets/9dc77a6b-d4a5-4a7a-9d81-007ebb55e8d2
241 lines
7.6 KiB
TypeScript
241 lines
7.6 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';
|
|
import {PluginOptions} from 'babel-plugin-react-compiler';
|
|
import type {editor} from 'monaco-editor';
|
|
import * as monaco from 'monaco-editor';
|
|
import React, {
|
|
useState,
|
|
useRef,
|
|
unstable_ViewTransition as ViewTransition,
|
|
unstable_addTransitionType as addTransitionType,
|
|
startTransition,
|
|
} from 'react';
|
|
import {Resizable} from 're-resizable';
|
|
import {useStore, useStoreDispatch} from '../StoreContext';
|
|
import {monacoOptions} from './monacoOptions';
|
|
import {IconChevron} from '../Icons/IconChevron';
|
|
import prettyFormat from 'pretty-format';
|
|
import {CONFIG_PANEL_TRANSITION} from '../../lib/transitionTypes';
|
|
|
|
// @ts-expect-error - webpack asset/source loader handles .d.ts files as strings
|
|
import compilerTypeDefs from 'babel-plugin-react-compiler/dist/index.d.ts';
|
|
|
|
loader.config({monaco});
|
|
|
|
export default function ConfigEditor({
|
|
appliedOptions,
|
|
}: {
|
|
appliedOptions: PluginOptions | null;
|
|
}): React.ReactElement {
|
|
const [isExpanded, setIsExpanded] = useState(false);
|
|
|
|
return (
|
|
// TODO: Use <Activity> when it is compatible with Monaco: https://github.com/suren-atoyan/monaco-react/issues/753
|
|
<>
|
|
<div
|
|
style={{
|
|
display: isExpanded ? 'block' : 'none',
|
|
}}>
|
|
<ExpandedEditor
|
|
onToggle={() => {
|
|
startTransition(() => {
|
|
addTransitionType(CONFIG_PANEL_TRANSITION);
|
|
setIsExpanded(false);
|
|
});
|
|
}}
|
|
appliedOptions={appliedOptions}
|
|
/>
|
|
</div>
|
|
<div
|
|
style={{
|
|
display: !isExpanded ? 'block' : 'none',
|
|
}}>
|
|
<CollapsedEditor
|
|
onToggle={() => {
|
|
startTransition(() => {
|
|
addTransitionType(CONFIG_PANEL_TRANSITION);
|
|
setIsExpanded(true);
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function ExpandedEditor({
|
|
onToggle,
|
|
appliedOptions,
|
|
}: {
|
|
onToggle: () => void;
|
|
appliedOptions: PluginOptions | null;
|
|
}): React.ReactElement {
|
|
const store = useStore();
|
|
const dispatchStore = useStoreDispatch();
|
|
const debounceTimerRef = useRef<NodeJS.Timeout | null>(null);
|
|
|
|
const handleChange: (value: string | undefined) => void = (
|
|
value: string | undefined,
|
|
) => {
|
|
if (value === undefined) return;
|
|
|
|
if (debounceTimerRef.current) {
|
|
clearTimeout(debounceTimerRef.current);
|
|
}
|
|
|
|
debounceTimerRef.current = setTimeout(() => {
|
|
dispatchStore({
|
|
type: 'updateConfig',
|
|
payload: {
|
|
config: value,
|
|
},
|
|
});
|
|
}, 500); // 500ms debounce delay
|
|
};
|
|
|
|
const handleMount: (
|
|
_: editor.IStandaloneCodeEditor,
|
|
monaco: Monaco,
|
|
) => void = (_, monaco) => {
|
|
// Add the babel-plugin-react-compiler type definitions to Monaco
|
|
monaco.languages.typescript.typescriptDefaults.addExtraLib(
|
|
//@ts-expect-error - compilerTypeDefs is a string
|
|
compilerTypeDefs,
|
|
'file:///node_modules/babel-plugin-react-compiler/dist/index.d.ts',
|
|
);
|
|
monaco.languages.typescript.typescriptDefaults.setCompilerOptions({
|
|
target: monaco.languages.typescript.ScriptTarget.Latest,
|
|
allowNonTsExtensions: true,
|
|
moduleResolution: monaco.languages.typescript.ModuleResolutionKind.NodeJs,
|
|
module: monaco.languages.typescript.ModuleKind.ESNext,
|
|
noEmit: true,
|
|
strict: false,
|
|
esModuleInterop: true,
|
|
allowSyntheticDefaultImports: true,
|
|
jsx: monaco.languages.typescript.JsxEmit.React,
|
|
});
|
|
};
|
|
|
|
const formattedAppliedOptions = appliedOptions
|
|
? prettyFormat(appliedOptions, {
|
|
printFunctionName: false,
|
|
printBasicPrototype: false,
|
|
})
|
|
: 'Invalid configs';
|
|
|
|
return (
|
|
<ViewTransition
|
|
update={{[CONFIG_PANEL_TRANSITION]: 'slide-in', default: 'none'}}>
|
|
<Resizable
|
|
minWidth={300}
|
|
maxWidth={600}
|
|
defaultSize={{width: 350}}
|
|
enable={{right: true, bottom: false}}>
|
|
<div className="bg-blue-10 relative h-full flex flex-col !h-[calc(100vh_-_3.5rem)] border border-gray-300">
|
|
<div
|
|
className="absolute w-8 h-16 bg-blue-10 rounded-r-full flex items-center justify-center z-[2] cursor-pointer border border-l-0 border-gray-300"
|
|
title="Minimize config editor"
|
|
onClick={onToggle}
|
|
style={{
|
|
top: '50%',
|
|
marginTop: '-32px',
|
|
right: '-32px',
|
|
borderTopLeftRadius: 0,
|
|
borderBottomLeftRadius: 0,
|
|
}}>
|
|
<IconChevron displayDirection="left" className="text-blue-50" />
|
|
</div>
|
|
|
|
<div className="flex-1 flex flex-col m-2 mb-2">
|
|
<div className="pb-2">
|
|
<h2 className="inline-block text-blue-50 py-1.5 px-1.5 xs:px-3 sm:px-4 text-sm">
|
|
Config Overrides
|
|
</h2>
|
|
</div>
|
|
<div className="flex-1 rounded-lg overflow-hidden border border-gray-300">
|
|
<MonacoEditor
|
|
path={'config.ts'}
|
|
language={'typescript'}
|
|
value={store.config}
|
|
onMount={handleMount}
|
|
onChange={handleChange}
|
|
loading={''}
|
|
className="monaco-editor-config"
|
|
options={{
|
|
...monacoOptions,
|
|
lineNumbers: 'off',
|
|
renderLineHighlight: 'none',
|
|
overviewRulerBorder: false,
|
|
overviewRulerLanes: 0,
|
|
fontSize: 12,
|
|
scrollBeyondLastLine: false,
|
|
glyphMargin: false,
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="flex-1 flex flex-col m-2">
|
|
<div className="pb-2">
|
|
<h2 className="inline-block text-blue-50 py-1.5 px-1.5 xs:px-3 sm:px-4 text-sm">
|
|
Applied Configs
|
|
</h2>
|
|
</div>
|
|
<div className="flex-1 rounded-lg overflow-hidden border border-gray-300">
|
|
<MonacoEditor
|
|
path={'applied-config.js'}
|
|
language={'javascript'}
|
|
value={formattedAppliedOptions}
|
|
loading={''}
|
|
className="monaco-editor-applied-config"
|
|
options={{
|
|
...monacoOptions,
|
|
lineNumbers: 'off',
|
|
renderLineHighlight: 'none',
|
|
overviewRulerBorder: false,
|
|
overviewRulerLanes: 0,
|
|
fontSize: 12,
|
|
scrollBeyondLastLine: false,
|
|
readOnly: true,
|
|
glyphMargin: false,
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Resizable>
|
|
</ViewTransition>
|
|
);
|
|
}
|
|
|
|
function CollapsedEditor({
|
|
onToggle,
|
|
}: {
|
|
onToggle: () => void;
|
|
}): React.ReactElement {
|
|
return (
|
|
<div
|
|
className="w-4 !h-[calc(100vh_-_3.5rem)]"
|
|
style={{position: 'relative'}}>
|
|
<div
|
|
className="absolute w-10 h-16 bg-blue-10 hover:translate-x-2 transition-transform rounded-r-full flex items-center justify-center z-[2] cursor-pointer border border-gray-300"
|
|
title="Expand config editor"
|
|
onClick={onToggle}
|
|
style={{
|
|
top: '50%',
|
|
marginTop: '-32px',
|
|
left: '-8px',
|
|
borderTopLeftRadius: 0,
|
|
borderBottomLeftRadius: 0,
|
|
}}>
|
|
<IconChevron displayDirection="right" className="text-blue-50" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|