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

clusters_actions.vue « components « clusters_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccb973f1eb8c385cd26656405468044f1627e431 (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 {
  GlButton,
  GlDropdown,
  GlDropdownItem,
  GlModalDirective,
  GlTooltipDirective,
  GlDropdownDivider,
  GlDropdownSectionHeader,
} from '@gitlab/ui';

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

export default {
  i18n: CLUSTERS_ACTIONS,
  INSTALL_AGENT_MODAL_ID,
  components: {
    GlButton,
    GlDropdown,
    GlDropdownItem,
    GlDropdownDivider,
    GlDropdownSectionHeader,
  },
  directives: {
    GlModalDirective,
    GlTooltip: GlTooltipDirective,
  },
  inject: [
    'newClusterPath',
    'addClusterPath',
    'canAddCluster',
    'displayClusterAgents',
    'certificateBasedClustersEnabled',
  ],
  computed: {
    tooltip() {
      const { connectWithAgent, connectExistingCluster, dropdownDisabledHint } = this.$options.i18n;

      if (!this.canAddCluster) {
        return dropdownDisabledHint;
      } else if (this.displayClusterAgents) {
        return connectWithAgent;
      }

      return connectExistingCluster;
    },
    shouldTriggerModal() {
      return this.canAddCluster && this.displayClusterAgents;
    },
  },
};
</script>

<template>
  <div class="nav-controls gl-ml-auto">
    <gl-dropdown
      v-if="certificateBasedClustersEnabled"
      ref="dropdown"
      v-gl-modal-directive="shouldTriggerModal && $options.INSTALL_AGENT_MODAL_ID"
      v-gl-tooltip="tooltip"
      category="primary"
      variant="confirm"
      :text="$options.i18n.actionsButton"
      :disabled="!canAddCluster"
      :split="displayClusterAgents"
      right
    >
      <template v-if="displayClusterAgents">
        <gl-dropdown-section-header>{{ $options.i18n.agent }}</gl-dropdown-section-header>
        <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-divider />
        <gl-dropdown-section-header>{{ $options.i18n.certificate }}</gl-dropdown-section-header>
      </template>

      <gl-dropdown-item :href="newClusterPath" data-testid="new-cluster-link" @click.stop>
        {{ $options.i18n.createNewCluster }}
      </gl-dropdown-item>
      <gl-dropdown-item :href="addClusterPath" data-testid="connect-cluster-link" @click.stop>
        {{ $options.i18n.connectExistingCluster }}
      </gl-dropdown-item>
    </gl-dropdown>
    <gl-button
      v-else
      v-gl-modal-directive="$options.INSTALL_AGENT_MODAL_ID"
      v-gl-tooltip="tooltip"
      :disabled="!canAddCluster"
      category="primary"
      variant="confirm"
    >
      {{ $options.i18n.connectWithAgent }}
    </gl-button>
  </div>
</template>