MeterSphere/frontend/src/hooks/useModal.ts

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-06-09 13:46:11 +08:00
import { Modal } from '@arco-design/web-vue';
import type { ModalConfig } from '@arco-design/web-vue';
import { useI18n } from '@/hooks/useI18n';
2023-06-09 13:46:11 +08:00
export type ModalType = 'info' | 'success' | 'warning' | 'error';
export type ModalSize = 'small' | 'medium' | 'large' | 'full';
export type ModalMode = 'default' | 'weak';
export interface ModalOptions extends ModalConfig {
mode?: ModalMode;
type: ModalType;
size?: ModalSize;
}
export interface DeleteModalOptions extends ModalConfig {
title: string;
content: string;
}
const { t } = useI18n();
2023-06-09 13:46:11 +08:00
export default function useModal() {
return {
openModal: (options: ModalOptions) =>
// error 使用 warning的感叹号图标
Modal[options.type === 'error' ? 'warning' : options.type]({
// 默认设置按钮属性也可通过options传入覆盖
okButtonProps: {
type: options.mode === 'weak' ? 'text' : 'primary',
},
cancelButtonProps: {
type: options.mode === 'weak' ? 'text' : 'secondary',
},
simple: false,
...options,
titleAlign: 'start',
2023-08-09 13:57:29 +08:00
modalClass: `ms-usemodal ms-usemodal-${options.mode || 'default'} ms-usemodal-${
options.size || 'small'
} ms-usemodal-${options.type}`,
2023-06-09 13:46:11 +08:00
}),
deleteModal: (options: DeleteModalOptions) =>
Modal.warning({
okText: t('common.confirmDelete'),
cancelText: t('common.cancel'),
hideCancel: false,
okButtonProps: { status: 'danger' },
titleAlign: 'start',
modalClass: `ms-usemodal ms-usemodal-warning ms-usemodal-small ms-usemodal--warning`,
...options,
}),
2023-06-09 13:46:11 +08:00
};
}