Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ui): modify name in profile #2249

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 124 additions & 0 deletions ee/tabby-ui/app/(dashboard)/profile/components/change-name.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
'use client'

import React from 'react'
import { zodResolver } from '@hookform/resolvers/zod'
import { useForm } from 'react-hook-form'
import { toast } from 'sonner'
import * as z from 'zod'

import { graphql } from '@/lib/gql/generates'
import { useMe } from '@/lib/hooks/use-me'
import { useMutation } from '@/lib/tabby/gql'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage
} from '@/components/ui/form'
import { IconSpinner } from '@/components/ui/icons'
import { Input } from '@/components/ui/input'
import { Separator } from '@/components/ui/separator'
import { ListSkeleton } from '@/components/skeleton'

const updateNameMutation = graphql(/* GraphQL */ `
mutation UpdateUserName($id: ID!, $name: String!) {
updateUserName(id: $id, name: $name)
}
`)

interface ChangeNameFormProps {
showOldPassword?: boolean
onSuccess?: () => void
defaultValues: {
name?: string
}
}

const ChangeNameForm: React.FC<ChangeNameFormProps> = ({
onSuccess,
defaultValues
}) => {
const [{ data }] = useMe()

const formSchema = z.object({
name: z.string()
})

const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues
})
const { isSubmitting } = form.formState
const { name } = form.watch()

const updateName = useMutation(updateNameMutation, {
form,
onCompleted(values) {
if (values?.updateUserName) {
onSuccess?.()
}
}
})

const onSubmit = async (values: z.infer<typeof formSchema>) => {
await updateName({
id: data!.me.id,
name: values.name
})
}

const isNameModified = name !== defaultValues.name
return (
<Form {...form}>
<form className="grid gap-6" onSubmit={form.handleSubmit(onSubmit)}>
<FormField
control={form.control}
name="name"
render={({ field }) => (
<FormItem>
<FormLabel>Name</FormLabel>
<FormControl>
<Input className="w-[350px]" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormMessage />
<Separator />
<div className="flex">
<Button
type="submit"
disabled={!name || !isNameModified || isSubmitting}
className="w-40"
>
{isSubmitting && (
<IconSpinner className="mr-2 h-4 w-4 animate-spin" />
)}
Save Changes
</Button>
</div>
</form>
</Form>
)
}

export const ChangeName = () => {
const [{ data }, reexecuteQuery] = useMe()
const onSuccess = () => {
toast.success('Name is updated')
reexecuteQuery()
}

return data ? (
<ChangeNameForm
onSuccess={onSuccess}
defaultValues={{ name: data.me.name }}
/>
) : (
<ListSkeleton />
)
}
4 changes: 4 additions & 0 deletions ee/tabby-ui/app/(dashboard)/profile/components/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ import { Avatar } from './avatar'
import { ChangePassword } from './change-password'
import { Email } from './email'
import { ProfileCard } from './profile-card'
import { ChangeName } from './change-name'

export default function Profile() {
return (
<div className="flex flex-col items-center gap-6">
<ProfileCard title="Your Name" footerClassname="pb-0">
<ChangeName />
</ProfileCard>
<ProfileCard
title="Your Email"
description="This will be the email you use to log in and receive notifications."
Expand Down
1 change: 1 addition & 0 deletions ee/tabby-ui/lib/hooks/use-me.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const meQuery = graphql(/* GraphQL */ `
email
isAdmin
isPasswordSet
name
}
}
`)
Expand Down