refactor: collectionNotAllowViewPlaceholder (#5208)

This commit is contained in:
Katherine 2024-09-05 21:02:08 +08:00 committed by GitHub
parent 9d0602ea23
commit 325c4341ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 49 additions and 2 deletions

View File

@ -20,6 +20,7 @@ import { useResourceActionContext } from '../collection-manager/ResourceActionPr
import { useDataSourceKey } from '../data-source/data-source/DataSourceProvider';
import { useRecord } from '../record-provider';
import { SchemaComponentOptions, useDesignable } from '../schema-component';
import { CollectionNotAllowViewPlaceholder } from '../data-source';
import { useApp } from '../application';
@ -233,7 +234,7 @@ export const ACLCollectionProvider = (props) => {
}
const params = parseAction(actionPath, { schema });
if (!params) {
return null;
return <CollectionNotAllowViewPlaceholder />;
}
const [_, actionName] = actionPath.split(':');
params.actionName = actionName;

View File

@ -16,6 +16,7 @@ import { useDataSourceManager } from '../data-source';
import { DEFAULT_DATA_SOURCE_KEY } from '../../data-source/data-source/DataSourceManager';
import { useCollection } from '../collection';
import { BlockItemCard } from '../../schema-component/antd/block-item/BlockItemCard';
import { AnyKindOfDictionary } from 'lodash';
export interface CollectionDeletedPlaceholderProps {
type: 'Collection' | 'Field' | 'Data Source' | 'Block template';
@ -112,3 +113,47 @@ export const CollectionDeletedPlaceholder: FC<CollectionDeletedPlaceholderProps>
return null;
};
/**
* @internal
*/
export const CollectionNotAllowViewPlaceholder: FC<any> = () => {
const { designable } = useDesignable();
const { t } = useTranslation();
const dataSource = useDataSource();
const compile = useCompile();
const collection = useCollection();
const dataSourceManager = useDataSourceManager();
const nameValue = useMemo(() => {
const dataSourcePrefix =
dataSourceManager?.getDataSources().length >= 1 && dataSource && dataSource.key !== DEFAULT_DATA_SOURCE_KEY
? `${compile(dataSource.displayName || dataSource.key)} > `
: '';
if (collection) {
return `${dataSourcePrefix}${collection.name}`;
}
const collectionPrefix = collection
? `${compile(collection.title) || collection.name || collection.tableName} > `
: '';
return `${dataSourcePrefix}${collectionPrefix}${collection.name}`;
}, []);
const messageValue = useMemo(() => {
return t(
`The current user only has the UI configuration permission, but don't have view permission for collection "{{name}}"`,
{
name: nameValue,
},
).replaceAll('&gt;', '>');
}, [nameValue, t]);
if (designable) {
return (
<BlockItemCard>
<Result status="404" subTitle={messageValue} />
</BlockItemCard>
);
}
return null;
};

View File

@ -971,5 +971,6 @@
"Use simple pagination mode": "使用简单分页模式",
"Sorry, the page you visited does not exist.": "抱歉,你访问的页面不存在。",
"Set Template Engine": "设置模板引擎",
"Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "在分页时跳过获取表记录总数,以加快加载速度,建议对有大量数据的数据表开启此选项"
"Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "在分页时跳过获取表记录总数,以加快加载速度,建议对有大量数据的数据表开启此选项",
"The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "当前用户只有 UI 配置权限,但没有数据表 \"{{name}}\" 查看权限。"
}