65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
'use client';
|
|
|
|
import AdminChildPage from '@/components/AdminChildPage';
|
|
import { PATH_ADMIN_UPLOADS } from '@/site/paths';
|
|
import { PhotoFormData, generateTakenAtFields } from './form';
|
|
import PhotoForm from './form/PhotoForm';
|
|
import { TagsWithMeta } from '@/tag';
|
|
import usePhotoFormParent from './form/usePhotoFormParent';
|
|
import AiButton from './ai/AiButton';
|
|
import { AiAutoGeneratedField } from './ai';
|
|
import { useMemo } from 'react';
|
|
|
|
export default function UploadPageClient({
|
|
blobId,
|
|
photoFormExif,
|
|
uniqueTags,
|
|
hasAiTextGeneration,
|
|
textFieldsToAutoGenerate,
|
|
}: {
|
|
blobId?: string
|
|
photoFormExif: Partial<PhotoFormData>
|
|
uniqueTags: TagsWithMeta
|
|
hasAiTextGeneration?: boolean
|
|
textFieldsToAutoGenerate?: AiAutoGeneratedField[],
|
|
}) {
|
|
const {
|
|
pending,
|
|
setIsPending,
|
|
updatedTitle,
|
|
setUpdatedTitle,
|
|
hasTextContent,
|
|
setHasTextContent,
|
|
aiContent,
|
|
} = usePhotoFormParent({ textFieldsToAutoGenerate });
|
|
|
|
const initialPhotoForm = useMemo(() => ({
|
|
...photoFormExif,
|
|
// Generate missing dates on client to avoid timezone issues
|
|
...generateTakenAtFields(photoFormExif),
|
|
}), [photoFormExif]);
|
|
|
|
return (
|
|
<AdminChildPage
|
|
backPath={PATH_ADMIN_UPLOADS}
|
|
backLabel="Uploads"
|
|
breadcrumb={pending && updatedTitle
|
|
? updatedTitle
|
|
: blobId}
|
|
breadcrumbEllipsis
|
|
accessory={hasAiTextGeneration &&
|
|
<AiButton {...{ aiContent, shouldConfirm: hasTextContent }} />}
|
|
isLoading={pending}
|
|
>
|
|
<PhotoForm
|
|
initialPhotoForm={initialPhotoForm}
|
|
uniqueTags={uniqueTags}
|
|
aiContent={hasAiTextGeneration ? aiContent : undefined}
|
|
onTitleChange={setUpdatedTitle}
|
|
onTextContentChange={setHasTextContent}
|
|
onFormStatusChange={setIsPending}
|
|
/>
|
|
</AdminChildPage>
|
|
);
|
|
}
|