-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.js
79 lines (70 loc) · 1.51 KB
/
ui.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
import React, {useState, useEffect} from 'react';
import { Box, Text } from 'ink';
import { promisify } from 'node:util';
import { exec as execCb } from "node:child_process";
const exec = promisify(execCb);
async function cowSay(txt) {
const { stdout, stderr } = await exec(`cowsay ${txt}`);
if (stderr) {
return stderr;
}
return stdout;
}
/*
const App = ({name = 'Stranger'}) => (
<Text>
Hello, <Text color="green">{name}</Text>
</Text>
);
module.exports = App;
*/
const Window = ({ title, children }) => (
<Box width={"50%"} flexDirection="column" borderStyle="single">
<Box>
<Text color="#00FF00">
{title}
</Text>
</Box>
<Box>
{children}
</Box>
</Box>
);
export default function App() {
const [window1, setWindow1] = useState("Waiting cowsay...");
useEffect(() => {
async function run() {
const content = await cowSay("deez nuts");
setWindow1(content);
}
run().catch((err) => {
setWindow1(`Error running cowsay: ${err}`)
})
}, [])
return <>
<Box flexDirection="row">
<Window title="Window 1">
<Text>
{window1}
</Text>
</Window>
<Window title="Window 2">
<Text>
Window 2 content
</Text>
</Window>
</Box>
<Box>
<Window title="Window 3">
<Text>
Window 3 content
</Text>
</Window>
<Window title="Window 4">
<Text>
Window 4 content
</Text>
</Window>
</Box>
</>
}