summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_schedules/components/pipeline_schedules_callout.js
blob: c827b7402dcd694207e7580af3e8a958fd7c919a (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
import Vue from 'vue';
import Cookies from 'js-cookie';
import Translate from '../../vue_shared/translate';
import illustrationSvg from '../icons/intro_illustration.svg';

Vue.use(Translate);

const cookieKey = 'pipeline_schedules_callout_dismissed';

export default {
  name: 'PipelineSchedulesCallout',
  data() {
    return {
      docsUrl: document.getElementById('pipeline-schedules-callout').dataset.docsUrl,
      illustrationSvg,
      calloutDismissed: Cookies.get(cookieKey) === 'true',
    };
  },
  methods: {
    dismissCallout() {
      this.calloutDismissed = true;
      Cookies.set(cookieKey, this.calloutDismissed, { expires: 365 });
    },
  },
  template: `
    <div v-if="!calloutDismissed" class="pipeline-schedules-user-callout user-callout">
      <div class="bordered-box landing content-block">
        <button
          id="dismiss-callout-btn"
          class="btn btn-default close"
          @click="dismissCallout">
          <i class="fa fa-times"></i>
        </button>
        <div class="svg-container" v-html="illustrationSvg"></div>
        <div class="user-callout-copy">
          <h4>{{ __('Scheduling Pipelines') }}</h4>
          <p>
              {{ __('The pipelines schedule runs pipelines in the future, repeatedly, for specific branches or tags. Those scheduled pipelines will inherit limited project access based on their associated user.') }}
          </p>
          <p> {{ __('Learn more in the') }}
            <a
              :href="docsUrl"
              target="_blank"
              rel="nofollow">{{ s__('Learn more in the|pipeline schedules documentation') }}</a>. <!-- oneline to prevent extra space before period -->
          </p>
        </div>
      </div>
    </div>
  `,
};