forked from gptscript-ai/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalls.tsx
88 lines (85 loc) · 2.57 KB
/
calls.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
import { useState } from 'react';
import CallFrames from './calls/callFrames';
import type { CallFrame } from '@gptscript-ai/gptscript';
import { IoCloseSharp } from 'react-icons/io5';
import { BsArrowsFullscreen } from 'react-icons/bs';
import { HiOutlineArrowsPointingIn } from 'react-icons/hi2';
import { GoProjectRoadmap } from 'react-icons/go';
import {
Modal,
ModalContent,
ModalHeader,
ModalBody,
Button,
Tooltip,
} from '@nextui-org/react';
import SaveFile from '@/components/saveFile';
const Calls = ({ calls }: { calls: Record<string, CallFrame> }) => {
const [showModal, setShowModal] = useState(false);
const [fullscreen, setFullscreen] = useState(false);
return (
<div>
<Tooltip content="View stack trace" closeDelay={0.5}>
<Button
onPress={() => setShowModal(true)}
isIconOnly
radius="full"
variant="flat"
color="primary"
>
<GoProjectRoadmap />
</Button>
</Tooltip>
<Modal
isOpen={showModal}
onOpenChange={setShowModal}
hideCloseButton={true}
size={fullscreen ? 'full' : '3xl'}
className={fullscreen ? '' : 'h-4/5'}
>
<ModalContent>
<ModalHeader className="flex justify-between">
<div>
<div className="my-2">
<h1 className="text-2xl inline mr-2">Call Frames</h1>
<SaveFile content={calls} />
</div>
<h2 className="text-base text-zinc-500">
Below you can see what this call is doing or has done.
</h2>
</div>
<div>
<Button
radius="full"
size="sm"
isIconOnly
color="primary"
onPress={(_) => setShowModal(false)}
>
<IoCloseSharp />
</Button>
<Button
radius="full"
size="sm"
isIconOnly
color="primary"
className="ml-2"
onPress={(_) => setFullscreen(!fullscreen)}
>
{fullscreen ? (
<HiOutlineArrowsPointingIn className="text-lg" />
) : (
<BsArrowsFullscreen />
)}
</Button>
</div>
</ModalHeader>
<ModalBody className="mb-4 h-full overflow-y-scroll">
<CallFrames calls={calls} />
</ModalBody>
</ModalContent>
</Modal>
</div>
);
};
export default Calls;