primevue-mirror/components/splitbutton/SplitButton.vue

191 lines
4.8 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<div :class="containerClass" :style="style">
<slot>
2022-12-08 11:04:25 +00:00
<PVSButton type="button" class="p-splitbutton-defaultbutton" :icon="icon" :label="label" :disabled="disabled" :aria-label="label" @click="onDefaultButtonClick" v-bind="buttonProps" />
2022-09-06 12:03:37 +00:00
</slot>
2022-12-08 11:04:25 +00:00
<PVSButton
ref="button"
type="button"
class="p-splitbutton-menubutton"
:icon="menuButtonIcon"
2022-12-08 11:04:25 +00:00
:disabled="disabled"
aria-haspopup="true"
:aria-expanded="isExpanded"
:aria-controls="ariaId + '_overlay'"
@click="onDropdownButtonClick"
@keydown="onDropdownKeydown"
v-bind="menuButtonProps"
/>
2022-09-14 11:26:01 +00:00
<PVSMenu ref="menu" :id="ariaId + '_overlay'" :model="model" :popup="true" :autoZIndex="autoZIndex" :baseZIndex="baseZIndex" :appendTo="appendTo" />
2022-09-06 12:03:37 +00:00
</div>
</template>
<script>
import Button from 'primevue/button';
import TieredMenu from 'primevue/tieredmenu';
2022-09-14 11:26:01 +00:00
import { UniqueComponentId } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'SplitButton',
emits: ['click'],
2022-09-06 12:03:37 +00:00
props: {
label: {
type: String,
default: null
},
icon: {
type: String,
default: null
},
2022-09-14 11:26:01 +00:00
model: {
2022-09-06 12:03:37 +00:00
type: Array,
default: null
},
autoZIndex: {
type: Boolean,
default: true
},
baseZIndex: {
type: Number,
default: 0
},
appendTo: {
type: String,
default: 'body'
},
2022-12-08 11:04:25 +00:00
disabled: {
type: Boolean,
default: false
},
class: {
type: null,
default: null
},
style: {
type: null,
default: null
},
buttonProps: {
type: null,
default: null
},
menuButtonProps: {
type: null,
default: null
},
menuButtonIcon: {
type: String,
default: 'pi pi-chevron-down'
},
severity: {
type: String,
default: null
},
raised: {
type: Boolean,
default: false
},
rounded: {
type: Boolean,
default: false
},
text: {
type: Boolean,
default: false
},
outlined: {
type: Boolean,
default: false
},
size: {
type: String,
default: null
2023-03-06 08:16:57 +00:00
},
plain: {
type: Boolean,
default: false
2022-12-08 11:04:25 +00:00
}
},
data() {
return {
isExpanded: false
};
2022-09-06 12:03:37 +00:00
},
methods: {
onDropdownButtonClick() {
2022-12-08 11:04:25 +00:00
this.$refs.menu.toggle({ currentTarget: this.$el, relatedTarget: this.$refs.button.$el });
this.isExpanded = !this.$refs.menu.visible;
},
onDropdownKeydown(event) {
if (event.code === 'ArrowDown' || event.code === 'ArrowUp') {
this.onDropdownButtonClick();
event.preventDefault();
}
2022-09-06 12:03:37 +00:00
},
2022-12-08 11:04:25 +00:00
onDefaultButtonClick(event) {
this.$refs.menu.hide(event);
this.$emit('click');
2022-09-06 12:03:37 +00:00
}
},
computed: {
ariaId() {
return UniqueComponentId();
},
containerClass() {
return [
'p-splitbutton p-component',
this.class,
{
[`p-button-${this.severity}`]: this.severity,
'p-button-raised': this.raised,
'p-button-rounded': this.rounded,
'p-button-text': this.text,
'p-button-outlined': this.outlined,
'p-button-sm': this.size === 'small',
'p-button-lg': this.size === 'large'
}
];
2022-09-06 12:03:37 +00:00
}
},
components: {
2022-09-14 11:26:01 +00:00
PVSButton: Button,
PVSMenu: TieredMenu
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>
<style scoped>
.p-splitbutton {
display: inline-flex;
position: relative;
}
.p-splitbutton .p-splitbutton-defaultbutton,
.p-splitbutton.p-button-rounded > .p-splitbutton-defaultbutton.p-button,
.p-splitbutton.p-button-outlined > .p-splitbutton-defaultbutton.p-button {
flex: 1 1 auto;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-right: 0 none;
}
.p-splitbutton-menubutton,
.p-splitbutton.p-button-rounded > .p-splitbutton-menubutton.p-button,
.p-splitbutton.p-button-outlined > .p-splitbutton-menubutton.p-button {
display: flex;
align-items: center;
justify-content: center;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.p-splitbutton .p-menu {
min-width: 100%;
}
2022-09-14 11:26:01 +00:00
.p-fluid .p-splitbutton {
2022-09-06 12:03:37 +00:00
display: flex;
}
</style>