forked from e2b-dev/E2B
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemplates.tsx
329 lines (313 loc) · 9.91 KB
/
Templates.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from '@/components/ui/table'
import { useState } from 'react'
import { useEffect } from 'react'
import { E2BUser } from '@/utils/useUser'
import { Lock, LockOpen, MoreVertical, Trash } from 'lucide-react'
import {
DropdownMenu,
DropdownMenuItem,
DropdownMenuContent,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu'
import {
AlertDialog,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogAction,
} from '../ui/alert-dialog'
import { toast } from '../ui/use-toast'
import { getAPIUrl } from '@/app/(dashboard)/dashboard/utils'
interface Template {
aliases: string[]
buildID: string
cpuCount: number
memoryMB: number
public: boolean
templateID: string
createdAt: string
updatedAt: string
createdBy: {
email: string
id: string
} | null
}
export function TemplatesContent({
user,
teamId,
domain,
}: {
user: E2BUser
teamId: string
domain: string
}) {
const [templates, setTemplates] = useState<Template[]>([])
const [currentTemplate, setCurrentTemplate] = useState<Template | null>(null)
const [isPublishTemplateDialogOpen, setIsPublishTemplateDialogOpen] =
useState(false)
const [isDeleteTemplateDialogOpen, setIsDeleteTemplateDialogOpen] =
useState(false)
useEffect(() => {
async function f() {
const accessToken = user.accessToken
if (accessToken) {
fetchTemplates(domain, accessToken, teamId).then((newTemplates) => {
if (newTemplates) {
setTemplates(newTemplates)
}
})
}
}
f()
}, [domain, user, teamId])
async function deleteTemplate(domain: string) {
const res = await fetch(
getAPIUrl(domain, `/templates/${currentTemplate?.templateID}`),
{
method: 'DELETE',
headers: {
Authorization: `Bearer ${user.accessToken}`,
},
}
)
if (!res.ok) {
return toast({
title: 'An error occurred',
description: 'We were unable to delete the template',
})
}
setTemplates(
templates.filter(
(template) => template.templateID !== currentTemplate?.templateID
)
)
setCurrentTemplate(null)
setIsDeleteTemplateDialogOpen(false)
}
async function publishTemplate(domain: string) {
const res = await fetch(
getAPIUrl(domain, `/templates/${currentTemplate?.templateID}`),
{
method: 'PATCH',
headers: {
Authorization: `Bearer ${user.accessToken}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
public: !currentTemplate?.public,
}),
}
)
if (!res.ok) {
return toast({
title: 'An error occurred',
description: 'We were unable to update the template',
})
}
toast({
title: 'Template updated',
description: 'The template has been updated successfully',
})
setTemplates(
templates.map((template) =>
template.templateID === currentTemplate?.templateID
? { ...template, public: !template.public }
: template
)
)
setCurrentTemplate(null)
setIsPublishTemplateDialogOpen(false)
}
return (
<div className="flex flex-col justify-center">
<Table>
<TableHeader>
<TableRow className="hover:bg-orange-500/10 dark:hover:bg-orange-500/10 border-b border-white/5">
<TableHead>Access</TableHead>
<TableHead>Template ID</TableHead>
<TableHead>Template Name</TableHead>
<TableHead>vCPUs</TableHead>
<TableHead>RAM MiB</TableHead>
<TableHead>Created by</TableHead>
<TableHead>Created at</TableHead>
<TableHead>Updated at</TableHead>
<TableHead></TableHead>
</TableRow>
</TableHeader>
<TableBody>
{templates.length === 0 ? (
<TableRow>
<TableCell colSpan={8} className="text-center">
No templates
</TableCell>
</TableRow>
) : (
templates.map((template) => (
<TableRow
className="hover:bg-orange-300/10 dark:hover:bg-orange-300/10 border-b border-white/5"
key={template.templateID}
>
<TableCell>
<div className="flex items-center gap-2">
{template.public ? (
<LockOpen className="w-4 h-4" />
) : (
<Lock className="w-4 h-4" />
)}
<span className="text-xs">
{template.public ? 'Public' : 'Private'}
</span>
</div>
</TableCell>
<TableCell>{template.templateID}</TableCell>
<TableCell className="font-mono">
{template.aliases.join(', ')}
</TableCell>
<TableCell>{template.cpuCount}</TableCell>
<TableCell>{template.memoryMB}</TableCell>
<TableCell>{template.createdBy?.email}</TableCell>
<TableCell>
{new Date(template.createdAt).toLocaleString()}
</TableCell>
<TableCell>
{new Date(template.updatedAt).toLocaleString()}
</TableCell>
<TableCell>
<DropdownMenu>
<DropdownMenuTrigger>
<MoreVertical className="w-4 h-4" />
</DropdownMenuTrigger>
<DropdownMenuContent>
<DropdownMenuItem
onClick={() => {
setCurrentTemplate(template)
setIsPublishTemplateDialogOpen(true)
}}
>
{template.public ? (
<Lock className="w-4 h-4 mr-2" />
) : (
<LockOpen className="w-4 h-4 mr-2" />
)}
{template.public ? 'Unpublish' : 'Publish'}
</DropdownMenuItem>
<DropdownMenuItem
className="text-red-500"
onClick={() => {
setCurrentTemplate(template)
setIsDeleteTemplateDialogOpen(true)
}}
>
<Trash className="w-4 h-4 mr-2" />
Delete
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</TableCell>
</TableRow>
))
)}
</TableBody>
</Table>
<AlertDialog
open={isPublishTemplateDialogOpen}
onOpenChange={setIsPublishTemplateDialogOpen}
>
<AlertDialogContent className="bg-inherit text-white border-black">
<AlertDialogHeader>
<AlertDialogTitle>
You are about to{' '}
{currentTemplate?.public ? 'unpublish' : 'publish'} a template
</AlertDialogTitle>
<AlertDialogDescription className="text-white/90">
This will make the template{' '}
{currentTemplate?.public
? 'private to your team'
: 'public to everyone outside your team'}{' '}
with immediate effect.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel
className="border-white/10"
onClick={() => {
setIsPublishTemplateDialogOpen(false)
setCurrentTemplate(null)
}}
>
Cancel
</AlertDialogCancel>
<AlertDialogAction onClick={() => publishTemplate(domain)}>
{currentTemplate?.public ? 'Unpublish' : 'Publish'}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
<AlertDialog
open={isDeleteTemplateDialogOpen}
onOpenChange={setIsDeleteTemplateDialogOpen}
>
<AlertDialogContent className="bg-inherit text-white border-black">
<AlertDialogHeader>
<AlertDialogTitle>
You are about to delete a template
</AlertDialogTitle>
<AlertDialogDescription className="text-white/90">
This action cannot be undone. This will permanently delete the
template with immediate effect.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel
className="border-white/10"
onClick={() => {
setIsDeleteTemplateDialogOpen(false)
setCurrentTemplate(null)
}}
>
Cancel
</AlertDialogCancel>
<AlertDialogAction
className="bg-red-500 text-white hover:bg-red-600"
onClick={() => deleteTemplate(domain)}
>
Delete
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</div>
)
}
async function fetchTemplates(
domain: string,
accessToken: string,
teamId: string
): Promise<Template[]> {
const res = await fetch(getAPIUrl(domain, `templates?teamID=${teamId}`), {
method: 'GET',
headers: {
Authorization: `Bearer ${accessToken}`,
},
})
try {
const data: Template[] = await res.json()
const orderedData = data.sort((a, b) => {
return new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime()
})
return orderedData
} catch (e) {
// TODO: add sentry event here
return []
}
}