前端项目实战185-ant design table实现编辑单元格的功能

这段代码展示了在React中创建一个可编辑的表格单元格组件。组件根据dataIndex动态生成输入框(Input)或数字输入框(InputNumber),并支持选择操作,如选择尺寸(SizeId)或颜色。当处于编辑状态时,该组件会包裹在一个Form.Item中进行必填验证。同时,提供了尺寸和颜色的下拉选项,分别从sizeList和styleList中获取。
摘要由CSDN通过智能技术生成
const EditableCell = ({
        editing,
        dataIndex,
        title,
        inputType,
        record,
        index,
        children,
        ...restProps
    }: {
        editing: any,
        dataIndex: any,
        title: any,
        inputType: any,
        record: any,
        index: any,
        children: any
    }) => {
        const inputNode = inputType === 'input' ?
            <Input style={{ width: "300px" }} autoComplete="off" /> :
            <InputNumber min={1} style={{ width: "300px" }} autoComplete="off" />
        const selectNode = dataIndex == 'sizeId' ? <Select
            style={{ width: "300px" }}
            placeholder="请选择尺寸"
            optionFilterProp="children"
        >
            {sizeList && sizeList.map((item: any, index: number) => (
                <Option value={item.id} key={index}>{item.name}</Option>
            ))}
        </Select> : <Select
            style={{ width: "300px" }}
            placeholder="请选择颜色"
            optionFilterProp="children"
        >
            {styleList && styleList.map((item: any, index: number) => (
                <Option value={item.id} key={index}>{item.name}</Option>
            ))}
        </Select>
        return (
            <td {...restProps}>
                {editing ? (
                    <Form.Item
                        name={dataIndex}
                        style={{
                            margin: 0
                        }}
                        rules={[
                            {
                                required: true,
                                message: `请输入${title}!`
                            }
                        ]}
                    >
                        {inputType == 'select' ? selectNode : inputNode}
                    </Form.Item>
                ) : (
                    children
                )}
            </td>
        );
    };

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值