mirror of
https://github.com/labring/FastGPT.git
synced 2025-08-02 20:58:12 +00:00
86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
import React, { useCallback, useRef } from 'react';
|
|
import { ModalFooter, ModalBody, Input, useDisclosure, Button, Box } from '@chakra-ui/react';
|
|
import MyModal from '@/components/MyModal';
|
|
|
|
export const useEditTitle = ({
|
|
title,
|
|
tip,
|
|
placeholder = ''
|
|
}: {
|
|
title: string;
|
|
tip?: string;
|
|
placeholder?: string;
|
|
}) => {
|
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
|
|
|
const inputRef = useRef<HTMLInputElement | null>(null);
|
|
const onSuccessCb = useRef<(content: string) => void | Promise<void>>();
|
|
const onErrorCb = useRef<(err: any) => void>();
|
|
const defaultValue = useRef('');
|
|
|
|
const onOpenModal = useCallback(
|
|
({
|
|
defaultVal,
|
|
onSuccess,
|
|
onError
|
|
}: {
|
|
defaultVal: string;
|
|
onSuccess: (content: string) => any;
|
|
onError?: (err: any) => void;
|
|
}) => {
|
|
onOpen();
|
|
onSuccessCb.current = onSuccess;
|
|
onErrorCb.current = onError;
|
|
defaultValue.current = defaultVal;
|
|
},
|
|
[onOpen]
|
|
);
|
|
|
|
const onclickConfirm = useCallback(async () => {
|
|
if (!inputRef.current) return;
|
|
try {
|
|
const val = inputRef.current.value;
|
|
await onSuccessCb.current?.(val);
|
|
|
|
onClose();
|
|
} catch (err) {
|
|
onErrorCb.current?.(err);
|
|
}
|
|
}, [onClose]);
|
|
|
|
// eslint-disable-next-line react/display-name
|
|
const EditModal = useCallback(
|
|
() => (
|
|
<MyModal isOpen={isOpen} onClose={onClose} title={title}>
|
|
<ModalBody>
|
|
{!!tip && (
|
|
<Box mb={2} color={'myGray.500'} fontSize={'sm'}>
|
|
{tip}
|
|
</Box>
|
|
)}
|
|
|
|
<Input
|
|
ref={inputRef}
|
|
defaultValue={defaultValue.current}
|
|
placeholder={placeholder}
|
|
autoFocus
|
|
maxLength={20}
|
|
/>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button mr={3} variant={'base'} onClick={onClose}>
|
|
取消
|
|
</Button>
|
|
<Button onClick={onclickConfirm}>确认</Button>
|
|
</ModalFooter>
|
|
</MyModal>
|
|
),
|
|
[isOpen, onClose, onclickConfirm, placeholder, tip, title]
|
|
);
|
|
|
|
return {
|
|
onOpenModal,
|
|
EditModal
|
|
};
|
|
};
|