mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-16 13:20:33 +00:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
107 lines
2.4 KiB
TypeScript
107 lines
2.4 KiB
TypeScript
// Dialog Context
|
|
import React from 'react';
|
|
|
|
import Modal from '@/components/modal';
|
|
import type { ModalProps } from '@/components/modal';
|
|
|
|
export interface AlertProps
|
|
extends Omit<ModalProps, 'onCancel' | 'showCancel' | 'cancelText'> {
|
|
onConfirm?: () => void
|
|
}
|
|
|
|
export interface ConfirmProps extends ModalProps {
|
|
onConfirm?: () => void
|
|
onCancel?: () => void
|
|
}
|
|
|
|
export interface ModalItem extends ModalProps {
|
|
id: number
|
|
}
|
|
|
|
export interface DialogContextProps {
|
|
alert: (config: AlertProps) => void
|
|
confirm: (config: ConfirmProps) => void
|
|
}
|
|
|
|
export interface DialogProviderProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export const DialogContext = React.createContext<DialogContextProps>({
|
|
alert: () => {},
|
|
confirm: () => {},
|
|
});
|
|
|
|
const DialogProvider: React.FC<DialogProviderProps> = ({ children }) => {
|
|
const [dialogs, setDialogs] = React.useState<ModalItem[]>([]);
|
|
const alert = (config: AlertProps) => {
|
|
const { onConfirm, size = 'md', ...rest } = config;
|
|
|
|
setDialogs((before) => {
|
|
const id = before[before.length - 1]?.id + 1 || 0;
|
|
|
|
return [
|
|
...before,
|
|
{
|
|
id,
|
|
size,
|
|
backdrop: 'blur',
|
|
showCancel: false,
|
|
onConfirm: () => {
|
|
onConfirm?.();
|
|
setTimeout(() => {
|
|
setDialogs((before) => before.filter((item) => item.id !== id));
|
|
}, 300);
|
|
},
|
|
...rest,
|
|
},
|
|
];
|
|
});
|
|
};
|
|
|
|
const confirm = (config: ConfirmProps) => {
|
|
const { onConfirm, onCancel, size = 'md', ...rest } = config;
|
|
|
|
setDialogs((before) => {
|
|
const id = before[before.length - 1]?.id + 1 || 0;
|
|
|
|
return [
|
|
...before,
|
|
{
|
|
id,
|
|
size,
|
|
backdrop: 'blur',
|
|
showCancel: true,
|
|
onConfirm: () => {
|
|
onConfirm?.();
|
|
setTimeout(() => {
|
|
setDialogs((before) => before.filter((item) => item.id !== id));
|
|
}, 300);
|
|
},
|
|
onCancel: () => {
|
|
onCancel?.();
|
|
setTimeout(() => {
|
|
setDialogs((before) => before.filter((item) => item.id !== id));
|
|
}, 300);
|
|
},
|
|
...rest,
|
|
},
|
|
];
|
|
});
|
|
};
|
|
|
|
return (
|
|
<DialogContext.Provider
|
|
value={{
|
|
alert,
|
|
confirm,
|
|
}}
|
|
>
|
|
{children}
|
|
{dialogs?.map(({ id, ...props }) => <Modal key={id} {...props} />)}
|
|
</DialogContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default DialogProvider;
|