mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-20 01:58:34 +00:00
27 lines
1013 B
JavaScript
27 lines
1013 B
JavaScript
import Loader from '@src/repl/components/Loader';
|
|
import { HorizontalPanel } from '@src/repl/components/panel/Panel';
|
|
import { Code } from '@src/repl/components/Code';
|
|
import BigPlayButton from '@src/repl/components/BigPlayButton';
|
|
import UserFacingErrorMessage from '@src/repl/components/UserFacingErrorMessage';
|
|
|
|
// type Props = {
|
|
// context: replcontext,
|
|
// }
|
|
|
|
export default function UdelsEditor(Props) {
|
|
const { context, ...editorProps } = Props;
|
|
const { containerRef, editorRef, error, init, pending, started, handleTogglePlay } = context;
|
|
|
|
return (
|
|
<div className={'h-full flex w-full flex-col relative'} {...editorProps}>
|
|
<Loader active={pending} />
|
|
<BigPlayButton started={started} handleTogglePlay={handleTogglePlay} />
|
|
<div className="grow flex relative overflow-hidden">
|
|
<Code containerRef={containerRef} editorRef={editorRef} init={init} />
|
|
</div>
|
|
<UserFacingErrorMessage error={error} />
|
|
<HorizontalPanel context={context} />
|
|
</div>
|
|
);
|
|
}
|