esolang/ui/execution-controls.tsx
2021-12-15 22:09:24 +05:30

81 lines
1.8 KiB
TypeScript

import { Button, ButtonGroup, Icon } from "@blueprintjs/core";
const styles = {
container: {
display: "flex",
alignItems: "center",
paddingRight: 5,
},
};
/** Button for starting code execution */
const RunButton = ({ onClick }: { onClick: () => void }) => (
<Button
small
onClick={onClick}
rightIcon={<Icon icon="play" intent="success" />}
>
Run code
</Button>
);
/** Button group for debugging controls */
const DebugControls = (props: {
paused: boolean;
onPause: () => void;
onResume: () => void;
onStep: () => void;
onStop: () => void;
}) => {
return (
<ButtonGroup>
<Button
small
title={props.paused ? "Pause" : "Resume"}
onClick={props.paused ? props.onResume : props.onPause}
icon={<Icon icon={props.paused ? "play" : "pause"} intent="primary" />}
/>
<Button
small
title="Step"
onClick={props.onStep}
disabled={!props.paused}
icon={<Icon icon="step-forward" intent="warning" />}
/>
<Button
small
title="Stop"
onClick={props.onStop}
icon={<Icon icon="stop" intent="danger" />}
/>
</ButtonGroup>
);
};
type Props = {
state: "off" | "running" | "paused";
onRun: () => void;
onPause: () => void;
onResume: () => void;
onStep: () => void;
onStop: () => void;
};
export const ExecutionControls = (props: Props) => {
return (
<div style={styles.container}>
{props.state === "off" ? (
<RunButton onClick={props.onRun} />
) : (
<DebugControls
paused={props.state === "paused"}
onPause={props.onPause}
onResume={props.onResume}
onStep={props.onStep}
onStop={props.onStop}
/>
)}
</div>
);
};