77 lines
1.7 KiB
TypeScript
77 lines
1.7 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;
|
|
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"
|
|
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;
|
|
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}
|
|
onStop={props.onStop}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|