aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/group-form.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 15:23:18 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 15:23:18 -0500
commit72fe19987957e78cbd1d97ccfd8b87d85fea5c88 (patch)
treeda34dcde025697e8a4b13aad17d9291ee454d328 /src/components/group-form.tsx
parent570aa713b1b2becf7c06c89610c75d2cb119b532 (diff)
Add currency
Diffstat (limited to 'src/components/group-form.tsx')
-rw-r--r--src/components/group-form.tsx26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/components/group-form.tsx b/src/components/group-form.tsx
index 2e21aea..1057f27 100644
--- a/src/components/group-form.tsx
+++ b/src/components/group-form.tsx
@@ -36,10 +36,12 @@ export function GroupForm({ group, onSubmit }: Props) {
defaultValues: group
? {
name: group.name,
+ currency: group.currency,
participants: group.participants,
}
: {
name: '',
+ currency: '',
participants: [{ name: 'John' }, { name: 'Jane' }, { name: 'Jack' }],
},
})
@@ -60,7 +62,7 @@ export function GroupForm({ group, onSubmit }: Props) {
<CardHeader>
<CardTitle>Group information</CardTitle>
</CardHeader>
- <CardContent>
+ <CardContent className="grid grid-cols-1 sm:grid-cols-2 gap-4">
<FormField
control={form.control}
name="name"
@@ -81,6 +83,28 @@ export function GroupForm({ group, onSubmit }: Props) {
</FormItem>
)}
/>
+
+ <FormField
+ control={form.control}
+ name="currency"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>Currency symbol</FormLabel>
+ <FormControl>
+ <Input
+ className="text-base"
+ placeholder="$, €, £…"
+ max={5}
+ {...field}
+ />
+ </FormControl>
+ <FormDescription>
+ We’ll used it to display amounts.
+ </FormDescription>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
</CardContent>
</Card>
<Card>