ant-design-vue/components/modal/ConfirmDialog.jsx

119 lines
3.8 KiB
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import classNames from 'classnames';
import Icon from '../icon';
import Dialog from './Modal';
import ActionButton from './ActionButton';
import { getConfirmLocale } from './locale';
2019-04-17 10:21:28 +08:00
import warning from '../_util/warning';
2018-03-06 19:14:41 +08:00
export default {
functional: true,
2019-01-12 11:33:27 +08:00
render(h, context) {
const { props } = context;
const {
onCancel,
onOk,
close,
zIndex,
afterClose,
visible,
keyboard,
centered,
getContainer,
maskStyle,
okButtonProps,
cancelButtonProps,
2019-04-17 10:21:28 +08:00
iconType = 'question-circle',
closable = false,
2019-01-12 11:33:27 +08:00
} = props;
2019-04-17 10:21:28 +08:00
warning(
!('iconType' in props),
`The property 'iconType' is deprecated. Use the property 'icon' instead.`,
);
const icon = props.icon ? props.icon : iconType;
2019-01-12 11:33:27 +08:00
const okType = props.okType || 'primary';
const prefixCls = props.prefixCls || 'ant-modal';
const contentPrefixCls = `${prefixCls}-confirm`;
2018-03-06 19:14:41 +08:00
// 默认为 true保持向下兼容
2019-01-12 11:33:27 +08:00
const okCancel = 'okCancel' in props ? props.okCancel : true;
const width = props.width || 416;
const style = props.style || {};
2019-04-17 10:21:28 +08:00
const mask = props.mask === undefined ? true : props.mask;
2018-03-06 19:14:41 +08:00
// 默认为 false保持旧版默认行为
2019-01-12 11:33:27 +08:00
const maskClosable = props.maskClosable === undefined ? false : props.maskClosable;
const runtimeLocale = getConfirmLocale();
const okText = props.okText || (okCancel ? runtimeLocale.okText : runtimeLocale.justOkText);
const cancelText = props.cancelText || runtimeLocale.cancelText;
const autoFocusButton = props.autoFocusButton === null ? false : props.autoFocusButton || 'ok';
2019-04-17 10:21:28 +08:00
const transitionName = props.transitionName || 'zoom';
const maskTransitionName = props.maskTransitionName || 'fade';
2018-03-06 19:14:41 +08:00
const classString = classNames(
contentPrefixCls,
`${contentPrefixCls}-${props.type}`,
2018-03-06 19:14:41 +08:00
`${prefixCls}-${props.type}`,
props.class,
2019-01-12 11:33:27 +08:00
);
2018-03-06 19:14:41 +08:00
const cancelButton = okCancel && (
<ActionButton
actionFn={onCancel}
closeModal={close}
2019-01-12 11:33:27 +08:00
autoFocus={autoFocusButton === 'cancel'}
buttonProps={cancelButtonProps}
>
2018-03-06 19:14:41 +08:00
{cancelText}
</ActionButton>
2019-01-12 11:33:27 +08:00
);
2019-05-13 19:09:21 +08:00
const iconNode = typeof icon === 'string' ? <Icon type={icon} /> : icon(h);
2018-03-06 19:14:41 +08:00
return (
<Dialog
prefixCls={prefixCls}
2018-03-06 19:14:41 +08:00
class={classString}
wrapClassName={classNames({ [`${contentPrefixCls}-centered`]: !!centered })}
2019-01-12 11:33:27 +08:00
onCancel={e => close({ triggerCancel: true }, e)}
2018-03-06 19:14:41 +08:00
visible={visible}
closable={closable}
2019-01-12 11:33:27 +08:00
title=""
2019-04-17 10:21:28 +08:00
transitionName={transitionName}
2019-01-12 11:33:27 +08:00
footer=""
2019-04-17 10:21:28 +08:00
maskTransitionName={maskTransitionName}
mask={mask}
2018-03-06 19:14:41 +08:00
maskClosable={maskClosable}
maskStyle={maskStyle}
2018-03-06 19:14:41 +08:00
style={style}
width={width}
zIndex={zIndex}
afterClose={afterClose}
2018-04-07 14:29:59 +08:00
keyboard={keyboard}
centered={centered}
getContainer={getContainer}
2018-03-06 19:14:41 +08:00
>
<div class={`${contentPrefixCls}-body-wrapper`}>
<div class={`${contentPrefixCls}-body`}>
2019-09-11 18:11:48 +08:00
{iconNode}
<span class={`${contentPrefixCls}-title`}>
{typeof props.title === 'function' ? props.title(h) : props.title}
</span>
<div class={`${contentPrefixCls}-content`}>
{typeof props.content === 'function' ? props.content(h) : props.content}
</div>
2018-03-06 19:14:41 +08:00
</div>
<div class={`${contentPrefixCls}-btns`}>
2018-03-06 19:14:41 +08:00
{cancelButton}
2019-01-12 11:33:27 +08:00
<ActionButton
type={okType}
actionFn={onOk}
closeModal={close}
autoFocus={autoFocusButton === 'ok'}
buttonProps={okButtonProps}
>
2018-03-06 19:14:41 +08:00
{okText}
</ActionButton>
</div>
</div>
2019-01-12 11:33:27 +08:00
</Dialog>
);
2018-03-06 19:14:41 +08:00
},
2019-01-12 11:33:27 +08:00
};