summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_projects/components/bitbucket_status_table.vue
blob: f673a0e42dc82ae223fc557195df08b4c1afe9b5 (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
<script>
import { GlAlert, GlSprintf, GlLink } from '@gitlab/ui';
import ImportProjectsTable from './import_projects_table.vue';

export default {
  components: {
    ImportProjectsTable,
    GlAlert,
    GlSprintf,
    GlLink,
  },
  props: {
    providerTitle: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      isWarningDismissed: false,
    };
  },
  computed: {
    currentPage() {
      return window.location.href;
    },
  },
};
</script>
<template>
  <import-projects-table :provider-title="providerTitle">
    <template #actions>
      <slot name="actions"></slot>
    </template>
    <template #incompatible-repos-warning>
      <gl-alert
        v-if="!isWarningDismissed"
        variant="warning"
        class="gl-my-2"
        @dismiss="isWarningDismissed = true"
      >
        <gl-sprintf
          :message="
            __(
              'One or more of your %{provider} projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git.',
            )
          "
        >
          <template #provider>
            {{ providerTitle }}
          </template>
        </gl-sprintf>
        <gl-sprintf
          :message="
            __(
              'Please convert %{linkStart}them to Git%{linkEnd}, and go through the %{linkToImportFlow} again.',
            )
          "
        >
          <template #link="{ content }">
            <gl-link
              href="https://www.atlassian.com/git/tutorials/migrating-overview"
              target="_blank"
              >{{ content }}</gl-link
            >
          </template>
          <template #linkToImportFlow>
            <gl-link :href="currentPage">{{ __('import flow') }}</gl-link>
          </template>
        </gl-sprintf>
      </gl-alert>
    </template>
  </import-projects-table>
</template>