feat: improve error handling and success messages in various forms and dialogs
This commit is contained in:
parent
405e57b92d
commit
6d99a37f20
@ -23,12 +23,12 @@ export const DialogDelete = (properties: TProperties) => {
|
|||||||
const fetcher = useFetcher()
|
const fetcher = useFetcher()
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
close()
|
close()
|
||||||
toast.success(`${title} berhasil dihapus!`)
|
toast.success(`${title} berhasil dihapus!`)
|
||||||
return
|
return
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
import type { PropsWithChildren } from 'react'
|
import type { PropsWithChildren } from 'react'
|
||||||
|
|
||||||
|
import { DialogProfile } from './dialog-profile'
|
||||||
import { DialogUpload } from './dialog-upload'
|
import { DialogUpload } from './dialog-upload'
|
||||||
import { Navbar } from './navbar'
|
import { Navbar } from './navbar'
|
||||||
import { Sidebar } from './sidebar'
|
import { Sidebar } from './sidebar'
|
||||||
@ -15,6 +16,7 @@ export const AdminDashboardLayout = (properties: PropsWithChildren) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogUpload />
|
<DialogUpload />
|
||||||
|
<DialogProfile />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
77
app/layouts/admin/dialog-profile.tsx
Normal file
77
app/layouts/admin/dialog-profile.tsx
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
import { Dialog, DialogBackdrop, DialogPanel } from '@headlessui/react'
|
||||||
|
import { zodResolver } from '@hookform/resolvers/zod'
|
||||||
|
import { useEffect } from 'react'
|
||||||
|
import toast from 'react-hot-toast'
|
||||||
|
import { useFetcher } from 'react-router'
|
||||||
|
import { RemixFormProvider, useRemixForm } from 'remix-hook-form'
|
||||||
|
import { z } from 'zod'
|
||||||
|
|
||||||
|
import { useAdminContext } from '~/contexts/admin'
|
||||||
|
|
||||||
|
const profileSchema = z.object({
|
||||||
|
name: z.string().min(1, 'Name is required'),
|
||||||
|
email: z.string().email('Invalid email address'),
|
||||||
|
profile_picture: z.string().optional(),
|
||||||
|
})
|
||||||
|
|
||||||
|
type TProfileSchema = z.infer<typeof profileSchema>
|
||||||
|
|
||||||
|
export const DialogProfile = () => {
|
||||||
|
const { editProfile, setEditProfile } = useAdminContext()
|
||||||
|
const fetcher = useFetcher()
|
||||||
|
|
||||||
|
const formMethods = useRemixForm<TProfileSchema>({
|
||||||
|
mode: 'onSubmit',
|
||||||
|
fetcher,
|
||||||
|
resolver: zodResolver(profileSchema),
|
||||||
|
})
|
||||||
|
|
||||||
|
const { handleSubmit } = formMethods
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
|
toast.error(fetcher.data.message)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fetcher.data?.success) {
|
||||||
|
setEditProfile(false)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [fetcher.data])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog
|
||||||
|
open={editProfile}
|
||||||
|
onClose={() => {
|
||||||
|
if (fetcher.state === 'idle') {
|
||||||
|
setEditProfile(false)
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
className="relative z-50"
|
||||||
|
transition
|
||||||
|
>
|
||||||
|
<DialogBackdrop
|
||||||
|
className="fixed inset-0 bg-black/50 duration-300 ease-out data-[closed]:opacity-0"
|
||||||
|
transition
|
||||||
|
/>
|
||||||
|
<div className="fixed inset-0 flex w-screen justify-center overflow-y-auto p-0 max-sm:bg-white sm:items-center sm:p-4">
|
||||||
|
<DialogPanel
|
||||||
|
transition
|
||||||
|
className="max-w-lg space-y-6 rounded-lg bg-white p-8 duration-300 ease-out data-[closed]:scale-95 data-[closed]:opacity-0 sm:shadow-lg"
|
||||||
|
>
|
||||||
|
<RemixFormProvider {...formMethods}>
|
||||||
|
<fetcher.Form
|
||||||
|
method="post"
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
className="space-y-4"
|
||||||
|
action="/actions/admin/profile"
|
||||||
|
encType="multipart/form-data"
|
||||||
|
></fetcher.Form>
|
||||||
|
</RemixFormProvider>
|
||||||
|
</DialogPanel>
|
||||||
|
</div>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -1,6 +1,7 @@
|
|||||||
import { Dialog, DialogBackdrop, DialogPanel, Input } from '@headlessui/react'
|
import { Dialog, DialogBackdrop, DialogPanel, Input } from '@headlessui/react'
|
||||||
import { zodResolver } from '@hookform/resolvers/zod'
|
import { zodResolver } from '@hookform/resolvers/zod'
|
||||||
import { useEffect, useState, type ChangeEvent } from 'react'
|
import { useEffect, type ChangeEvent } from 'react'
|
||||||
|
import toast from 'react-hot-toast'
|
||||||
import { useFetcher } from 'react-router'
|
import { useFetcher } from 'react-router'
|
||||||
import { RemixFormProvider, useRemixForm } from 'remix-hook-form'
|
import { RemixFormProvider, useRemixForm } from 'remix-hook-form'
|
||||||
import { z } from 'zod'
|
import { z } from 'zod'
|
||||||
@ -18,7 +19,6 @@ export type TUploadSchema = z.infer<typeof uploadSchema>
|
|||||||
export const DialogUpload = () => {
|
export const DialogUpload = () => {
|
||||||
const { isUploadOpen, setUploadedFile, setIsUploadOpen } = useAdminContext()
|
const { isUploadOpen, setUploadedFile, setIsUploadOpen } = useAdminContext()
|
||||||
const fetcher = useFetcher()
|
const fetcher = useFetcher()
|
||||||
const [error, setError] = useState<string>()
|
|
||||||
const maxFileSize = 10 * 1024 // 10MB
|
const maxFileSize = 10 * 1024 // 10MB
|
||||||
|
|
||||||
const formMethods = useRemixForm<TUploadSchema>({
|
const formMethods = useRemixForm<TUploadSchema>({
|
||||||
@ -30,14 +30,12 @@ export const DialogUpload = () => {
|
|||||||
const { handleSubmit, register, setValue } = formMethods
|
const { handleSubmit, register, setValue } = formMethods
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!fetcher.data?.success) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
setError(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
setUploadedFile(fetcher.data.uploadData.data.file_url)
|
setUploadedFile(fetcher.data.uploadData.data.file_url)
|
||||||
|
|
||||||
setError(undefined)
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [fetcher])
|
}, [fetcher])
|
||||||
|
|
||||||
@ -58,12 +56,12 @@ export const DialogUpload = () => {
|
|||||||
const img = new Image()
|
const img = new Image()
|
||||||
|
|
||||||
if (!file.type.startsWith('image/')) {
|
if (!file.type.startsWith('image/')) {
|
||||||
setError('Please upload an image file.')
|
toast.error('Please upload an image file.')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file.size > maxFileSize * 1024) {
|
if (file.size > maxFileSize * 1024) {
|
||||||
setError(`File size is too big!`)
|
toast.error(`File size is too big!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,9 +108,6 @@ export const DialogUpload = () => {
|
|||||||
action="/actions/admin/upload"
|
action="/actions/admin/upload"
|
||||||
encType="multipart/form-data"
|
encType="multipart/form-data"
|
||||||
>
|
>
|
||||||
{error && (
|
|
||||||
<div className="text-sm text-red-500 capitalize">{error}</div>
|
|
||||||
)}
|
|
||||||
<Input
|
<Input
|
||||||
type="file"
|
type="file"
|
||||||
id="input-file-upload"
|
id="input-file-upload"
|
||||||
|
|||||||
@ -52,12 +52,12 @@ export const FormAdvertisementsPage = (properties: TProperties) => {
|
|||||||
const { handleSubmit } = formMethods
|
const { handleSubmit } = formMethods
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
toast.success(`Banner iklan berhasil ${adData ? 'diupdate' : 'dibuat'}!`)
|
toast.success(`Banner iklan berhasil ${adData ? 'diupdate' : 'dibuat'}!`)
|
||||||
navigate('/lg-admin/advertisements')
|
navigate('/lg-admin/advertisements')
|
||||||
return
|
return
|
||||||
|
|||||||
@ -44,12 +44,12 @@ export const FormCategoryPage = (properties: TProperties) => {
|
|||||||
const watchName = watch('name')
|
const watchName = watch('name')
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
toast.success(
|
toast.success(
|
||||||
`Kategori berhasil ${categoryData ? 'diupdate' : 'dibuat'}!`,
|
`Kategori berhasil ${categoryData ? 'diupdate' : 'dibuat'}!`,
|
||||||
)
|
)
|
||||||
|
|||||||
@ -96,12 +96,12 @@ export const FormContentsPage = (properties: TProperties) => {
|
|||||||
const watchTags = watch('tags')
|
const watchTags = watch('tags')
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
toast.success(`Artikel berhasil ${newsData ? 'diupdate' : 'dibuat'}!`)
|
toast.success(`Artikel berhasil ${newsData ? 'diupdate' : 'dibuat'}!`)
|
||||||
navigate('/lg-admin/contents')
|
navigate('/lg-admin/contents')
|
||||||
return
|
return
|
||||||
|
|||||||
@ -48,12 +48,12 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
|||||||
const watchName = watch('name')
|
const watchName = watch('name')
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
toast.success(
|
toast.success(
|
||||||
`Subscribe Plan berhasil ${subscribePlanData ? 'diupdate' : 'dibuat'}!`,
|
`Subscribe Plan berhasil ${subscribePlanData ? 'diupdate' : 'dibuat'}!`,
|
||||||
)
|
)
|
||||||
|
|||||||
@ -40,12 +40,12 @@ export const FormTagPage = (properties: TProperties) => {
|
|||||||
const watchName = watch('name')
|
const watchName = watch('name')
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (fetcher.data?.success === false) {
|
if (!fetcher.data?.success && fetcher.data?.message) {
|
||||||
toast.error(fetcher.data?.message)
|
toast.error(fetcher.data.message)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fetcher.data?.success === true) {
|
if (fetcher.data?.success) {
|
||||||
toast.success(`Tag berhasil ${tagData ? 'diupdate' : 'dibuat'}!`)
|
toast.success(`Tag berhasil ${tagData ? 'diupdate' : 'dibuat'}!`)
|
||||||
navigate('/lg-admin/tags')
|
navigate('/lg-admin/tags')
|
||||||
return
|
return
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user