2020-08-17 22:23:45 +08:00
|
|
|
<template>
|
|
|
|
<transition name="el-alert-fade">
|
|
|
|
<div
|
|
|
|
v-show="visible"
|
|
|
|
class="el-alert"
|
|
|
|
:class="[typeClass, center ? 'is-center' : '', 'is-' + effect]"
|
|
|
|
role="alert"
|
|
|
|
>
|
|
|
|
<i v-if="showIcon" class="el-alert__icon" :class="[ iconClass, isBigIcon ]"></i>
|
|
|
|
<div class="el-alert__content">
|
|
|
|
<span v-if="title || $slots.title" class="el-alert__title" :class="[ isBoldTitle ]">
|
|
|
|
<slot name="title">{{ title }}</slot>
|
|
|
|
</span>
|
2020-12-02 17:09:05 +08:00
|
|
|
<p v-if="$slots.default || !!description" class="el-alert__description">
|
2020-08-17 22:23:45 +08:00
|
|
|
<slot>
|
|
|
|
{{ description }}
|
|
|
|
</slot>
|
|
|
|
</p>
|
|
|
|
<i
|
|
|
|
v-if="closable"
|
|
|
|
class="el-alert__closebtn"
|
|
|
|
:class="{ 'is-customed': closeText !== '', 'el-icon-close': closeText === '' }"
|
|
|
|
@click="close"
|
|
|
|
>
|
|
|
|
{{ closeText }}
|
|
|
|
</i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
|
|
import { defineComponent, computed, ref, PropType } from 'vue'
|
|
|
|
|
|
|
|
const TYPE_CLASSES_MAP = {
|
|
|
|
'success': 'el-icon-success',
|
|
|
|
'warning': 'el-icon-warning',
|
|
|
|
'error': 'el-icon-error',
|
|
|
|
}
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: 'ElAlert',
|
|
|
|
props: {
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String as PropType<'success' | 'info' | 'error' | 'warning'>,
|
|
|
|
default: 'info',
|
|
|
|
},
|
|
|
|
closable: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
closeText: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
showIcon: Boolean,
|
|
|
|
center: Boolean,
|
|
|
|
effect: {
|
|
|
|
type: String,
|
|
|
|
default: 'light',
|
|
|
|
validator: (value: string): boolean => ['light', 'dark'].indexOf(value) > -1,
|
|
|
|
},
|
|
|
|
},
|
2020-10-29 13:34:51 +08:00
|
|
|
emits: ['close'],
|
2020-08-17 22:23:45 +08:00
|
|
|
setup(props, ctx) {
|
|
|
|
// state
|
|
|
|
const visible = ref(true)
|
|
|
|
|
|
|
|
// computed
|
|
|
|
const typeClass = computed(() => `el-alert--${ props.type }`)
|
|
|
|
const iconClass = computed(() => TYPE_CLASSES_MAP[props.type] || 'el-icon-info')
|
|
|
|
const isBigIcon = computed(() => props.description || ctx.slots.default ? 'is-big' : '')
|
|
|
|
const isBoldTitle = computed(() => props.description || ctx.slots.default ? 'is-bold' : '')
|
|
|
|
|
|
|
|
// methods
|
2020-08-19 21:35:40 +08:00
|
|
|
const close = evt => {
|
2020-08-17 22:23:45 +08:00
|
|
|
visible.value = false
|
2020-10-29 13:34:51 +08:00
|
|
|
ctx.emit('close', evt)
|
2020-08-17 22:23:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
visible,
|
|
|
|
typeClass,
|
|
|
|
iconClass,
|
|
|
|
isBigIcon,
|
|
|
|
isBoldTitle,
|
|
|
|
close,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
</script>
|