-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathworkspace-name.tsx
63 lines (60 loc) · 1.61 KB
/
workspace-name.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
import {
Button,
Card,
CardBody,
CardFooter,
Form,
Input,
Label,
TextField,
} from "@stacklok/ui-kit";
import { twMerge } from "tailwind-merge";
import { useCreateWorkspace } from "../hooks/use-create-workspace";
import { FormEvent, useState } from "react";
export function WorkspaceName({
className,
workspaceName,
isArchived,
}: {
className?: string;
workspaceName: string;
isArchived: boolean | undefined;
}) {
const [name, setName] = useState(workspaceName);
const { mutate, isPending, error } = useCreateWorkspace();
const errorMsg = error?.detail ? `${error?.detail}` : "";
const handleSubmit = (e: FormEvent<HTMLFormElement>) => {
e.preventDefault();
mutate({ body: { name: workspaceName, rename_to: name } });
};
return (
<Form onSubmit={handleSubmit} validationBehavior="aria">
<Card className={twMerge(className, "shrink-0")}>
<CardBody>
<TextField
aria-label="Workspace name"
value={name}
name="Workspace name"
validationBehavior="aria"
isRequired
isDisabled={isArchived}
onChange={setName}
>
<Label>Workspace name</Label>
<Input />
{errorMsg && <div className="p-1 text-red-700">{errorMsg}</div>}
</TextField>
</CardBody>
<CardFooter className="justify-end gap-2">
<Button
isDisabled={isArchived || name === ""}
isPending={isPending}
type="submit"
>
Save
</Button>
</CardFooter>
</Card>
</Form>
);
}