summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/components/clusters_actions.vue
blob: 25f67462223d010fe7ab78513d74d6e7157521a3 (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
<script>
import { GlDropdown, GlDropdownItem, GlModalDirective } from '@gitlab/ui';
import { INSTALL_AGENT_MODAL_ID, CLUSTERS_ACTIONS } from '../constants';

export default {
  i18n: CLUSTERS_ACTIONS,
  INSTALL_AGENT_MODAL_ID,
  components: {
    GlDropdown,
    GlDropdownItem,
  },
  directives: {
    GlModalDirective,
  },
  inject: ['newClusterPath', 'addClusterPath'],
};
</script>

<template>
  <div class="nav-controls gl-ml-auto">
    <gl-dropdown
      ref="dropdown"
      v-gl-modal-directive="$options.INSTALL_AGENT_MODAL_ID"
      category="primary"
      variant="confirm"
      :text="$options.i18n.actionsButton"
      split
      right
    >
      <gl-dropdown-item :href="newClusterPath" data-testid="new-cluster-link" @click.stop>
        {{ $options.i18n.createNewCluster }}
      </gl-dropdown-item>
      <gl-dropdown-item
        v-gl-modal-directive="$options.INSTALL_AGENT_MODAL_ID"
        data-testid="connect-new-agent-link"
      >
        {{ $options.i18n.connectWithAgent }}
      </gl-dropdown-item>
      <gl-dropdown-item :href="addClusterPath" data-testid="connect-cluster-link" @click.stop>
        {{ $options.i18n.connectExistingCluster }}
      </gl-dropdown-item>
    </gl-dropdown>
  </div>
</template>