a57c93d35b
* chore: upgrade vitest to v0.34.3 * feat: setup NocoBase * chore: preparing test env * test: add a test of rigster * refactor: rename test dir to testUtils * chore: add tests * chore: add ci for e2e * chore: fix ci * chore: avoid error in CI * chore: add some utils for test * chore: make more stable * chore: should not close server in CI * chore: add comments * chore: change output dir * fix: should use current branch to run tests * chore: should request systemSettings by api in e2e * chore: should build first in e2e CI * chore: remove key * chore: use execa to replace execSync * refactor: extract test suite * chore: add gotoPage * chore: update uid of pageSchema * chore: update collection name * chore: use faker.js to generate data * refactor: extract page config * chore: ignore for association fields in faker * chore: add testid * chore: optimize action designer * chore: associationFilter.Item designer * chore: AssiciationFilter & BlockItem * Revert "chore: AssiciationFilter & BlockItem" This reverts commit b418df650e106fd0c8e23035d2f75acf60dcafe4. * Revert "chore: associationFilter.Item designer" This reverts commit 7aa4d35c1af7f3a780b370d8b1b44aac01697be3. * Revert "chore: optimize action designer" This reverts commit ff717b972ffd64f7968d565a3a84ad617ff889e2. * chore: optimize Designer * chore: compat with older browsers * chore: use describe to avoid hooks is not run * chore: add no-floating-promises to eslint rules * chore: support argv * chore: demo * chore: better testId * chore: change .e2e.ts to .test.ts * fix(SchemaInitializer): avoid error * refactor: move e2eUtils.ts to @nocobase/test * fix: move e2eUtils to client * chore: remove uselesscode * refactor: add .env.e2e.example * chore: optimize log * refactor: use mockPage to replace gotoPage * chore: update env.e2e * chore: add APP_BASE_URL * chore: gitigore * test: add test related of menu * chore: add SOCKET_PATH in env * fix(vscode): load env when using vscode plugin
238 lines
6.2 KiB
TypeScript
238 lines
6.2 KiB
TypeScript
import { observer, useForm } from '@formily/react';
|
|
import { action } from '@formily/reactive';
|
|
import {
|
|
useAPIClient,
|
|
useActionContext,
|
|
useCollectionFieldFormValues,
|
|
useCollectionManager,
|
|
useCompile,
|
|
useRequest,
|
|
} from '@nocobase/client';
|
|
import { error, lodash } from '@nocobase/utils/client';
|
|
import { Select, message } from 'antd';
|
|
import React, { useContext, useEffect } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { GraphCollectionContext } from './components/CollectionNodeProvder';
|
|
|
|
export const useValuesFromRecord = (options, data) => {
|
|
const result = useRequest(() => Promise.resolve({ data }), {
|
|
...options,
|
|
manual: true,
|
|
});
|
|
const ctx = useActionContext();
|
|
useEffect(() => {
|
|
if (ctx.visible) {
|
|
result.run();
|
|
}
|
|
}, [ctx.visible]);
|
|
return result;
|
|
};
|
|
|
|
export const SourceCollection = observer(
|
|
() => {
|
|
const { record } = useContext(GraphCollectionContext);
|
|
const compile = useCompile();
|
|
return (
|
|
<div>
|
|
<Select
|
|
data-testid="antd-select"
|
|
popupMatchSelectWidth={false}
|
|
disabled
|
|
value={record.name}
|
|
options={[{ value: record.name, label: compile(record.title) }]}
|
|
/>
|
|
</div>
|
|
);
|
|
},
|
|
{ displayName: 'SourceCollection' },
|
|
);
|
|
|
|
export const useCancelAction = () => {
|
|
const form = useForm();
|
|
const ctx = useActionContext();
|
|
return {
|
|
async run() {
|
|
ctx.setVisible(false);
|
|
form.reset();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useCreateActionAndRefreshCM = (setTargetNode) => {
|
|
const form = useForm();
|
|
const api = useAPIClient();
|
|
const ctx = useActionContext();
|
|
const { refreshCM } = useCollectionManager();
|
|
|
|
return {
|
|
async run() {
|
|
await form.submit();
|
|
await api.resource('collections').create({ values: form.values });
|
|
ctx.setVisible(false);
|
|
await form.reset();
|
|
setTargetNode('last');
|
|
await refreshCM();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useCreateAction = (collectionName, targetId?) => {
|
|
const form = useForm();
|
|
const api = useAPIClient();
|
|
const ctx = useActionContext();
|
|
const { refreshCM } = useCollectionManager();
|
|
const { positionTargetNode, openPorts } = useContext(GraphCollectionContext);
|
|
const { getValues } = useCollectionFieldFormValues();
|
|
|
|
return {
|
|
async run() {
|
|
await form.submit();
|
|
const values = getValues();
|
|
const formValues = lodash.omit(values, [
|
|
'key',
|
|
'uiSchemaUid',
|
|
'collectionName',
|
|
'autoCreateReverseField',
|
|
'uiSchema.x-uid',
|
|
'reverseField.key',
|
|
'reverseField.uiSchemaUid',
|
|
]);
|
|
const isOpenPorts = !['obo', 'oho', 'o2o', 'o2m', 'm2o', 'm2m', 'linkTo', 'id'].includes(values.interface);
|
|
const {
|
|
data: { data },
|
|
} = await api.resource('collections.fields', collectionName).create({
|
|
values: formValues,
|
|
});
|
|
targetId &&
|
|
(await api.resource('fields').move({
|
|
sourceId: data.key,
|
|
targetId,
|
|
targetScope: collectionName,
|
|
method: 'insertAfter',
|
|
}));
|
|
ctx.setVisible(false);
|
|
await form.reset();
|
|
positionTargetNode();
|
|
isOpenPorts && openPorts && openPorts();
|
|
await refreshCM();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useUpdateFieldAction = ({ collectionName, name, key }) => {
|
|
const { refreshCM } = useCollectionManager();
|
|
const { t } = useTranslation();
|
|
const form = useForm();
|
|
const ctx = useActionContext();
|
|
const api = useAPIClient();
|
|
const { positionTargetNode, node } = useContext(GraphCollectionContext);
|
|
return {
|
|
async run() {
|
|
await form.submit();
|
|
await api.resource('collections.fields', collectionName).update({
|
|
filterByTk: name,
|
|
values: form.values,
|
|
});
|
|
ctx.setVisible(false);
|
|
message.success(t('Saved successfully'));
|
|
positionTargetNode();
|
|
refreshCM();
|
|
node.setPortProp(key, 'uiSchema', { title: form.values?.uiSchema.title });
|
|
await form.reset();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useUpdateCollectionActionAndRefreshCM = () => {
|
|
const { t } = useTranslation();
|
|
const form = useForm();
|
|
const ctx = useActionContext();
|
|
const { name } = form.values;
|
|
const api = useAPIClient();
|
|
const { refreshCM } = useCollectionManager();
|
|
const { positionTargetNode } = useContext(GraphCollectionContext);
|
|
return {
|
|
async run() {
|
|
await form.submit();
|
|
await api.resource('collections').update({
|
|
filterByTk: name,
|
|
values: { ...lodash.omit(form.values, ['fields']) },
|
|
});
|
|
ctx.setVisible(false);
|
|
message.success(t('Saved successfully'));
|
|
await form.reset();
|
|
positionTargetNode();
|
|
refreshCM();
|
|
},
|
|
};
|
|
};
|
|
|
|
const useDestroyAction = (name) => {
|
|
const api = useAPIClient();
|
|
return {
|
|
async run() {
|
|
await api.resource('collections').destroy({
|
|
filterByTk: name,
|
|
});
|
|
await api.resource('graphPositions').destroy({
|
|
filter: { collectionName: name },
|
|
});
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useDestroyActionAndRefreshCM = (props) => {
|
|
const { name } = props;
|
|
const { run } = useDestroyAction(name);
|
|
const { refreshCM } = useCollectionManager();
|
|
const { positionTargetNode } = useContext(GraphCollectionContext);
|
|
return {
|
|
async run() {
|
|
await run();
|
|
positionTargetNode('destory');
|
|
await refreshCM();
|
|
},
|
|
};
|
|
};
|
|
|
|
const useDestroyFieldAction = (collectionName, name) => {
|
|
const api = useAPIClient();
|
|
const { positionTargetNode } = useContext(GraphCollectionContext);
|
|
return {
|
|
async run() {
|
|
await api.resource('collections.fields', collectionName).destroy({
|
|
filterByTk: name,
|
|
});
|
|
positionTargetNode();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useDestroyFieldActionAndRefreshCM = (props) => {
|
|
const { collectionName, name } = props;
|
|
const { refreshCM } = useCollectionManager();
|
|
const { run } = useDestroyFieldAction(collectionName, name);
|
|
return {
|
|
async run() {
|
|
await run();
|
|
await refreshCM();
|
|
},
|
|
};
|
|
};
|
|
|
|
export const useAsyncDataSource = (service: any) => {
|
|
return (field: any, { targetScope }) => {
|
|
field.loading = true;
|
|
service(targetScope)
|
|
.then(
|
|
action.bound((data: any) => {
|
|
field.dataSource = data;
|
|
field.loading = false;
|
|
}),
|
|
)
|
|
.catch((err) => {
|
|
error(err);
|
|
});
|
|
};
|
|
};
|