import {
Button,
ButtonGroup,
Icon,
NumericInput,
Spinner,
Tag,
} from "@blueprintjs/core";
const styles = {
container: {
display: "flex",
alignItems: "center",
paddingRight: 5,
marginRight: -15,
},
inputWrapper: {
/**
* As of Feb'22, NumericInput doesn't have `small` prop yet,
* so we instead use `transform` to hack up a slightly smaller input.
*/
transform: "scale(0.9)",
marginLeft: 10,
},
input: {
width: 125,
},
};
/** Possible states of the debug controls component */
type DebugControlsState = "off" | "running" | "paused" | "error";
/** Input field for changing execution interval */
const IntervalInput = (props: {
disabled: boolean;
onChange: (v: number) => void;
}) => {
return (
props.onChange(v)}
rightElement={ms}
allowNumericCharactersOnly
/>
);
};
/** Button for starting code execution */
const RunButton = ({ onClick }: { onClick: () => void }) => (
}
title="Run your code"
>
Run code
);
/** Button group for debugging controls */
const DebugControls = (props: {
state: DebugControlsState;
onPause: () => void;
onResume: () => void;
onStep: () => void;
onStop: () => void;
}) => {
const paused = props.state === "paused" || props.state === "error";
const pauseDisabled = props.state === "error";
const stepDisabled = ["off", "running", "error"].includes(props.state);
return (
}
/>
}
/>
}
/>
);
};
type Props = {
state: DebugControlsState;
onRun: () => void;
onPause: () => void;
onResume: () => void;
onStep: () => void;
onStop: () => void;
onChangeInterval: (value: number) => void;
};
export const ExecutionControls = (props: Props) => {
return (
{props.state === "running" && }
{props.state === "off" ? (
) : (
)}
);
};