summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters_list/components/ancestor_notice.vue
blob: 7954fc61785d300c96d860d0ce7703c426c1c3a4 (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
<script>
import { GlLink, GlSprintf } from '@gitlab/ui';
import { mapState } from 'vuex';

export default {
  components: {
    GlLink,
    GlSprintf,
  },
  computed: {
    ...mapState(['ancestorHelperPath', 'hasAncestorClusters']),
  },
};
</script>

<template>
  <div v-if="hasAncestorClusters" class="bs-callout bs-callout-info">
    <p>
      <gl-sprintf
        :message="
          s__(
            'ClusterIntegration|Clusters are utilized by selecting the nearest ancestor with a matching environment scope. For example, project clusters will override group clusters. %{linkStart}More information%{linkEnd}',
          )
        "
      >
        <template #link="{ content }">
          <gl-link :href="ancestorHelperPath">
            <strong>{{ content }}</strong>
          </gl-link>
        </template>
      </gl-sprintf>
    </p>
  </div>
</template>