Welcome to mirror list, hosted at ThFree Co, Russian Federation.

environment_rollback.js.es6 « components « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55e5c826e07e7203ec2b4f1050aff25e32507518 (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
/*= require vue */
/* global Vue */

(() => {
  window.gl = window.gl || {};
  window.gl.environmentsList = window.gl.environmentsList || {};

  window.gl.environmentsList.RollbackComponent = Vue.component('rollback-component', {
    props: {
      retry_url: {
        type: String,
        default: '',
      },
      is_last_deployment: {
        type: Boolean,
        default: true,
      },
    },

    template: `
      <a class="btn" :href="retry_url" data-method="post" rel="nofollow">
        <span v-if="is_last_deployment">
          Re-deploy
        </span>
        <span v-else>
          Rollback
        </span>
      </a>
    `,
  });
})();