summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/gitlab_pages/components/pages_pipeline_wizard.vue
blob: f19e047061f8d686c195f00d17090a3f3bd7749d (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<script>
import { GlLoadingIcon } from '@gitlab/ui';
import { captureException } from '@sentry/browser';
import PipelineWizard from '~/pipeline_wizard/pipeline_wizard.vue';
import PagesWizardTemplate from '~/pipeline_wizard/templates/pages.yml?raw';
import { logError } from '~/lib/logger';
import { s__ } from '~/locale';
import { redirectTo } from '~/lib/utils/url_utility'; // eslint-disable-line import/no-deprecated
import pagesMarkOnboardingComplete from '../queries/mark_onboarding_complete.graphql';

export const i18n = {
  loadingMessage: s__('GitLabPages|Updating your Pages configuration...'),
};

export default {
  name: 'PagesPipelineWizard',
  i18n,
  PagesWizardTemplate,
  components: {
    PipelineWizard,
    GlLoadingIcon,
  },
  props: {
    projectPath: {
      type: String,
      required: true,
    },
    defaultBranch: {
      type: String,
      required: true,
    },
    redirectToWhenDone: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      loading: false,
    };
  },
  methods: {
    async updateOnboardingState() {
      try {
        await this.$apollo.mutate({
          mutation: pagesMarkOnboardingComplete,
          variables: {
            input: { projectPath: this.projectPath },
          },
        });
      } catch (e) {
        // eslint-disable-next-line @gitlab/require-i18n-strings
        logError('Updating the pages onboarding state failed', e);
        captureException(e);
      }
    },
    async onDone() {
      this.loading = true;
      await this.updateOnboardingState();
      redirectTo(this.redirectToWhenDone); // eslint-disable-line import/no-deprecated
    },
  },
};
</script>

<template>
  <div>
    <div
      v-if="loading"
      class="gl-p-3 gl-rounded-base gl-text-center"
      data-testid="onboarding-mutation-loading"
    >
      <gl-loading-icon />
      {{ $options.i18n.loadingMessage }}
    </div>
    <pipeline-wizard
      v-else
      :template="$options.PagesWizardTemplate"
      :project-path="projectPath"
      :default-branch="defaultBranch"
      @done="onDone"
    />
  </div>
</template>