gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/expand_button.vue

54 lines
963 B
Vue

<script>
import { __ } from '~/locale';
import Icon from '~/vue_shared/components/icon.vue';
/**
* Port of detail_behavior expand button.
*
* @example
* <expand-button>
* <template slot="expanded">
* Text goes here.
* </template>
* </expand-button>
*/
export default {
name: 'ExpandButton',
components: {
Icon,
},
data() {
return {
isCollapsed: true,
};
},
computed: {
ariaLabel() {
return __('Click to expand text');
},
},
destroyed() {
this.isCollapsed = true;
},
methods: {
onClick() {
this.isCollapsed = !this.isCollapsed;
},
},
};
</script>
<template>
<span>
<button
v-show="isCollapsed"
:aria-label="ariaLabel"
type="button"
class="text-expander btn-blank"
@click="onClick"
>
<icon :size="12" name="ellipsis_h" />
</button>
<span v-if="!isCollapsed"> <slot name="expanded"></slot> </span>
</span>
</template>