-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathApp.js
84 lines (81 loc) · 2.45 KB
/
App.js
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
import * as React from 'react';
import { useMachine } from '@xstate/react';
import { Tabs, Tab, TabList, TabPanels, TabPanel } from '@reach/tabs';
import { NewTimer } from './NewTimer';
import { Timer } from './Timer';
import { Clock } from './Clock';
import { timerAppMachine } from './timerAppMachine';
import { inspect } from '@xstate/inspect';
// inspect({
// iframe: false,
// });
export const App = () => {
const [state, send] = useMachine(timerAppMachine, { devTools: true });
const { timers } = state.context;
return (
<Tabs
as="main"
className="app"
data-state={state.toStrings().join(' ')}
defaultIndex={1}
>
<TabList className="app-tabs">
<Tab className="app-tab">Clock</Tab>
<Tab className="app-tab">Timer</Tab>
</TabList>
<TabPanels className="app-panels">
<TabPanel className="app-panel">
<Clock />
</TabPanel>
<TabPanel className="app-panel">
<NewTimer
onSubmit={(duration) => {
send({ type: 'ADD', duration });
}}
onCancel={
timers.length
? () => {
send('CANCEL');
}
: undefined
}
key={state.toStrings().join(' ')}
/>
<div className="timers" hidden={!state.matches('timer')}>
{state.context.timers.map((timer, i) => {
return (
<Timer
key={timer.id}
timerRef={timer}
onDelete={() => {
send({ type: 'DELETE', index: i });
}}
onAdd={() => {
send('CREATE');
}}
data-active={i === state.context.currentTimer || undefined}
/>
);
})}
</div>
<div className="dots" hidden={!state.matches('timer')}>
{state.context.timers.map((_, index) => {
return (
<div
className="dot"
data-active={
index === state.context.currentTimer || undefined
}
key={index}
onClick={() => {
send({ type: 'SWITCH', index: index });
}}
></div>
);
})}
</div>
</TabPanel>
</TabPanels>
</Tabs>
);
};