fix: fix switch role and input style (#3226)

* fix: fix switch role and input style

* refactor: remove useless code
This commit is contained in:
Zeke Zhang 2023-12-19 07:50:53 +08:00 committed by GitHub
parent 6d04914e32
commit c129889df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 83 additions and 104 deletions

View File

@ -0,0 +1,44 @@
import { Select } from 'antd';
import React, { useRef, useState } from 'react';
export interface SelectWithTitleProps {
title?: any;
defaultValue?: any;
options?: any;
fieldNames?: any;
onChange?: (...args: any[]) => void;
}
export function SelectWithTitle({ title, defaultValue, onChange, options, fieldNames }: SelectWithTitleProps) {
const [open, setOpen] = useState(false);
const timerRef = useRef<any>(null);
return (
<div
style={{ alignItems: 'center', display: 'flex', justifyContent: 'space-between' }}
onClick={(e) => {
e.stopPropagation();
setOpen((v) => !v);
}}
onMouseLeave={() => {
timerRef.current = setTimeout(() => {
setOpen(false);
}, 200);
}}
>
{title}
<Select
open={open}
popupMatchSelectWidth={false}
bordered={false}
defaultValue={defaultValue}
onChange={onChange}
fieldNames={fieldNames}
options={options}
style={{ textAlign: 'right', minWidth: 100 }}
onMouseEnter={() => {
clearTimeout(timerRef.current);
}}
/>
</div>
);
}

View File

@ -0,0 +1 @@
export * from './SelectWithTitle';

View File

@ -22,9 +22,11 @@ export * from './auth';
export * from './block-provider';
export * from './china-region';
export * from './collection-manager';
export * from './common';
export * from './css-variable';
export * from './document-title';
export * from './filter-provider';
export * from './flag-provider';
export * from './formula';
export * from './global-theme';
export * from './hooks';
@ -44,7 +46,6 @@ export * from './schema-settings';
export * from './schema-templates';
export * from './style';
export * from './system-settings';
export * from './testUtils';
export * from './user';
export * from './variables';
export * from './flag-provider';
export * from './testUtils';

View File

@ -0,0 +1,9 @@
import { test } from '@nocobase/test/client';
test('switch role', async ({ page, mockPage }) => {
await mockPage().goto();
await page.getByTestId('user-center-button').hover();
await page.getByRole('menuitem', { name: 'Switch role' }).click();
await page.getByRole('option', { name: 'Member' }).click();
});

View File

@ -4,9 +4,9 @@ import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
import { useTranslation } from 'react-i18next';
import {
SchemaInitializerItem,
SchemaInitializerMenu,
useSchemaInitializer,
useSchemaInitializerMenuItems,
SchemaInitializerMenu,
} from '../../application';
import { useCompile } from '../../schema-component';
import { useSchemaTemplateManager } from '../../schema-templates';
@ -48,7 +48,7 @@ export const SearchCollections = ({ value: outValue, onChange }) => {
<Input
ref={inputRef}
allowClear
style={{ padding: '0 4px 6px' }}
style={{ padding: '0 4px 6px', boxShadow: 'none' }}
bordered={false}
placeholder={t('Search and select collection')}
value={value}

View File

@ -18,7 +18,6 @@ import {
MenuProps,
Modal,
ModalFuncProps,
Select,
Space,
Switch,
} from 'antd';
@ -33,7 +32,6 @@ import React, {
useMemo,
// @ts-ignore
useTransition as useReactTransition,
useRef,
useState,
} from 'react';
import { createPortal } from 'react-dom';
@ -77,6 +75,7 @@ import {
useFormActiveFields,
} from '../block-provider/hooks';
import { useCollectionFilterOptionsV2 } from '../collection-manager/action-hooks';
import { SelectWithTitle, SelectWithTitleProps } from '../common/SelectWithTitle';
import {
FilterBlockType,
getSupportFieldsByAssociation,
@ -1976,45 +1975,6 @@ export const isPatternDisabled = (fieldSchema: Schema) => {
return fieldSchema?.['x-component-props']?.['pattern-disable'] == true;
};
interface SelectWithTitleProps {
title?: any;
defaultValue?: any;
options?: any;
onChange?: (...args: any[]) => void;
}
export function SelectWithTitle({ title, defaultValue, onChange, options }: SelectWithTitleProps) {
const [open, setOpen] = useState(false);
const timerRef = useRef<any>(null);
return (
<div
style={{ alignItems: 'center', display: 'flex', justifyContent: 'space-between' }}
onClick={(e) => {
e.stopPropagation();
setOpen((v) => !v);
}}
onMouseLeave={() => {
timerRef.current = setTimeout(() => {
setOpen(false);
}, 200);
}}
>
{title}
<Select
open={open}
popupMatchSelectWidth={false}
bordered={false}
defaultValue={defaultValue}
onChange={onChange}
options={options}
style={{ textAlign: 'right', minWidth: 100 }}
onMouseEnter={() => {
clearTimeout(timerRef.current);
}}
/>
</div>
);
}
function getFieldDefaultValue(fieldSchema: ISchema, collectionField: CollectionFieldOptions) {
const result = fieldSchema?.default ?? collectionField?.defaultValue;
return result;

View File

@ -120,7 +120,6 @@ export const useChangePassword = () => {
return useMemo<MenuProps['items'][0]>(() => {
return {
role: 'button',
key: 'password',
eventKey: 'ChangePassword',
onClick: () => {

View File

@ -76,7 +76,6 @@ export const SettingsMenu: React.FC<{
return [
{
role: 'button',
key: 'cache',
label: t('Clear cache'),
onClick: async () => {
@ -85,7 +84,6 @@ export const SettingsMenu: React.FC<{
},
},
{
role: 'button',
key: 'reboot',
label: t('Restart application'),
onClick: async () => {
@ -129,7 +127,6 @@ export const SettingsMenu: React.FC<{
},
...controlApp,
{
role: 'button',
key: 'signout',
label: t('Sign out'),
onClick: async () => {

View File

@ -126,7 +126,6 @@ export const useEditProfile = () => {
return useMemo<MenuProps['items'][0]>(() => {
return {
role: 'button',
key: 'profile',
eventKey: 'EditProfile',
onClick: () => {
@ -134,7 +133,7 @@ export const useEditProfile = () => {
ctx?.setVisible(false);
},
label: (
<div aria-label="edit-profile">
<div>
{t('Edit profile')}
<ActionContextProvider value={{ visible, setVisible }}>
<div onClick={(e) => e.stopPropagation()}>

View File

@ -11,7 +11,6 @@ export const useLanguageSettings = () => {
const enabledLanguages: string[] = useMemo(() => data?.data?.enabledLanguages || [], [data?.data?.enabledLanguages]);
const result = useMemo<MenuProps['items'][0]>(() => {
return {
role: 'button',
key: 'language',
eventKey: 'LanguageSettings',
label: (

View File

@ -1,7 +1,8 @@
import { MenuProps, Select } from 'antd';
import React, { useMemo, useRef, useState } from 'react';
import { MenuProps } from 'antd';
import React, { useMemo } from 'react';
import { useTranslation } from 'react-i18next';
import { APIClient, useAPIClient } from '../api-client';
import { useAPIClient } from '../api-client';
import { SelectWithTitle } from '../common';
import { useCurrentRoles } from './CurrentUserProvider';
export const useSwitchRole = () => {
@ -10,12 +11,27 @@ export const useSwitchRole = () => {
const { t } = useTranslation();
const result = useMemo<MenuProps['items'][0]>(() => {
return {
role: 'button',
key: 'role',
eventKey: 'SwitchRole',
label: <SelectWithTitle {...{ t, roles, api }} />,
label: (
<SelectWithTitle
title={t('Switch role')}
fieldNames={{
label: 'title',
value: 'name',
}}
options={roles}
defaultValue={api.auth.role}
onChange={async (roleName) => {
api.auth.setRole(roleName);
await api.resource('users').setDefaultRole({ values: { roleName } });
location.reload();
window.location.reload();
}}
/>
),
};
}, [api, history, roles]);
}, [api, roles, t]);
if (roles.length <= 1) {
return null;
@ -23,49 +39,3 @@ export const useSwitchRole = () => {
return result;
};
function SelectWithTitle({ t, roles, api }: { t; roles: any; api: APIClient }) {
const [open, setOpen] = useState(false);
const timerRef = useRef<any>(null);
return (
<div
aria-label="switch-role"
style={{
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
}}
onClick={() => setOpen((v) => !v)}
onMouseLeave={() => {
timerRef.current = setTimeout(() => {
setOpen(false);
}, 200);
}}
>
{t('Switch role')}
<Select
style={{ textAlign: 'right', minWidth: 100 }}
open={open}
data-testid="select-switch-role"
bordered={false}
popupMatchSelectWidth={false}
fieldNames={{
label: 'title',
value: 'name',
}}
options={roles}
value={api.auth.role}
onChange={async (roleName) => {
api.auth.setRole(roleName);
await api.resource('users').setDefaultRole({ values: { roleName } });
location.reload();
window.location.reload();
}}
onMouseEnter={() => {
clearTimeout(timerRef.current);
}}
/>
</div>
);
}