mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-03-01 00:00:26 +00:00
Replaces legacy tag fetching logic in napcat-common with a new mirror.ts module that centralizes GitHub mirror configuration, selection, and tag retrieval. Updates helper.ts to use the new mirror system and semver comparison, and exports compareSemVer for broader use. Updates workflows and scripts to generate and propagate build version information, and improves build status comment formatting for PRs. Also updates release workflow to use a new OpenAI key and model.
102 lines
2.4 KiB
TypeScript
102 lines
2.4 KiB
TypeScript
import { Button } from '@heroui/button';
|
|
import {
|
|
ModalBody,
|
|
ModalContent,
|
|
ModalFooter,
|
|
ModalHeader,
|
|
Modal as NextUIModal,
|
|
useDisclosure,
|
|
} from '@heroui/modal';
|
|
import React from 'react';
|
|
|
|
export interface ModalProps {
|
|
content: React.ReactNode;
|
|
title?: React.ReactNode;
|
|
size?: React.ComponentProps<typeof NextUIModal>['size'];
|
|
scrollBehavior?: React.ComponentProps<typeof NextUIModal>['scrollBehavior'];
|
|
onClose?: () => void;
|
|
onConfirm?: () => void;
|
|
onCancel?: () => void;
|
|
backdrop?: 'opaque' | 'blur' | 'transparent';
|
|
showCancel?: boolean;
|
|
dismissible?: boolean;
|
|
confirmText?: string;
|
|
cancelText?: string;
|
|
hideFooter?: boolean;
|
|
}
|
|
|
|
const Modal: React.FC<ModalProps> = React.memo((props) => {
|
|
const {
|
|
backdrop = 'blur',
|
|
title,
|
|
content,
|
|
showCancel = true,
|
|
dismissible,
|
|
confirmText = '确定',
|
|
cancelText = '取消',
|
|
hideFooter = false,
|
|
onClose,
|
|
onConfirm,
|
|
onCancel,
|
|
...rest
|
|
} = props;
|
|
const { onClose: onNativeClose } = useDisclosure();
|
|
|
|
return (
|
|
<NextUIModal
|
|
defaultOpen
|
|
backdrop={backdrop}
|
|
isDismissable={dismissible}
|
|
onClose={() => {
|
|
onClose?.();
|
|
onNativeClose();
|
|
}}
|
|
classNames={{
|
|
backdrop: 'z-[99]',
|
|
wrapper: 'z-[99]',
|
|
}}
|
|
{...rest}
|
|
>
|
|
<ModalContent>
|
|
{(nativeClose) => (
|
|
<>
|
|
{title && (
|
|
<ModalHeader className='flex flex-col gap-1'>{title}</ModalHeader>
|
|
)}
|
|
<ModalBody className='break-all'>{content}</ModalBody>
|
|
{!hideFooter && (
|
|
<ModalFooter>
|
|
{showCancel && (
|
|
<Button
|
|
color='primary'
|
|
variant='light'
|
|
onPress={() => {
|
|
onCancel?.();
|
|
nativeClose();
|
|
}}
|
|
>
|
|
{cancelText}
|
|
</Button>
|
|
)}
|
|
<Button
|
|
color='primary'
|
|
onPress={() => {
|
|
onConfirm?.();
|
|
nativeClose();
|
|
}}
|
|
>
|
|
{confirmText}
|
|
</Button>
|
|
</ModalFooter>
|
|
)}
|
|
</>
|
|
)}
|
|
</ModalContent>
|
|
</NextUIModal>
|
|
);
|
|
});
|
|
|
|
Modal.displayName = 'Modal';
|
|
|
|
export default Modal;
|