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

import { INSTALL_AGENT_MODAL_ID, CLUSTERS_ACTIONS } from '../constants';

export default {
  i18n: CLUSTERS_ACTIONS,
  INSTALL_AGENT_MODAL_ID,
  components: {
    GlDropdown,
    GlDropdownItem,
    GlTooltip,
  },
  directives: {
    GlModalDirective,
  },
  inject: [
    'newClusterPath',
    'addClusterPath',
    'newClusterDocsPath',
    'canAddCluster',
    'displayClusterAgents',
    'certificateBasedClustersEnabled',
  ],
  computed: {
    shouldTriggerModal() {
      return this.canAddCluster && this.displayClusterAgents;
    },
    defaultActionText() {
      const { connectCluster, connectWithAgent, connectClusterDeprecated } = this.$options.i18n;

      if (!this.displayClusterAgents) {
        return connectClusterDeprecated;
      } else if (!this.certificateBasedClustersEnabled) {
        return connectCluster;
      }
      return connectWithAgent;
    },
    defaultActionUrl() {
      if (this.displayClusterAgents) {
        return null;
      }
      return this.addClusterPath;
    },
  },
};
</script>

<template>
  <div class="nav-controls gl-ml-auto">
    <gl-tooltip
      v-if="!canAddCluster"
      :target="() => $refs.dropdown.$el"
      :title="$options.i18n.dropdownDisabledHint"
    />

    <gl-dropdown
      ref="dropdown"
      v-gl-modal-directive="shouldTriggerModal && $options.INSTALL_AGENT_MODAL_ID"
      data-qa-selector="clusters_actions_button"
      category="primary"
      variant="confirm"
      :text="defaultActionText"
      :disabled="!canAddCluster"
      :split-href="defaultActionUrl"
      split
      right
    >
      <gl-dropdown-item
        v-if="displayClusterAgents"
        :href="newClusterDocsPath"
        data-testid="create-cluster-link"
        @click.stop
      >
        {{ $options.i18n.createCluster }}
      </gl-dropdown-item>

      <template v-if="displayClusterAgents && certificateBasedClustersEnabled">
        <gl-dropdown-item :href="newClusterPath" data-testid="new-cluster-link" @click.stop>
          {{ $options.i18n.createClusterCertificate }}
        </gl-dropdown-item>

        <gl-dropdown-item :href="addClusterPath" data-testid="connect-cluster-link" @click.stop>
          {{ $options.i18n.connectClusterCertificate }}
        </gl-dropdown-item>
      </template>

      <gl-dropdown-item
        v-if="certificateBasedClustersEnabled && !displayClusterAgents"
        :href="newClusterPath"
        data-testid="new-cluster-link"
        @click.stop
      >
        {{ $options.i18n.createClusterDeprecated }}
      </gl-dropdown-item>
    </gl-dropdown>
  </div>
</template>