summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/components/runner_type_alert.vue
blob: 72ce582e02cb7e3e3eb552481c9a69b155803828 (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
<script>
import { GlAlert, GlLink } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';
import { s__ } from '~/locale';
import { INSTANCE_TYPE, GROUP_TYPE, PROJECT_TYPE } from '../constants';

const ALERT_DATA = {
  [INSTANCE_TYPE]: {
    title: s__(
      'Runners|This runner is available to all groups and projects in your GitLab instance.',
    ),
    message: s__(
      'Runners|Shared runners are available to every project in a GitLab instance. If you want a runner to build only specific projects, restrict the project in the table below. After you restrict a runner to a project, you cannot change it back to a shared runner.',
    ),
    variant: 'success',
    anchor: 'shared-runners',
  },
  [GROUP_TYPE]: {
    title: s__('Runners|This runner is available to all projects and subgroups in a group.'),
    message: s__(
      'Runners|Use Group runners when you want all projects in a group to have access to a set of runners.',
    ),
    variant: 'success',
    anchor: 'group-runners',
  },
  [PROJECT_TYPE]: {
    title: s__('Runners|This runner is associated with specific projects.'),
    message: s__(
      'Runners|You can set up a specific runner to be used by multiple projects but you cannot make this a shared runner.',
    ),
    variant: 'info',
    anchor: 'specific-runners',
  },
};

export default {
  components: {
    GlAlert,
    GlLink,
  },
  props: {
    type: {
      type: String,
      required: false,
      default: null,
      validator(type) {
        return Boolean(ALERT_DATA[type]);
      },
    },
  },
  computed: {
    alert() {
      return ALERT_DATA[this.type];
    },
    helpHref() {
      return helpPagePath('ci/runners/runners_scope', { anchor: this.alert.anchor });
    },
  },
};
</script>
<template>
  <gl-alert v-if="alert" :variant="alert.variant" :title="alert.title" :dismissible="false">
    {{ alert.message }}
    <gl-link :href="helpHref">{{ __('Learn more.') }}</gl-link>
  </gl-alert>
</template>