summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_request/components/status_box.vue
blob: fd99802caff7c19dccd54a72010f48e11cf1230c (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
<script>
import { GlIcon } from '@gitlab/ui';
import { __ } from '~/locale';
import mrEventHub from '../eventhub';

const CLASSES = {
  opened: 'status-box-open',
  closed: 'status-box-mr-closed',
  merged: 'status-box-mr-merged',
};

const STATUS = {
  opened: [__('Open'), 'issue-open-m'],
  closed: [__('Closed'), 'close'],
  merged: [__('Merged'), 'git-merge'],
};

export default {
  components: {
    GlIcon,
  },
  props: {
    initialState: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      state: this.initialState,
    };
  },
  computed: {
    statusBoxClass() {
      return CLASSES[this.state];
    },
    statusHumanName() {
      return STATUS[this.state][0];
    },
    statusIconName() {
      return STATUS[this.state][1];
    },
  },
  created() {
    mrEventHub.$on('mr.state.updated', this.updateState);
  },
  beforeDestroy() {
    mrEventHub.$off('mr.state.updated', this.updateState);
  },
  methods: {
    updateState({ state }) {
      this.state = state;
    },
  },
};
</script>

<template>
  <div :class="statusBoxClass" class="issuable-status-box status-box">
    <gl-icon
      :name="statusIconName"
      class="gl-display-block gl-display-sm-none!"
      data-testid="status-icon"
    />
    <span class="gl-display-none gl-display-sm-block">
      {{ statusHumanName }}
    </span>
  </div>
</template>