expand_button.vue 799 Bytes
Newer Older
1
<script>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import { __ } from '~/locale';
/**
 * Port of detail_behavior expand button.
 *
 * @example
 * <expand-button>
 *   <template slot="expanded">
 *      Text goes here.
 *    </template>
 * </expand-button>
 */
export default {
  name: 'ExpandButton',
  data() {
    return {
      isCollapsed: true,
    };
  },
  computed: {
    ariaLabel() {
      return __('Click to expand text');
23
    },
24 25 26 27
  },
  methods: {
    onClick() {
      this.isCollapsed = !this.isCollapsed;
28
    },
29 30
  },
};
31 32 33 34 35
</script>
<template>
  <span>
    <button
      v-show="isCollapsed"
36
      :aria-label="ariaLabel"
37 38
      type="button"
      class="text-expander btn-blank"
39 40 41
      @click="onClick">
      ...
    </button>
42
    <span v-if="!isCollapsed">
43 44 45 46
      <slot name="expanded"></slot>
    </span>
  </span>
</template>