-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathSimulator.tsx
169 lines (160 loc) · 4.85 KB
/
Simulator.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/**
* (c) 2022, Micro:bit Educational Foundation and contributors
*
* SPDX-License-Identifier: MIT
*/
import {
AspectRatio,
Box,
Flex,
usePrevious,
useToken,
VStack,
} from "@chakra-ui/react";
import { useEffect, useMemo, useRef, useState } from "react";
import { IntlShape, useIntl } from "react-intl";
import HideSplitViewButton from "../common/SplitView/HideSplitViewButton";
import { topBarHeight } from "../deployment/misc";
import { DeviceContextProvider } from "../device/device-hooks";
import { SimulatorDeviceConnection } from "../device/simulator";
// import { stage } from "../environment";
import { useLogging } from "../logging/logging-hooks";
import SimulatorActionBar from "./SimulatorActionBar";
import SimulatorSplitView from "./SimulatorSplitView";
import SimSerialTabControlProvider from "./tab-control-hooks";
export enum RunningStatus {
RUNNING,
STOPPED,
}
interface SimulatorProps {
shown: boolean;
onSimulatorHide: () => void;
showSimulatorButtonRef: React.RefObject<HTMLButtonElement>;
minWidth: number;
simFocus: boolean;
}
const Simulator = ({
shown,
onSimulatorHide,
showSimulatorButtonRef,
minWidth,
simFocus,
}: SimulatorProps) => {
const [brand500] = useToken("colors", ["brand.500"]);
const url = useMemo(() => {
//const production =
// "https://python-simulator.usermbit.org/v/0.1/simulator.html";
//const staging =
// "https://python-simulator.usermbit.org/staging/simulator.html?flag=sw";
// For testing with sim branches:
const branch = "beta-updates";
const url = new URL(
`https://review-python-simulator.usermbit.org/${branch}/simulator.html`
);
//const url = new URL(stage === "PRODUCTION" ? production : staging);
url.searchParams.append("color", brand500);
return url.toString();
}, [brand500]);
const ref = useRef<HTMLIFrameElement>(null);
const intl = useIntl();
const logging = useLogging();
const simulatorTitle = intl.formatMessage({ id: "simulator-title" });
const simulator = useRef(
new SimulatorDeviceConnection(logging, () => {
return ref.current;
})
);
useEffect(() => {
const sim = simulator.current;
sim.initialize();
return () => {
sim.dispose();
};
}, []);
useEffect(() => {
updateTranslations(simulator.current, intl);
}, [simulator, intl]);
const simControlsRef = useRef<HTMLDivElement>(null);
const [running, setRunning] = useState<RunningStatus>(RunningStatus.STOPPED);
const previouslyShown = usePrevious(shown);
useEffect(() => {
if (shown) {
// Prevents the simulator stealing focus on initial load.
if (previouslyShown !== undefined && previouslyShown !== shown) {
ref.current!.focus();
}
} else {
if (simFocus) {
showSimulatorButtonRef.current!.focus();
}
}
}, [previouslyShown, showSimulatorButtonRef, shown, simFocus]);
return (
<DeviceContextProvider value={simulator.current}>
<Flex
flex="1 1 100%"
flexDirection="column"
height="100%"
position="relative"
>
<Flex
position="absolute"
top={0}
left={0}
alignItems="center"
height={topBarHeight}
>
<HideSplitViewButton
aria-label={intl.formatMessage({ id: "simulator-collapse" })}
onClick={onSimulatorHide}
splitViewShown={shown}
direction="expandLeft"
/>
</Flex>
<VStack spacing={5} bg="gray.25" ref={simControlsRef}>
<Box width="100%" pb={1} px={5} maxW="md" minW={minWidth}>
<AspectRatio ratio={191.27 / 155.77} width="100%">
<Box
ref={ref}
as="iframe"
src={url}
title={simulatorTitle}
name={simulatorTitle}
frameBorder="no"
scrolling="no"
allow="autoplay;microphone"
sandbox="allow-scripts allow-same-origin"
/>
</AspectRatio>
<SimulatorActionBar
as="section"
aria-label={intl.formatMessage({ id: "simulator-actions" })}
overflow="hidden"
running={running}
onRunningChange={setRunning}
/>
</Box>
</VStack>
<SimSerialTabControlProvider>
<SimulatorSplitView simRunning={running} />
</SimSerialTabControlProvider>
</Flex>
</DeviceContextProvider>
);
};
const updateTranslations = (
simulator: SimulatorDeviceConnection,
intl: IntlShape
) => {
const config = {
language: intl.locale,
translations: Object.fromEntries(
["button-a", "button-b", "touch-logo", "start-simulator"].map((k) => [
k,
intl.formatMessage({ id: "simulator-" + k }),
])
),
};
simulator.configure(config);
};
export default Simulator;