Welcome to mirror list, hosted at ThFree Co, Russian Federation.

actions_button.vue « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 175aef59ae553ac45cc116dff1ff12d773ee1c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<script>
import { GlDropdown, GlDropdownItem, GlDropdownDivider, GlButton, GlTooltip } from '@gitlab/ui';

export default {
  components: {
    GlDropdown,
    GlDropdownItem,
    GlDropdownDivider,
    GlButton,
    GlTooltip,
  },
  props: {
    id: {
      type: String,
      required: false,
      default: '',
    },
    actions: {
      type: Array,
      required: true,
    },
    selectedKey: {
      type: String,
      required: false,
      default: '',
    },
    category: {
      type: String,
      required: false,
      default: 'secondary',
    },
    variant: {
      type: String,
      required: false,
      default: 'default',
    },
    showActionTooltip: {
      type: Boolean,
      required: false,
      default: true,
    },
  },
  computed: {
    hasMultipleActions() {
      return this.actions.length > 1;
    },
    selectedAction() {
      return this.actions.find((x) => x.key === this.selectedKey) || this.actions[0];
    },
  },
  methods: {
    handleItemClick(action) {
      this.$emit('select', action.key);
    },
    handleClick(action, evt) {
      this.$emit('actionClicked', { action });
      return action.handle?.(evt);
    },
  },
};
</script>

<template>
  <span>
    <gl-dropdown
      v-if="hasMultipleActions"
      :id="id"
      :text="selectedAction.text"
      :split-href="selectedAction.href"
      :variant="variant"
      :category="category"
      split
      data-qa-selector="action_dropdown"
      @click="handleClick(selectedAction, $event)"
    >
      <template #button-content>
        <span class="gl-dropdown-button-text" v-bind="selectedAction.attrs">
          {{ selectedAction.text }}
        </span>
      </template>
      <template v-for="(action, index) in actions">
        <gl-dropdown-item
          :key="action.key"
          is-check-item
          :is-checked="action.key === selectedAction.key"
          :secondary-text="action.secondaryText"
          :data-qa-selector="`${action.key}_menu_item`"
          :data-testid="`action_${action.key}`"
          @click="handleItemClick(action)"
        >
          <span class="gl-font-weight-bold">{{ action.text }}</span>
        </gl-dropdown-item>
        <gl-dropdown-divider v-if="index != actions.length - 1" :key="action.key + '_divider'" />
      </template>
    </gl-dropdown>
    <gl-button
      v-else-if="selectedAction"
      :id="id"
      v-bind="selectedAction.attrs"
      :variant="variant"
      :category="category"
      :href="selectedAction.href"
      @click="handleClick(selectedAction, $event)"
    >
      {{ selectedAction.text }}
    </gl-button>
    <gl-tooltip v-if="selectedAction.tooltip && showActionTooltip" :target="id">
      {{ selectedAction.tooltip }}
    </gl-tooltip>
  </span>
</template>