quasar-framework
Version:
Build responsive SPA, SSR, PWA, Hybrid Mobile Apps and Electron apps, all simultaneously using the same codebase
95 lines (91 loc) • 2.41 kB
JavaScript
import QIcon from '../icon/QIcon.js'
import QBtn from '../btn/QBtn.js'
export default {
name: 'QAlert',
props: {
type: {
type: String,
validator: v => ['positive', 'negative', 'warning', 'info'].includes(v)
},
color: {
type: String,
default: 'negative'
},
textColor: String,
message: String,
detail: String,
icon: String,
avatar: String,
actions: Array
},
computed: {
computedIcon () {
return this.icon
? this.icon
: this.$q.icon.type[this.type || this.color]
},
classes () {
return `bg-${this.type || this.color} text-${this.textColor || 'white'}`
}
},
render (h) {
const
side = [],
detail = this.$slots.detail || this.detail
if (this.avatar) {
side.push(
h('img', {
staticClass: 'avatar',
attrs: { src: this.avatar }
})
)
}
else if (this.icon || this.type) {
side.push(
h(QIcon, {
props: { name: this.computedIcon }
})
)
}
return h('div', [
h('div', {
staticClass: 'q-alert row no-wrap shadow-2',
'class': this.classes
}, [
side.length
? h('div', { staticClass: 'q-alert-side col-auto row flex-center' }, side)
: null,
h('div', {
staticClass: 'q-alert-content col self-center'
}, [
h('div', this.$slots.default || this.message),
detail ? h('div', { staticClass: 'q-alert-detail' }, [ detail ]) : null
]),
this.actions && this.actions.length
? h('div', {
staticClass: 'q-alert-actions col-auto gutter-xs column flex-center'
},
this.actions.map(action =>
h('div', { staticClass: 'full-width' }, [
h(QBtn, {
staticClass: 'full-width',
props: {
flat: true,
dense: true,
align: 'left',
icon: action.icon,
label: action.closeBtn === true
? (typeof action.label === 'string' ? action.label : this.$q.i18n.label.close)
: action.label
},
on: {
click: () => action.handler()
}
})
])
))
: null
])
])
}
}