Vercel/src/photo/PhotoEditPageClient.tsx
2024-12-31 13:57:42 -05:00

78 lines
2.0 KiB
TypeScript

'use client';
import AdminChildPage from '@/components/AdminChildPage';
import { Photo } from '.';
import { PATH_ADMIN_PHOTOS } from '@/site/paths';
import { PhotoFormData, convertPhotoToFormData } from './form';
import PhotoForm from './form/PhotoForm';
import { Tags } from '@/tag';
import AiButton from './ai/AiButton';
import usePhotoFormParent from './form/usePhotoFormParent';
import ExifSyncButton from '@/admin/ExifSyncButton';
import { useState } from 'react';
export default function PhotoEditPageClient({
photo,
uniqueTags,
hasAiTextGeneration,
imageThumbnailBase64,
blurData,
}: {
photo: Photo
uniqueTags: Tags
hasAiTextGeneration: boolean
imageThumbnailBase64: string
blurData: string
}) {
const photoForm = convertPhotoToFormData(photo);
const {
pending,
setIsPending,
updatedTitle,
setUpdatedTitle,
hasTextContent,
setHasTextContent,
aiContent,
} = usePhotoFormParent({
photoForm,
imageThumbnailBase64,
});
const [updatedExifData, setUpdatedExifData] =
useState<Partial<PhotoFormData>>();
return (
<AdminChildPage
backPath={PATH_ADMIN_PHOTOS}
backLabel="Photos"
breadcrumb={pending && updatedTitle
? updatedTitle
: photo.title || photo.id}
breadcrumbEllipsis
accessory={
<div className="flex gap-2">
{hasAiTextGeneration &&
<AiButton {...{ aiContent, shouldConfirm: hasTextContent }} />}
<ExifSyncButton
photoUrl={photo.url}
onSync={setUpdatedExifData}
/>
</div>}
isLoading={pending}
>
<PhotoForm
type="edit"
initialPhotoForm={photoForm}
updatedExifData={updatedExifData}
updatedBlurData={blurData}
uniqueTags={uniqueTags}
aiContent={hasAiTextGeneration ? aiContent : undefined}
onTitleChange={setUpdatedTitle}
onTextContentChange={setHasTextContent}
onFormStatusChange={setIsPending}
/>
</AdminChildPage>
);
};