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(react-ui-lib): add more types of file repeater #723

Merged
merged 1 commit into from
Jun 17, 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
27 changes: 23 additions & 4 deletions build/api/react-ui-lib.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ export const AudioField: React_2.NamedExoticComponent<AudioFieldProps>;
// @public (undocumented)
export type AudioFieldProps = BaseFieldProps & AudioFileTypeProps;

// @public (undocumented)
export const AudioRepeaterField: React_2.NamedExoticComponent<AudioRepeaterFieldProps>;

// @public (undocumented)
export type AudioRepeaterFieldProps = BaseFileRepeaterFieldProps & AudioFileTypeProps;

// @public (undocumented)
export const BackButton: ({ label }: BackButtonProps) => JSX_2.Element;

Expand Down Expand Up @@ -219,6 +225,9 @@ export const baseEditorPlugins: {
// @public (undocumented)
export type BaseFieldProps = Omit<FormContainerProps, 'children'> & UploaderBaseFieldProps;

// @public (undocumented)
export type BaseFileRepeaterFieldProps = Omit<FormContainerProps, 'children'> & RepeaterProps & UploaderBaseFieldProps;

// @public (undocumented)
export const Binding: ({ children }: {
children: ReactNode;
Expand Down Expand Up @@ -1250,6 +1259,12 @@ export const FileField: React_2.NamedExoticComponent<FileFieldProps>;
// @public (undocumented)
export type FileFieldProps = BaseFieldProps & AnyFileTypeProps;

// @public (undocumented)
export const FileRepeaterField: React_2.NamedExoticComponent<FileRepeaterFieldProps>;

// @public (undocumented)
export type FileRepeaterFieldProps = BaseFileRepeaterFieldProps & AnyFileTypeProps;

// @public (undocumented)
export const formatBoolean: (value: boolean | null) => string | null;

Expand Down Expand Up @@ -1348,12 +1363,10 @@ export const ImageField: React_2.NamedExoticComponent<ImageFieldProps>;
export type ImageFieldProps = BaseFieldProps & ImageFileTypeProps;

// @public (undocumented)
export type ImageRepeaterField = Omit<FormContainerProps, 'children'> & RepeaterProps & UploaderBaseFieldProps & ImageFileTypeProps & {
children?: React_2.ReactNode;
};
export const ImageRepeaterField: React_2.NamedExoticComponent<ImageRepeaterFieldProps>;

// @public (undocumented)
export const ImageRepeaterField: React_2.NamedExoticComponent<ImageRepeaterField>;
export type ImageRepeaterFieldProps = BaseFileRepeaterFieldProps & ImageFileTypeProps;

// @public (undocumented)
export interface ImageResizeOptions {
Expand Down Expand Up @@ -2564,6 +2577,12 @@ export const VideoField: React_2.NamedExoticComponent<VideoFieldProps>;
// @public (undocumented)
export type VideoFieldProps = BaseFieldProps & VideoFileTypeProps;

// @public (undocumented)
export const VideoRepeaterField: React_2.NamedExoticComponent<VideoRepeaterFieldProps>;

// @public (undocumented)
export type VideoRepeaterFieldProps = BaseFileRepeaterFieldProps & VideoFileTypeProps;

// @public (undocumented)
export const withFallback: <T>(formatter: (value: T) => string, fallback: string) => (value: T | null) => string;

Expand Down
85 changes: 68 additions & 17 deletions packages/react-ui-lib/src/form/upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,27 +159,78 @@ const UploadFieldInner = Component((({ baseField, label, description, children,
</>
})




export type ImageRepeaterField =
export type BaseFileRepeaterFieldProps =
& Omit<FormContainerProps, 'children'>
& RepeaterProps
& UploaderBaseFieldProps


export type ImageRepeaterFieldProps =
& BaseFileRepeaterFieldProps
& ImageFileTypeProps

export const ImageRepeaterField = Component<ImageRepeaterFieldProps>(props => <>
<FileRepeaterFieldInner {...props} fileType={createImageFileType(props)}>
<UploadedImageView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
</FileRepeaterFieldInner>
</>)


export type AudioRepeaterFieldProps =
& BaseFileRepeaterFieldProps
& AudioFileTypeProps

export const AudioRepeaterField = Component<AudioRepeaterFieldProps>(props => <>
<FileRepeaterFieldInner {...props} fileType={createAudioFileType(props)}>
<UploadedAudioView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
</FileRepeaterFieldInner>
</>)


export type VideoRepeaterFieldProps =
& BaseFileRepeaterFieldProps
& VideoFileTypeProps

export const VideoRepeaterField = Component<VideoRepeaterFieldProps>(props => <>
<FileRepeaterFieldInner {...props} fileType={createVideoFileType(props)}>
<UploadedVideoView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
</FileRepeaterFieldInner>
</>)


export type FileRepeaterFieldProps =
& BaseFileRepeaterFieldProps
& AnyFileTypeProps

export const FileRepeaterField = Component<FileRepeaterFieldProps>(props => <>
<FileRepeaterFieldInner {...props} fileType={createAnyFileType(props)}>
<UploadedAnyView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
</FileRepeaterFieldInner>
</>)


type FileRepeaterFieldInnerProps =
& BaseFileRepeaterFieldProps
& {
children?: React.ReactNode
fileType: FileType
children: ReactNode
}

export const ImageRepeaterField = Component<ImageRepeaterField>(({ baseField, label, description, children, uploader, ...props }, environment) => {
const entity = useEntity()
const FileRepeaterFieldInner = Component<FileRepeaterFieldInnerProps>(({ baseField, label, description, children, fileType, ...props }) => {

const defaultUploader = useS3Client()
uploader ??= defaultUploader
const [type] = useState(() => createImageFileType({ uploader, ...props }))
const [fileTypeStable] = useState(fileType)
const fileTypeWithUploader = useMemo(
() => ({ ...fileTypeStable, uploader: fileTypeStable?.uploader ?? defaultUploader }),
[defaultUploader, fileTypeStable],
)

// const entity = useEntity()
// const errors = type.extractors?.flatMap(it => it.getErrorsHolders?.({
// environment,
// entity,
// }) ?? []).flatMap(it => it.errors?.errors ?? [])

const id = useId()
return (
<FormFieldIdContext.Provider value={id}>
Expand All @@ -188,7 +239,7 @@ export const ImageRepeaterField = Component<ImageRepeaterField>(({ baseField, la
<Repeater {...props} initialEntityCount={0}>
<UploaderRepeaterItemsWrapperUI>

<MultiUploader baseField={baseField} fileType={type}>
<MultiUploader baseField={baseField} fileType={fileTypeWithUploader}>
<UploaderHasFile>
<UploaderProgress />
</UploaderHasFile>
Expand All @@ -207,7 +258,7 @@ export const ImageRepeaterField = Component<ImageRepeaterField>(({ baseField, la
<UploaderRepeaterHandleUI />
</RepeaterSortableItemActivator>
<UploaderBase baseField={baseField}>
<UploadedImageView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
{children}
</UploaderBase>
</UploaderRepeaterItemUI>
</RepeaterSortableItemNode>
Expand All @@ -220,7 +271,7 @@ export const ImageRepeaterField = Component<ImageRepeaterField>(({ baseField, la
<RepeaterSortableDragOverlay>
<UploaderRepeaterDragOverlayUI>
<UploaderBase baseField={baseField}>
<UploadedImageView {...props} DestroyAction={RepeaterRemoveItemTrigger} />
{children}
</UploaderBase>
</UploaderRepeaterDragOverlayUI>
</RepeaterSortableDragOverlay>
Expand All @@ -232,12 +283,12 @@ export const ImageRepeaterField = Component<ImageRepeaterField>(({ baseField, la
</FormErrorContext.Provider>
</FormFieldIdContext.Provider>
)
}, ({ baseField, label, description, children, ...props }) => {
const type = createImageFileType(props)
}, ({ baseField, label, description, children, fileType, ...props }) => {
return <>
<Repeater {...props} initialEntityCount={0}>
<Uploader baseField={baseField} fileType={type}></Uploader>
<UploadedImageView {...props} >{children}</UploadedImageView>
<MultiUploader baseField={baseField} fileType={fileType}>
{children}
</MultiUploader>
</Repeater>
</>
})
}, 'FileRepeaterFieldInner')
4 changes: 2 additions & 2 deletions packages/react-ui-lib/src/upload/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export type UploadedImageViewProps =
& GenericFileMetadataExtractorProps
& ImageFileDataExtractorProps
& {
DestroyAction?: ComponentType<{ children: ReactNode }>
}
DestroyAction?: ComponentType<{ children: ReactNode }>
}

export const UploadedImageView = Component<UploadedImageViewProps>(({ DestroyAction, ...props }) => {
const url = useField<string>(props.urlField).value
Expand Down
Loading