mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-21 03:10:50 +00:00

* add logs chart (#5352) * charts * chart data * log chart * delete * rename api * fix * move api * fix * fix * pro config * fix * feat: Repository interaction (#5356) * feat: 1好像功能没问题了,明天再测 * feat: 2 解决了昨天遗留的bug,但全选按钮又bug了 * feat: 3 第三版,解决了全选功能bug * feat: 4 第四版,下面改小细节 * feat: 5 我勒个痘 * feat: 6 * feat: 6 pr * feat: 7 * feat: 8 * feat: 9 * feat: 10 * feat: 11 * feat: 12 * perf: checkbox ui * refactor: tweak login loyout (#5357) Co-authored-by: Archer <545436317@qq.com> * login ui * app chat log chart pro display (#5392) * app chat log chart pro display * add canopen props * perf: pro tag tip * perf: pro tag tip * feat: openrouter provider (#5406) * perf: login ui * feat: openrouter provider * provider * perf: custom error throw * perf: emb batch (#5407) * perf: emb batch * perf: vector retry * doc * doc (#5411) * doc * fix: team folder will add to workflow * fix: generateToc shell * Tool price (#5376) * resolve conflicts for cherry-pick * fix i18n * Enhance system plugin template data structure and update ToolSelectModal to include CostTooltip component * refactor: update systemKeyCost type to support array of objects in plugin and workflow types * refactor: simplify systemKeyCost type across plugin and workflow types to a single number * refactor: streamline systemKeyCost handling in plugin and workflow components * fix * fix * perf: toolset price config;fix: workflow array selector ui (#5419) * fix: workflow array selector ui * update default model tip * perf: toolset price config * doc * fix: test * Refactor/chat (#5418) * refactor: add homepage configuration; add home chat page; add side bar animated collapse and layout * fix: fix lint rules * chore: improve logics and code * chore: more clearer logics * chore: adjust api --------- Co-authored-by: Archer <545436317@qq.com> * perf: chat setting code * del history * logo image * perf: home chat ui * feat: enhance chat response handling with external links and user info (#5427) * feat: enhance chat response handling with external links and user info * fix * cite code * perf: toolset add in workflow * fix: test * fix: search paraentId * Fix/chat (#5434) * wip: rebase了upstream * wip: adapt mobile UI * fix: fix chat page logic and UI * fix: fix UI and improve some logics * fix: model selector missing logo; vision model to retrieve file * perf: role selector * fix: chat ui * optimize export app chat log (#5436) * doc * chore: move components to proper directory; fix the api to get app list (#5437) * chore: improve team app panel display form (#5438) * feat: add home chat log tab * chore: improve team app panel display form * chore: improve log panel * fix: spec * doc * fix: log permission * fix: dataset schema required * add loading status * remove ui weight * manage log * fix: log detail per * doc * fix: log menu * rename permission * bg color * fix: app log per * fix: log key selector * fix: log * doc --------- Co-authored-by: heheer <zhiyu44@qq.com> Co-authored-by: colnii <1286949794@qq.com> Co-authored-by: 伍闲犬 <76519998+xqvvu@users.noreply.github.com> Co-authored-by: Ctrlz <143257420+ctrlz526@users.noreply.github.com> Co-authored-by: 伍闲犬 <whoeverimf5@gmail.com> Co-authored-by: heheer <heheer@sealos.io>
321 lines
9.0 KiB
TypeScript
321 lines
9.0 KiB
TypeScript
import React, {
|
|
useRef,
|
|
forwardRef,
|
|
useMemo,
|
|
useEffect,
|
|
useImperativeHandle,
|
|
type ForwardedRef,
|
|
useState
|
|
} from 'react';
|
|
import {
|
|
Menu,
|
|
MenuList,
|
|
MenuItem,
|
|
Button,
|
|
useDisclosure,
|
|
MenuButton,
|
|
Box,
|
|
Flex,
|
|
Input
|
|
} from '@chakra-ui/react';
|
|
import type { ButtonProps, MenuItemProps } from '@chakra-ui/react';
|
|
import MyIcon from '../Icon';
|
|
import { useRequest2 } from '../../../hooks/useRequest';
|
|
import MyDivider from '../MyDivider';
|
|
import type { useScrollPagination } from '../../../hooks/useScrollPagination';
|
|
import Avatar from '../Avatar';
|
|
import EmptyTip from '../EmptyTip';
|
|
|
|
/** 选择组件 Props 类型
|
|
* value: 选中的值
|
|
* placeholder: 占位符
|
|
* list: 列表数据
|
|
* isLoading: 是否加载中
|
|
* ScrollData: 分页滚动数据控制器 [useScrollPagination] 的返回值
|
|
* customOnOpen: 自定义打开回调
|
|
* customOnClose: 自定义关闭回调
|
|
* */
|
|
export type SelectProps<T = any> = Omit<ButtonProps, 'onChange'> & {
|
|
value?: T;
|
|
valueLabel?: string | React.ReactNode;
|
|
placeholder?: string;
|
|
isSearch?: boolean;
|
|
list: {
|
|
alias?: string | React.ReactNode;
|
|
icon?: string;
|
|
iconSize?: string;
|
|
label: string | React.ReactNode;
|
|
description?: string;
|
|
value: T;
|
|
showBorder?: boolean;
|
|
}[];
|
|
isLoading?: boolean;
|
|
onChange?: (val: T) => any | Promise<any>;
|
|
ScrollData?: ReturnType<typeof useScrollPagination>['ScrollData'];
|
|
customOnOpen?: () => void;
|
|
customOnClose?: () => void;
|
|
|
|
isInvalid?: boolean;
|
|
isDisabled?: boolean;
|
|
};
|
|
|
|
export const menuItemStyles: MenuItemProps = {
|
|
borderRadius: 'sm',
|
|
py: 2,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
_hover: {
|
|
backgroundColor: 'myGray.100'
|
|
},
|
|
_notLast: {
|
|
mb: 1
|
|
}
|
|
};
|
|
|
|
const MySelect = <T = any,>(
|
|
{
|
|
bg = '#fff',
|
|
placeholder,
|
|
value,
|
|
valueLabel,
|
|
isSearch = false,
|
|
width = '100%',
|
|
list = [],
|
|
onChange,
|
|
isLoading = false,
|
|
ScrollData,
|
|
customOnOpen,
|
|
customOnClose,
|
|
isInvalid,
|
|
isDisabled,
|
|
...props
|
|
}: SelectProps<T>,
|
|
ref: ForwardedRef<{
|
|
focus: () => void;
|
|
}>
|
|
) => {
|
|
const ButtonRef = useRef<HTMLButtonElement>(null);
|
|
const MenuListRef = useRef<HTMLDivElement>(null);
|
|
const SelectedItemRef = useRef<HTMLDivElement>(null);
|
|
const SearchInputRef = useRef<HTMLInputElement>(null);
|
|
|
|
const { isOpen, onOpen: defaultOnOpen, onClose: defaultOnClose } = useDisclosure();
|
|
const selectItem = useMemo(() => list.find((item) => item.value === value), [list, value]);
|
|
|
|
const onOpen = () => {
|
|
defaultOnOpen();
|
|
customOnOpen?.();
|
|
};
|
|
|
|
const onClose = () => {
|
|
defaultOnClose();
|
|
customOnClose?.();
|
|
};
|
|
|
|
const [search, setSearch] = useState('');
|
|
const filterList = useMemo(() => {
|
|
if (!isSearch || !search) {
|
|
return list;
|
|
}
|
|
return list.filter((item) => {
|
|
const text = `${item.label?.toString()}${item.alias}${item.value}`;
|
|
const regx = new RegExp(search, 'gi');
|
|
return regx.test(text);
|
|
});
|
|
}, [list, search, isSearch]);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
focus() {
|
|
onOpen();
|
|
}
|
|
}));
|
|
|
|
// Auto scroll
|
|
useEffect(() => {
|
|
if (isOpen && MenuListRef.current && SelectedItemRef.current) {
|
|
const menu = MenuListRef.current;
|
|
const selectedItem = SelectedItemRef.current;
|
|
menu.scrollTop = selectedItem.offsetTop - menu.offsetTop - 100;
|
|
|
|
if (isSearch) {
|
|
setSearch('');
|
|
}
|
|
}
|
|
}, [isSearch, isOpen]);
|
|
|
|
const { runAsync: onClickChange, loading } = useRequest2((val: T) => onChange?.(val));
|
|
|
|
const ListRender = useMemo(() => {
|
|
return (
|
|
<>
|
|
{filterList.length > 0 ? (
|
|
filterList.map((item, i) => (
|
|
<Box key={i}>
|
|
<MenuItem
|
|
{...menuItemStyles}
|
|
{...(value === item.value
|
|
? {
|
|
ref: SelectedItemRef,
|
|
color: 'primary.700',
|
|
bg: 'myGray.100'
|
|
}
|
|
: {
|
|
color: 'myGray.900'
|
|
})}
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
if (value !== item.value) {
|
|
onClickChange(item.value);
|
|
}
|
|
}}
|
|
whiteSpace={'pre-wrap'}
|
|
fontSize={'sm'}
|
|
display={'block'}
|
|
mb={0.5}
|
|
>
|
|
<Flex alignItems={'center'}>
|
|
{item.icon && (
|
|
<Avatar mr={2} src={item.icon as any} w={item.iconSize ?? '1rem'} />
|
|
)}
|
|
{item.label}
|
|
</Flex>
|
|
{item.description && (
|
|
<Box color={'myGray.500'} fontSize={'xs'}>
|
|
{item.description}
|
|
</Box>
|
|
)}
|
|
</MenuItem>
|
|
{item.showBorder && <MyDivider my={2} />}
|
|
</Box>
|
|
))
|
|
) : (
|
|
<EmptyTip py={0} />
|
|
)}
|
|
</>
|
|
);
|
|
}, [filterList, onClickChange, value]);
|
|
|
|
const isSelecting = loading || isLoading;
|
|
|
|
return (
|
|
<Box>
|
|
<Menu
|
|
autoSelect={false}
|
|
isOpen={isOpen && !isSelecting}
|
|
onOpen={onOpen}
|
|
onClose={onClose}
|
|
strategy={'fixed'}
|
|
// matchWidth
|
|
>
|
|
<MenuButton
|
|
as={Button}
|
|
ref={ButtonRef}
|
|
width={width}
|
|
px={3}
|
|
rightIcon={<MyIcon name={'core/chat/chevronDown'} w={4} color={'myGray.500'} />}
|
|
variant={'whitePrimaryOutline'}
|
|
size={'md'}
|
|
fontSize={'sm'}
|
|
textAlign={'left'}
|
|
h={'auto'}
|
|
whiteSpace={'pre-wrap'}
|
|
wordBreak={'break-word'}
|
|
transition={'border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out'}
|
|
isDisabled={isDisabled}
|
|
_active={{
|
|
transform: 'none'
|
|
}}
|
|
bg={bg ? (isOpen ? '#fff' : bg) : '#fff'}
|
|
color={isOpen ? 'primary.700' : 'myGray.700'}
|
|
borderColor={isInvalid ? 'red.500' : isOpen ? 'primary.300' : 'myGray.200'}
|
|
boxShadow={
|
|
isOpen
|
|
? isInvalid
|
|
? '0px 0px 0px 2.4px rgba(255, 0, 0, 0.15)'
|
|
: '0px 0px 0px 2.4px rgba(51, 112, 255, 0.15)'
|
|
: 'none'
|
|
}
|
|
_hover={isInvalid ? { borderColor: 'red.400' } : { borderColor: 'primary.300' }}
|
|
{...props}
|
|
>
|
|
<Flex alignItems={'center'} justifyContent="space-between" w="100%">
|
|
<Flex alignItems={'center'}>
|
|
{isSelecting && <MyIcon mr={2} name={'common/loading'} w={'1rem'} />}
|
|
{valueLabel ? (
|
|
<>{valueLabel}</>
|
|
) : (
|
|
<>
|
|
{isSearch && isOpen ? (
|
|
<Input
|
|
ref={SearchInputRef}
|
|
autoFocus
|
|
variant={'unstyled'}
|
|
value={search}
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
placeholder={
|
|
(typeof selectItem?.alias === 'string' ? selectItem?.alias : '') ||
|
|
(typeof selectItem?.label === 'string' ? selectItem?.label : placeholder)
|
|
}
|
|
size={'sm'}
|
|
w={'100%'}
|
|
color={'myGray.700'}
|
|
onBlur={() => {
|
|
setTimeout(() => {
|
|
SearchInputRef?.current?.focus();
|
|
}, 0);
|
|
}}
|
|
/>
|
|
) : (
|
|
<>
|
|
{selectItem?.icon && (
|
|
<Avatar
|
|
mr={2}
|
|
src={selectItem.icon as any}
|
|
w={selectItem.iconSize ?? '1rem'}
|
|
/>
|
|
)}
|
|
{selectItem?.alias || selectItem?.label || placeholder}
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</Flex>
|
|
</Flex>
|
|
</MenuButton>
|
|
|
|
<MenuList
|
|
ref={MenuListRef}
|
|
className={props.className}
|
|
w={(() => {
|
|
const w = ButtonRef.current?.clientWidth;
|
|
if (w) {
|
|
return `${w}px !important`;
|
|
}
|
|
return Array.isArray(width)
|
|
? width.map((item) => `${item} !important`)
|
|
: `${width} !important`;
|
|
})()}
|
|
px={'6px'}
|
|
py={'6px'}
|
|
border={'1px solid #fff'}
|
|
boxShadow={
|
|
'0px 2px 4px rgba(161, 167, 179, 0.25), 0px 0px 1px rgba(121, 141, 159, 0.25);'
|
|
}
|
|
zIndex={99}
|
|
maxH={'45vh'}
|
|
overflowY={'auto'}
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
{ScrollData ? <ScrollData>{ListRender}</ScrollData> : ListRender}
|
|
</MenuList>
|
|
</Menu>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default forwardRef(MySelect) as <T>(
|
|
props: SelectProps<T> & { ref?: React.Ref<HTMLSelectElement> }
|
|
) => JSX.Element;
|