Skip to content

Commit 6f1a2f1

Browse files
HaixingOoOHeising
and
Heising
authored
feat(Upload): image-card support imageProps (#3317)
* feat(upload): image-card support imageProps #3271 * test(upload): update test snap * chore: text starts with lowercase letters --------- Co-authored-by: Heising <[email protected]>
1 parent f59fa5f commit 6f1a2f1

File tree

8 files changed

+73
-9
lines changed

8 files changed

+73
-9
lines changed

src/upload/__tests__/upload.test.tsx

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import React from 'react';
2+
import { render, vi, mockDelay } from '@test/utils';
3+
import Upload from '../upload';
4+
5+
const files = [
6+
{
7+
url: 'https://tdesign.gtimg.com/demo/demo-image-1.png',
8+
name: 'default.jpeg',
9+
status: 'success',
10+
},
11+
];
12+
13+
describe('upload 组件测试', () => {
14+
afterEach(() => {
15+
vi.restoreAllMocks();
16+
});
17+
18+
test('imageProps', async () => {
19+
const { container } = render(
20+
<Upload
21+
files={files}
22+
action="//service-bv448zsw-1257786608.gz.apigw.tencentcs.com/api/upload-demo"
23+
theme="image"
24+
accept="image/*"
25+
imageProps={{
26+
className: 'tdesign',
27+
}}
28+
/>,
29+
);
30+
31+
await mockDelay();
32+
expect(container).toBeInTheDocument();
33+
expect(container.querySelector('.tdesign')).toBeInTheDocument();
34+
});
35+
});

src/upload/themes/ImageCard.tsx

+15-4
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,28 @@ export interface ImageCardUploadProps extends CommonDisplayFileProps {
2626
cancelUpload?: (context: { e: MouseEvent<HTMLElement>; file: UploadFile }) => void;
2727
onPreview?: TdUploadProps['onPreview'];
2828
showImageFileName?: boolean;
29+
imageProps?: TdUploadProps['imageProps'];
2930
}
3031

3132
const ImageCard = (props: ImageCardUploadProps) => {
32-
const { displayFiles, locale, classPrefix, multiple, max = 0, onRemove, disabled, fileListDisplay } = props;
33+
const {
34+
displayFiles,
35+
locale,
36+
classPrefix,
37+
multiple,
38+
max = 0,
39+
onRemove,
40+
disabled,
41+
fileListDisplay,
42+
imageProps = {},
43+
} = props;
3344
const { BrowseIcon, DeleteIcon, AddIcon, ErrorCircleFilledIcon } = useGlobalIcon({
3445
AddIcon: TdAddIcon,
3546
BrowseIcon: TdBrowseIcon,
3647
DeleteIcon: TdDeleteIcon,
3748
ErrorCircleFilledIcon: TdErrorCircleFilledIcon,
3849
});
50+
const { className: imageClassName, ...restImageProps } = imageProps;
3951

4052
const showTrigger = React.useMemo(() => {
4153
if (multiple) {
@@ -47,11 +59,10 @@ const ImageCard = (props: ImageCardUploadProps) => {
4759
const renderMainContent = (file: UploadFile, index: number) => (
4860
<div className={`${classPrefix}-upload__card-content ${classPrefix}-upload__card-box`}>
4961
<Image
50-
className={`${classPrefix}-upload__card-image`}
5162
fit="contain"
63+
className={classNames(`${classPrefix}-upload__card-image`, imageClassName)}
64+
{...restImageProps}
5265
src={file.url || file.raw}
53-
error=""
54-
loading=""
5566
/>
5667
<div className={`${classPrefix}-upload__card-mask`}>
5768
<span className={`${classPrefix}-upload__card-mask-item`} onClick={(e) => e.stopPropagation()}>

src/upload/type.ts

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { UploadConfig } from '../config-provider/type';
99
import { ButtonProps } from '../button';
1010
import { PlainObject, TNode, UploadDisplayDragEvents } from '../common';
1111
import { CSSProperties, MouseEvent, DragEvent } from 'react';
12+
import { ImageProps } from '../image';
1213

1314
export interface TdUploadProps<T extends UploadFile = UploadFile> {
1415
/**
@@ -100,6 +101,10 @@ export interface TdUploadProps<T extends UploadFile = UploadFile> {
100101
* 设置上传的请求头部,`action` 存在时有效
101102
*/
102103
headers?: { [key: string]: string };
104+
/**
105+
* 用于在上传图片场景下,透传属性配置至 Image 组件
106+
*/
107+
imageProps?: ImageProps;
103108
/**
104109
* 透传图片预览组件全部属性
105110
*/

src/upload/upload.en-US.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ format | Function | - | to redefine `UploadFile` data structure。Typescript:
2727
formatRequest | Function | - | redefine request data。Typescript:`(requestData: { [key: string]: any }) => { [key: string]: any }` | N
2828
formatResponse | Function | - | redefine response data structure。Typescript:`(response: any, context: FormatResponseContext) => ResponseType ` `type ResponseType = { error?: string; url?: string; status?: 'fail' \| 'success'; files?: UploadFile[] } & Record<string, any>` `interface FormatResponseContext { file: UploadFile; currentFiles?: UploadFile[] }`[see more ts definition](https://github.com/Tencent/tdesign-react/blob/develop/src/upload/type.ts) | N
2929
headers | Object | - | HTTP Request Header。Typescript:`{[key: string]: string}` | N
30+
imageProps | Object | - | \- | N
3031
imageViewerProps | Object | - | ImageViewer Component Props。Typescript:`ImageViewerProps`[ImageViewer API Documents](./image-viewer?tab=api)[see more ts definition](https://github.com/Tencent/tdesign-react/blob/develop/src/upload/type.ts) | N
3132
inputAttributes | Object | - | add attributes to HTML element `input`。Typescript:`CSSProperties` | N
3233
isBatchUpload | Boolean | false | make all files to be a whole package, files can only be replaced or deleted together, can not add more files | N

src/upload/upload.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ format | Function | - | 转换文件 `UploadFile` 的数据结构,可新增或
2727
formatRequest | Function | - | 用于新增或修改文件上传请求 参数。`action` 存在时有效。一个请求上传一个文件时,默认请求字段有 `file`。<br/>一个请求上传多个文件时,默认字段有 `file[0]/file[1]/file[2]/.../length`,其中 `length` 表示本次上传的文件数量。<br/>⚠️非常注意,此处的 `file[0]/file[1]` 仅仅是一个字段名,并非表示 `file` 是一个数组,接口获取字段时注意区分。<br/>可以使用 `name` 定义 `file` 字段的别名。<br/>也可以使用 `formatRequest` 自定义任意字段,如添加一个字段 `fileList` ,存储文件数组。TS 类型:`(requestData: { [key: string]: any }) => { [key: string]: any }` | N
2828
formatResponse | Function | - | 用于格式化文件上传后的接口响应数据,`response` 便是接口响应的原始数据。`action` 存在时有效。<br/> 示例返回值:`{ error, url, status, files }` <br/> 此函数的返回值 `error` 会作为错误文本提醒,表示上传失败的原因,如果存在会判定为本次上传失败。<br/> 此函数的返回值 `url` 会作为单个文件上传成功后的链接。<br/> `files` 表示一个请求同时上传多个文件后的文件列表。TS 类型:`(response: any, context: FormatResponseContext) => ResponseType ` `type ResponseType = { error?: string; url?: string; status?: 'fail' \| 'success'; files?: UploadFile[] } & Record<string, any>` `interface FormatResponseContext { file: UploadFile; currentFiles?: UploadFile[] }`[详细类型定义](https://github.com/Tencent/tdesign-react/blob/develop/src/upload/type.ts) | N
2929
headers | Object | - | 设置上传的请求头部,`action` 存在时有效。TS 类型:`{[key: string]: string}` | N
30+
imageProps | Object | - | 用于在上传图片场景下,透传属性配置至 Image 组件 | N
3031
imageViewerProps | Object | - | 透传图片预览组件全部属性。TS 类型:`ImageViewerProps`[ImageViewer API Documents](./image-viewer?tab=api)[详细类型定义](https://github.com/Tencent/tdesign-react/blob/develop/src/upload/type.ts) | N
3132
inputAttributes | Object | - | 用于添加属性到 HTML 元素 `input`。TS 类型:`CSSProperties` | N
3233
isBatchUpload | Boolean | false | 多个文件是否作为一个独立文件包,整体替换,整体删除。不允许追加文件,只允许替换文件。`theme=file-flow` 时有效 | N

src/upload/upload.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import useGlobalIcon from '../hooks/useGlobalIcon';
2020
// const Upload = forwardRef((props: UploadProps, ref) => {
2121
function TdUpload<T extends UploadFile = UploadFile>(originalProps: UploadProps<T>, ref: ForwardedRef<UploadRef>) {
2222
const props = useDefaultProps<UploadProps<T>>(originalProps, uploadDefaultProps);
23-
const { theme } = props;
23+
const { theme, imageProps } = props;
2424
const {
2525
locale,
2626
classPrefix,
@@ -141,6 +141,7 @@ function TdUpload<T extends UploadFile = UploadFile>(originalProps: UploadProps<
141141
cancelUpload={cancelUpload}
142142
onPreview={props.onPreview}
143143
showImageFileName={props.showImageFileName}
144+
imageProps={imageProps}
144145
/>
145146
);
146147

0 commit comments

Comments
 (0)