mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
* feat: support linkage rules setting for association block action * chore: linkage rule * fix: bug * fix: bug * refactor: linkage rule * refactor: code imporve * fix: bug * fix: bug * fix: bug * fix: bug * refactor: code imporve * fix: test * fix: test * fix: test * test: e2e test * fix: bug * fix: bug * fix: test * fix: e2e test * fix: bug * chore: support legacy leftVar in linkage rules * fix: bug * fix: bug * fix: bug * fix: bug * fix: bug * fix: bug * fix: bug * fix: create submit linkage rule * fix: action panel * refactor: code improve * fix: bug * fix: test * fix: test * fix: code improve * fix: e2e test * fix: bug * refactor: refresh & expend action support linkage rule * refactor: code improve * fix: test * fix: bug * fix: bug * fix: e2e test * fix: e2e test * fix: e2e test * fix: test * refactor: code improve * fix: e2e test * fix: bug * fix: e2e test * fix: e2e test * fix: test * fix: e2e test * fix: e2e test * fix: bug
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import React, { createContext, useContext, useMemo } from 'react';
|
|
import { useACLRoleContext } from '../acl';
|
|
import { ReturnTypeOfUseRequest, useAPIClient, useRequest } from '../api-client';
|
|
import { useAppSpin } from '../application';
|
|
import { useCompile } from '../schema-component';
|
|
|
|
export const CurrentUserContext = createContext<ReturnTypeOfUseRequest>(null);
|
|
CurrentUserContext.displayName = 'CurrentUserContext';
|
|
|
|
export const useCurrentUserContext = () => {
|
|
return useContext(CurrentUserContext);
|
|
};
|
|
|
|
export const useIsLoggedIn = () => {
|
|
const ctx = useContext(CurrentUserContext);
|
|
return !!ctx?.data?.data;
|
|
};
|
|
|
|
export const useCurrentRoles = () => {
|
|
const { allowAnonymous } = useACLRoleContext();
|
|
const { data } = useCurrentUserContext() || {};
|
|
const compile = useCompile();
|
|
const options = useMemo(() => {
|
|
const roles = (data?.data?.roles || []).map(({ name, title }) => ({ name, title: compile(title) }));
|
|
if (allowAnonymous) {
|
|
roles.push({
|
|
title: 'Anonymous',
|
|
name: 'anonymous',
|
|
});
|
|
}
|
|
return roles;
|
|
}, [allowAnonymous, data?.data?.roles, compile]);
|
|
return options;
|
|
};
|
|
|
|
export const CurrentUserProvider = (props) => {
|
|
const api = useAPIClient();
|
|
const result = useRequest<any>(
|
|
() =>
|
|
api
|
|
.request({
|
|
url: '/auth:check',
|
|
skipNotify: true,
|
|
skipAuth: true,
|
|
})
|
|
.then((res) => res?.data),
|
|
{
|
|
manual: !api.auth.token,
|
|
},
|
|
);
|
|
|
|
const { render } = useAppSpin();
|
|
|
|
if (result.loading) {
|
|
return render();
|
|
}
|
|
return <CurrentUserContext.Provider value={result}>{props.children}</CurrentUserContext.Provider>;
|
|
};
|