mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 01:15:58 +00:00
Merge branch 'main' into next
This commit is contained in:
commit
486f76fa46
@ -7,16 +7,25 @@
|
||||
* For more information, please refer to: https://www.nocobase.com/agreement.
|
||||
*/
|
||||
|
||||
import { useCollectionField, useCollectionManager, useRequest } from '@nocobase/client';
|
||||
import { useField } from '@formily/react';
|
||||
import { useAPIClient, useCollectionField, useCollectionManager, useRequest } from '@nocobase/client';
|
||||
|
||||
export function useStorageRules(storage) {
|
||||
const name = storage ?? '';
|
||||
const apiClient = useAPIClient();
|
||||
const field = useField<any>();
|
||||
const { loading, data } = useRequest<any>(
|
||||
{
|
||||
url: `storages:getRules/${name}`,
|
||||
async () => {
|
||||
if (field.pattern !== 'editable') {
|
||||
return null;
|
||||
}
|
||||
return apiClient.request({
|
||||
url: `storages:getRules/${name}`,
|
||||
});
|
||||
},
|
||||
{
|
||||
refreshDeps: [name],
|
||||
cacheKey: name,
|
||||
},
|
||||
);
|
||||
return (!loading && data?.data) || null;
|
||||
|
Loading…
Reference in New Issue
Block a user