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

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

export default {
  name: 'GitlabVersionCheck',
  components: {
    GlBadge,
  },
  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('/admin/version_check.json')
        .then((res) => {
          if (res.data) {
            this.status = res.data.severity;
          }
        })
        .catch(() => {
          // Silently fail
          this.status = null;
        });
    },
  },
};
</script>

<template>
  <gl-badge v-if="status" class="version-check-badge" :variant="status" :size="size">{{
    title
  }}</gl-badge>
</template>