iview/src/components/button/button.vue

83 lines
2.7 KiB
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
<button :type="htmlType" :class="classes" :disabled="disabled">
2016-09-20 17:10:17 +08:00
<i :class="loadingIconClasses" v-if="loading"></i>
<i :class="typeIconClasses" v-if="icon && !loading"></i>
<span v-if="showSlot" v-el:slot><slot></slot></span>
2016-09-09 14:29:19 +08:00
</button>
</template>
<script>
import Icon from '../icon';
import { oneOf } from '../../utils/assist';
const prefixCls = 'ivu-btn';
2016-09-20 17:10:17 +08:00
const iconPrefixCls = 'ivu-icon';
2016-09-09 14:29:19 +08:00
export default {
components: { Icon },
props: {
type: {
validator (value) {
return oneOf(value, ['primary', 'ghost', 'dashed', 'text', 'info', 'success', 'warning', 'error']);
2016-09-09 14:29:19 +08:00
}
},
shape: {
validator (value) {
return oneOf(value, ['circle', 'circle-outline']);
}
},
size: {
validator (value) {
return oneOf(value, ['small', 'large']);
}
},
loading: Boolean,
disabled: Boolean,
htmlType: {
default: 'button',
validator (value) {
return oneOf(value, ['button', 'submit', 'reset']);
}
},
icon: String,
long: {
type: Boolean,
default: false
}
2016-09-09 14:29:19 +08:00
},
data () {
return {
showSlot: true
}
},
2016-09-09 14:29:19 +08:00
computed: {
classes () {
return [
`${prefixCls}`,
{
[`${prefixCls}-${this.type}`]: !!this.type,
[`${prefixCls}-long`]: this.long,
2016-09-09 14:29:19 +08:00
[`${prefixCls}-${this.shape}`]: !!this.shape,
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-loading`]: this.loading != null && this.loading,
[`${prefixCls}-icon-only`]: !this.showSlot && (!!this.icon || this.loading)
2016-09-09 14:29:19 +08:00
}
]
2016-09-20 17:10:17 +08:00
},
loadingIconClasses () {
return `${iconPrefixCls} ivu-load-loop ${iconPrefixCls}-load-c`;
},
typeIconClasses () {
return [
`${iconPrefixCls}`,
{
[`${iconPrefixCls}-${this.icon}`]: !!this.icon
}
]
2016-09-09 14:29:19 +08:00
}
},
compiled () {
this.showSlot = this.$els.slot.innerHTML.replace(/\n/g, '').replace(/<!--[\w\W\r\n]*?-->/gmi, '') !== '';
2016-09-09 14:29:19 +08:00
}
}
2016-10-28 17:24:52 +08:00
</script>