summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/gitlab_version_check.vue
blob: c2be5e4f7a13d32b9425f700a7a6ef26917d5657 (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
<script>
import { GlBadge } from '@gitlab/ui';
import { s__ } from '~/locale';
import Tracking from '~/tracking';
import axios from '~/lib/utils/axios_utils';
import { joinPaths } from '~/lib/utils/url_utility';
import { helpPagePath } from '~/helpers/help_page_helper';

const STATUS_TYPES = {
  SUCCESS: 'success',
  WARNING: 'warning',
  DANGER: 'danger',
};

const UPGRADE_DOCS_URL = helpPagePath('update/index');

export default {
  name: 'GitlabVersionCheck',
  components: {
    GlBadge,
  },
  mixins: [Tracking.mixin()],
  props: {
    size: {
      type: String,
      required: false,
      default: 'md',
    },
  },
  data() {
    return {
      status: null,
    };
  },
  computed: {
    title() {
      if (this.status === STATUS_TYPES.SUCCESS) {
        return s__('VersionCheck|Up to date');
      } else if (this.status === STATUS_TYPES.WARNING) {
        return s__('VersionCheck|Update available');
      } else if (this.status === STATUS_TYPES.DANGER) {
        return s__('VersionCheck|Update ASAP');
      }

      return null;
    },
  },
  created() {
    this.checkGitlabVersion();
  },
  methods: {
    checkGitlabVersion() {
      axios
        .get(joinPaths('/', gon.relative_url_root, '/admin/version_check.json'))
        .then((res) => {
          if (res.data) {
            this.status = res.data.severity;

            this.track('rendered_version_badge', {
              label: this.title,
            });
          }
        })
        .catch(() => {
          // Silently fail
          this.status = null;
        });
    },
    onClick() {
      this.track('click_version_badge', { label: this.title });
    },
  },
  UPGRADE_DOCS_URL,
};
</script>

<template>
  <!-- TODO: remove the span element once bootstrap-vue is updated to version 2.21.1 -->
  <!-- TODO: https://github.com/bootstrap-vue/bootstrap-vue/issues/6219 -->
  <span v-if="status" data-testid="badge-click-wrapper" @click="onClick">
    <gl-badge
      :href="$options.UPGRADE_DOCS_URL"
      class="version-check-badge"
      :variant="status"
      :size="size"
      >{{ title }}</gl-badge
    >
  </span>
</template>