import { Card, Colors, Icon, IconName } from "@blueprintjs/core"; import { RendererProps } from "../types"; import { Bfg93Direction, Bfg93RS } from "./constants"; /** Common border color for dark and light, using transparency */ export const BorderColor = Colors.GRAY3 + "55"; const styles = { placeholderDiv: { height: "100%", width: "100%", display: "flex", justifyContent: "center", alignItems: "center", fontSize: "1.2em", }, rootContainer: { height: "100%", display: "flex", flexDirection: "column" as "column", }, dirnContainer: { borderBottom: "1px solid " + BorderColor, padding: "5px 10px", }, stackContainer: { padding: 10, height: "100%", display: "flex", flexWrap: "wrap" as "wrap", alignContent: "flex-start", overflowY: "auto" as "auto", }, stackItem: { // Sizing width: "10%", height: "40px", margin: "5px 0.25%", // Center-align values display: "flex", justifyContent: "center", alignItems: "center", }, }; const DirectionIcons: { [k: string]: IconName } = { [Bfg93Direction.RIGHT]: "arrow-right", [Bfg93Direction.LEFT]: "arrow-left", [Bfg93Direction.UP]: "arrow-up", [Bfg93Direction.DOWN]: "arrow-down", }; const StackItem = ({ value }: { value: number }) => { const cellStyle = { ...styles.stackItem }; return {value}; }; export const Renderer = ({ state }: RendererProps) => { if (state == null) return Run some code...; return ( Direction: {/* */} String mode:{" "} {state.strMode ? "ON" : "OFF"} {state.stack.map((value, idx) => ( ))} ); };