mirror of https://github.com/ElemeFE/element
199 lines
6.1 KiB
Vue
199 lines
6.1 KiB
Vue
<template>
|
|
<transition name="msgbox-fade">
|
|
<div class="el-message-box__wrapper" v-show="value" @click.self="handleWrapperClick">
|
|
<div class="el-message-box">
|
|
<div class="el-message-box__header" v-if="title !== undefined">
|
|
<div class="el-message-box__title">{{ title || t('el.messagebox.title') }}</div>
|
|
<i class="el-message-box__close el-icon-close" @click="handleAction('cancel')" v-if="showClose"></i>
|
|
</div>
|
|
<div class="el-message-box__content" v-if="message !== ''">
|
|
<div class="el-message-box__status" :class="[ typeClass ]"></div>
|
|
<div class="el-message-box__message" :style="{ 'margin-left': typeClass ? '50px' : '0' }"><p>{{ message }}</p></div>
|
|
<div class="el-message-box__input" v-show="showInput">
|
|
<el-input v-model="inputValue" :placeholder="inputPlaceholder" ref="input"></el-input>
|
|
<div class="el-message-box__errormsg" :style="{ visibility: !!editorErrorMessage ? 'visible' : 'hidden' }">{{ editorErrorMessage }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="el-message-box__btns">
|
|
<el-button :class="[ cancelButtonClasses ]" v-show="showCancelButton" @click.native="handleAction('cancel')">{{ cancelButtonText || t('el.messagebox.cancel') }}</el-button>
|
|
<el-button ref="confirm" :class="[ confirmButtonClasses ]" v-show="showConfirmButton" @click.native="handleAction('confirm')">{{ confirmButtonText || t('el.messagebox.confirm') }}</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script type="text/babel">
|
|
import Popup from 'vue-popup';
|
|
import Locale from 'element-ui/src/mixins/locale';
|
|
import ElInput from 'element-ui/packages/input';
|
|
import ElButton from 'element-ui/packages/button';
|
|
import { addClass, removeClass } from 'wind-dom/src/class';
|
|
import { t } from 'element-ui/src/locale';
|
|
|
|
let typeMap = {
|
|
success: 'circle-check',
|
|
info: 'information',
|
|
warning: 'warning',
|
|
error: 'circle-cross'
|
|
};
|
|
|
|
export default {
|
|
mixins: [Popup, Locale],
|
|
|
|
props: {
|
|
modal: {
|
|
default: true
|
|
},
|
|
lockScroll: {
|
|
default: true
|
|
},
|
|
showClose: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
closeOnClickModal: {
|
|
default: true
|
|
},
|
|
closeOnPressEscape: {
|
|
default: true
|
|
}
|
|
},
|
|
|
|
components: {
|
|
ElInput,
|
|
ElButton
|
|
},
|
|
|
|
computed: {
|
|
typeClass() {
|
|
return this.type && typeMap[this.type] ? `el-icon-${ typeMap[this.type] }` : '';
|
|
},
|
|
|
|
confirmButtonClasses() {
|
|
return `el-button--primary ${ this.confirmButtonClass }`;
|
|
},
|
|
cancelButtonClasses() {
|
|
return `${ this.cancelButtonClass }`;
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
doClose() {
|
|
this.value = false;
|
|
this._closing = true;
|
|
|
|
this.onClose && this.onClose();
|
|
|
|
if (this.lockScroll) {
|
|
setTimeout(() => {
|
|
if (this.modal && this.bodyOverflow !== 'hidden') {
|
|
document.body.style.overflow = this.bodyOverflow;
|
|
document.body.style.paddingRight = this.bodyPaddingRight;
|
|
}
|
|
this.bodyOverflow = null;
|
|
this.bodyPaddingRight = null;
|
|
}, 200);
|
|
}
|
|
this.opened = false;
|
|
|
|
if (!this.transition) {
|
|
this.doAfterClose();
|
|
}
|
|
},
|
|
|
|
handleWrapperClick() {
|
|
if (this.closeOnClickModal) {
|
|
this.close();
|
|
}
|
|
},
|
|
|
|
handleAction(action) {
|
|
if (this.$type === 'prompt' && action === 'confirm' && !this.validate()) {
|
|
return;
|
|
}
|
|
var callback = this.callback;
|
|
this.value = false;
|
|
callback(action);
|
|
},
|
|
|
|
validate() {
|
|
if (this.$type === 'prompt') {
|
|
var inputPattern = this.inputPattern;
|
|
if (inputPattern && !inputPattern.test(this.inputValue || '')) {
|
|
this.editorErrorMessage = this.inputErrorMessage || t('el.messagebox.error');
|
|
addClass(this.$refs.input.$el.querySelector('input'), 'invalid');
|
|
return false;
|
|
}
|
|
var inputValidator = this.inputValidator;
|
|
if (typeof inputValidator === 'function') {
|
|
var validateResult = inputValidator(this.inputValue);
|
|
if (validateResult === false) {
|
|
this.editorErrorMessage = this.inputErrorMessage || t('el.messagebox.error');
|
|
addClass(this.$refs.input.$el.querySelector('input'), 'invalid');
|
|
return false;
|
|
}
|
|
if (typeof validateResult === 'string') {
|
|
this.editorErrorMessage = validateResult;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
this.editorErrorMessage = '';
|
|
removeClass(this.$refs.input.$el.querySelector('input'), 'invalid');
|
|
return true;
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
inputValue(val) {
|
|
if (this.$type === 'prompt' && val !== null) {
|
|
this.validate();
|
|
}
|
|
},
|
|
|
|
value(val) {
|
|
if (this.$type === 'alert' || this.$type === 'confirm') {
|
|
this.$nextTick(() => {
|
|
this.$refs.confirm.$el.focus();
|
|
});
|
|
}
|
|
if (this.$type !== 'prompt') return;
|
|
if (val) {
|
|
setTimeout(() => {
|
|
if (this.$refs.input && this.$refs.input.$el) {
|
|
this.$refs.input.$el.querySelector('input').focus();
|
|
}
|
|
}, 500);
|
|
} else {
|
|
this.editorErrorMessage = '';
|
|
removeClass(this.$refs.input.$el.querySelector('input'), 'invalid');
|
|
}
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
title: undefined,
|
|
message: '',
|
|
type: '',
|
|
showInput: false,
|
|
inputValue: null,
|
|
inputPlaceholder: '',
|
|
inputPattern: null,
|
|
inputValidator: null,
|
|
inputErrorMessage: '',
|
|
showConfirmButton: true,
|
|
showCancelButton: false,
|
|
confirmButtonText: '',
|
|
cancelButtonText: '',
|
|
confirmButtonClass: '',
|
|
confirmButtonDisabled: false,
|
|
cancelButtonClass: '',
|
|
editorErrorMessage: null,
|
|
callback: null
|
|
};
|
|
}
|
|
};
|
|
</script>
|