summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/error_message.vue
blob: a20dc0a70067d3488d499504488d8317cc9621ad (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
<script>
import { mapActions } from 'vuex';

export default {
  props: {
    message: {
      type: Object,
      required: true,
    },
  },
  data() {
    return {
      isLoading: false,
    };
  },
  methods: {
    ...mapActions(['setErrorMessage']),
    clickAction() {
      if (this.isLoading) return;

      this.isLoading = true;

      this.message
        .action(this.message.actionPayload)
        .then(() => {
          this.isLoading = false;
        })
        .catch(() => {
          this.isLoading = false;
        });
    },
    clickFlash() {
      if (!this.message.action) {
        this.setErrorMessage(null);
      }
    },
  },
};
</script>

<template>
  <div
    class="flash-container flash-container-page"
    @click="clickFlash"
  >
    <div class="flash-alert">
      <span
        v-html="message.text"
      >
      </span>
      <button
        v-if="message.action"
        type="button"
        class="flash-action text-white p-0 border-top-0 border-right-0 border-left-0 bg-transparent"
        @click.stop.prevent="clickAction"
      >
        {{ message.actionText }}
        <gl-loading-icon
          v-show="isLoading"
          inline
        />
      </button>
    </div>
  </div>
</template>