105 lines
2.2 KiB
Vue
105 lines
2.2 KiB
Vue
<template>
|
|
<div class="md-action-bar">
|
|
<div class="md-action-bar-container">
|
|
<div class="md-action-bar-text" v-if="hasSlots">
|
|
<slot></slot>
|
|
</div>
|
|
<div class="md-action-bar-group">
|
|
<template v-for="(item, index) in coerceActions">
|
|
<md-button
|
|
class="md-action-bar-button"
|
|
:type="item.type || (!!item.disabled ? 'disabled' : 'primary')"
|
|
:plain="item.plain || (index !== coerceActions.length - 1)"
|
|
:round="item.round"
|
|
:inactive="item.inactive"
|
|
:loading="item.loading"
|
|
:icon="item.icon"
|
|
:icon-svg="item.iconSvg"
|
|
:key="index"
|
|
@click="$_onBtnClick($event, item)"
|
|
>
|
|
{{ item.text }}
|
|
</md-button>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Button from '../button'
|
|
import {isEmptyObject} from '../_util'
|
|
|
|
export default {
|
|
name: 'md-action-bar',
|
|
|
|
components: {
|
|
[Button.name]: Button,
|
|
},
|
|
|
|
props: {
|
|
actions: {
|
|
type: Array,
|
|
default: [],
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
coerceActions() {
|
|
return this.actions.slice(0, 2)
|
|
},
|
|
hasSlots() {
|
|
return !isEmptyObject(this.$slots)
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
// MARK: events handler
|
|
$_onBtnClick(event, action) {
|
|
action.onClick && action.onClick(event, action)
|
|
this.$emit('click', event, action)
|
|
},
|
|
},
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.md-action-bar
|
|
position fixed
|
|
z-index action-bar-zindex
|
|
left 0
|
|
bottom 0
|
|
right 0
|
|
display flex
|
|
padding action-bar-padding-v action-bar-padding-h 36px
|
|
background color-bg-inverse
|
|
clearfix()
|
|
|
|
.md-action-bar-container
|
|
display flex
|
|
flex 1
|
|
padding-bottom constant(safe-area-inset-bottom)
|
|
padding-bottom env(safe-area-inset-bottom)
|
|
|
|
.md-action-bar-text
|
|
display flex
|
|
flex 1
|
|
height action-bar-slot-height
|
|
margin-right action-bar-button-gap
|
|
align-items center
|
|
overflow hidden
|
|
|
|
.md-action-bar-group
|
|
display flex
|
|
flex 1
|
|
height 100%
|
|
|
|
.md-action-bar-button
|
|
display flex
|
|
float right
|
|
align-items center
|
|
justify-content center
|
|
flex 1
|
|
&:nth-of-type(2)
|
|
margin-left action-bar-button-gap
|
|
</style>
|