feat: improve code
This commit is contained in:
parent
35cafad0ff
commit
7587e2cdb7
@ -411,7 +411,7 @@ function generateCardItemSchema(component) {
|
|||||||
'x-designable-bar': 'Kanban.Card.DesignableBar',
|
'x-designable-bar': 'Kanban.Card.DesignableBar',
|
||||||
'x-read-pretty': true,
|
'x-read-pretty': true,
|
||||||
'x-decorator-props': {
|
'x-decorator-props': {
|
||||||
useResource: '{{ Kanban.useSingleResource }}',
|
useResource: '{{ Kanban.useRowResource }}',
|
||||||
},
|
},
|
||||||
properties: {},
|
properties: {},
|
||||||
},
|
},
|
||||||
|
@ -175,6 +175,7 @@ const InternalKanban = observer((props: any) => {
|
|||||||
}
|
}
|
||||||
return resource.list({
|
return resource.list({
|
||||||
...params,
|
...params,
|
||||||
|
appends: fieldFields(schemas.get('Kanban.Card')),
|
||||||
perPage: -1,
|
perPage: -1,
|
||||||
sort: 'sort',
|
sort: 'sort',
|
||||||
});
|
});
|
||||||
@ -426,7 +427,7 @@ Kanban.useCreateResource = ({ onSuccess }) => {
|
|||||||
const service = useRequest(
|
const service = useRequest(
|
||||||
(params?: any) => {
|
(params?: any) => {
|
||||||
return Promise.resolve({
|
return Promise.resolve({
|
||||||
[groupField.name]: column.value
|
[groupField.name]: column.value,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -471,7 +472,7 @@ Kanban.useUpdateAction = () => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
Kanban.useSingleResource = ({ onSuccess }) => {
|
Kanban.useRowResource = ({ onSuccess }) => {
|
||||||
const { props } = useKanban();
|
const { props } = useKanban();
|
||||||
const { collection } = useCollectionContext();
|
const { collection } = useCollectionContext();
|
||||||
const ctx = useContext(KanbanCardContext);
|
const ctx = useContext(KanbanCardContext);
|
||||||
@ -479,10 +480,6 @@ Kanban.useSingleResource = ({ onSuccess }) => {
|
|||||||
resourceName: collection?.name || props.collectionName,
|
resourceName: collection?.name || props.collectionName,
|
||||||
resourceKey: ctx?.record?.id,
|
resourceKey: ctx?.record?.id,
|
||||||
});
|
});
|
||||||
console.log(
|
|
||||||
'collection?.name || props.collectionName',
|
|
||||||
collection?.name || props.collectionName,
|
|
||||||
);
|
|
||||||
const service = useRequest(
|
const service = useRequest(
|
||||||
(params?: any) => {
|
(params?: any) => {
|
||||||
return Promise.resolve(ctx.record);
|
return Promise.resolve(ctx.record);
|
||||||
@ -497,6 +494,60 @@ Kanban.useSingleResource = ({ onSuccess }) => {
|
|||||||
return { resource, service, initialValues: service.data, ...service };
|
return { resource, service, initialValues: service.data, ...service };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const fieldFields = (schema: Schema) => {
|
||||||
|
const names = [];
|
||||||
|
schema.reduceProperties((buf, current) => {
|
||||||
|
if (current['x-component'] === 'Form.Field') {
|
||||||
|
const fieldName = current['x-component-props']?.['fieldName'];
|
||||||
|
if (fieldName) {
|
||||||
|
buf.push(fieldName);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const fieldNames = fieldFields(current);
|
||||||
|
buf.push(...fieldNames);
|
||||||
|
}
|
||||||
|
return buf;
|
||||||
|
}, names);
|
||||||
|
return names;
|
||||||
|
};
|
||||||
|
|
||||||
|
Kanban.useSingleResource = ({ onSuccess }) => {
|
||||||
|
const { props } = useKanban();
|
||||||
|
const { collection } = useCollectionContext();
|
||||||
|
const ctx = useContext(KanbanCardContext);
|
||||||
|
const { schema } = useDesignable();
|
||||||
|
const [visible] = useContext(VisibleContext);
|
||||||
|
|
||||||
|
const resource = Resource.make({
|
||||||
|
resourceName: collection?.name || props.collectionName,
|
||||||
|
resourceKey: ctx?.record?.id,
|
||||||
|
});
|
||||||
|
const service = useRequest(
|
||||||
|
(params?: any) => {
|
||||||
|
console.log('useSingleResource', params);
|
||||||
|
return resource.get({ ...params, appends: fieldFields(schema) });
|
||||||
|
},
|
||||||
|
{
|
||||||
|
formatResult: (result) => result?.data,
|
||||||
|
onSuccess,
|
||||||
|
// refreshDeps: [ctx?.record],
|
||||||
|
// defaultParams: [
|
||||||
|
// {
|
||||||
|
// defaultAppends: fieldFields(schema),
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
manual: true,
|
||||||
|
// manual,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
useEffect(() => {
|
||||||
|
if (visible) {
|
||||||
|
service.run();
|
||||||
|
}
|
||||||
|
}, [visible]);
|
||||||
|
return { resource, service, initialValues: service.data, ...service };
|
||||||
|
};
|
||||||
|
|
||||||
Kanban.Card = observer((props) => {
|
Kanban.Card = observer((props) => {
|
||||||
const [visible, setVisible] = useState(false);
|
const [visible, setVisible] = useState(false);
|
||||||
const { index, schemas } = useContext(KanbanCardContext);
|
const { index, schemas } = useContext(KanbanCardContext);
|
||||||
|
@ -91,3 +91,25 @@
|
|||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nb-kanban-item {
|
||||||
|
.ant-formily-item {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.nb-upload {
|
||||||
|
.ant-upload-list-item-actions {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ant-upload-list-picture-card-container {
|
||||||
|
margin: 0 3px 3px 0;
|
||||||
|
height: 32px;
|
||||||
|
width: 32px;
|
||||||
|
}
|
||||||
|
.ant-upload-list-picture-card .ant-upload-list-item-name {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ant-upload-list-picture .ant-upload-list-item, .ant-upload-list-picture-card .ant-upload-list-item {
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -457,7 +457,8 @@ Upload.Attachment = connect(
|
|||||||
aria-label="Zoom in"
|
aria-label="Zoom in"
|
||||||
title="Zoom in"
|
title="Zoom in"
|
||||||
className="ril-zoom-in ril__toolbarItemChild ril__builtinButton"
|
className="ril-zoom-in ril__toolbarItemChild ril__builtinButton"
|
||||||
onClick={() => {
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
const file = images[photoIndex];
|
const file = images[photoIndex];
|
||||||
saveAs(file.url, `${file.title}${file.extname}`);
|
saveAs(file.url, `${file.title}${file.extname}`);
|
||||||
}}
|
}}
|
||||||
@ -489,6 +490,7 @@ Upload.Attachment = connect(
|
|||||||
{images.map((file) => {
|
{images.map((file) => {
|
||||||
const handleClick = (e) => {
|
const handleClick = (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
const index = images.indexOf(file);
|
const index = images.indexOf(file);
|
||||||
setVisible(true);
|
setVisible(true);
|
||||||
setPhotoIndex(index);
|
setPhotoIndex(index);
|
||||||
@ -532,7 +534,9 @@ Upload.Attachment = connect(
|
|||||||
size={'small'}
|
size={'small'}
|
||||||
type={'text'}
|
type={'text'}
|
||||||
icon={<DownloadOutlined />}
|
icon={<DownloadOutlined />}
|
||||||
onClick={async () => {
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
saveAs(file.url, `${file.title}${file.extname}`);
|
saveAs(file.url, `${file.title}${file.extname}`);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
@ -553,7 +557,12 @@ Upload.Attachment = connect(
|
|||||||
prevSrc={
|
prevSrc={
|
||||||
images[(photoIndex + images.length - 1) % images.length]?.imageUrl
|
images[(photoIndex + images.length - 1) % images.length]?.imageUrl
|
||||||
}
|
}
|
||||||
onCloseRequest={() => setVisible(false)}
|
// @ts-ignore
|
||||||
|
onCloseRequest={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
setVisible(false);
|
||||||
|
}}
|
||||||
onMovePrevRequest={() =>
|
onMovePrevRequest={() =>
|
||||||
setPhotoIndex((photoIndex + images.length - 1) % images.length)
|
setPhotoIndex((photoIndex + images.length - 1) % images.length)
|
||||||
}
|
}
|
||||||
@ -568,7 +577,9 @@ Upload.Attachment = connect(
|
|||||||
aria-label="Zoom in"
|
aria-label="Zoom in"
|
||||||
title="Zoom in"
|
title="Zoom in"
|
||||||
className="ril-zoom-in ril__toolbarItemChild ril__builtinButton"
|
className="ril-zoom-in ril__toolbarItemChild ril__builtinButton"
|
||||||
onClick={() => {
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
const file = images[photoIndex];
|
const file = images[photoIndex];
|
||||||
saveAs(file.url, `${file.title}${file.extname}`);
|
saveAs(file.url, `${file.title}${file.extname}`);
|
||||||
}}
|
}}
|
||||||
|
Loading…
Reference in New Issue
Block a user