summaryrefslogtreecommitdiff
path: root/app/views/import/bitbucket/status.html.haml
blob: 6e993e58f0d7ca8057544e60ad9f563e221f2f56 (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
- page_title "Bitbucket import"
- header_title "Projects", root_path
%h3.page-title
  %i.fa.fa-bitbucket
  Import projects from Bitbucket

- if @repos.any?
  %p.light
    Select projects you want to import.
  %hr
  %p
  - if @incompatible_repos.any?
    = button_tag class: "btn btn-import btn-success js-import-all" do
      Import all compatible projects
      = icon("spinner spin", class: "loading-icon")
  - else
    = button_tag class: "btn btn-success js-import-all" do
      Import all projects
      = icon("spinner spin", class: "loading-icon")

.table-responsive
  %table.table.import-jobs
    %colgroup.import-jobs-from-col
    %colgroup.import-jobs-to-col
    %colgroup.import-jobs-status-col
    %thead
      %tr
        %th From Bitbucket
        %th To GitLab
        %th Status
    %tbody
      - @already_added_projects.each do |project|
        %tr{id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}"}
          %td
            = link_to project.import_source, "https://bitbucket.org/#{project.import_source}", target: "_blank"
          %td
            = link_to project.path_with_namespace, [project.namespace.becomes(Namespace), project]
          %td.job-status
            - if project.import_status == 'finished'
              %span
                %i.fa.fa-check
                done
            - elsif project.import_status == 'started'
              %i.fa.fa-spinner.fa-spin
              started
            - else
              = project.human_import_status_name

      - @repos.each do |repo|
        %tr{id: "repo_#{repo["owner"]}___#{repo["slug"]}"}
          %td
            = link_to "#{repo["owner"]}/#{repo["slug"]}", "https://bitbucket.org/#{repo["owner"]}/#{repo["slug"]}", target: "_blank"
          %td.import-target
            = "#{repo["owner"]}/#{repo["slug"]}"
          %td.import-actions.job-status
            = button_tag class: "btn btn-import js-add-to-import" do
              Import
              = icon("spinner spin", class: "loading-icon")
      - @incompatible_repos.each do |repo|
        %tr{id: "repo_#{repo["owner"]}___#{repo["slug"]}"}
          %td
            = link_to "#{repo["owner"]}/#{repo["slug"]}", "https://bitbucket.org/#{repo["owner"]}/#{repo["slug"]}", target: "_blank"
          %td.import-target
          %td.import-actions-job-status
            = label_tag "Incompatible Project", nil, class: "label label-danger"

- if @incompatible_repos.any?
  %p
    One or more of your Bitbucket projects cannot be imported into GitLab
    directly because they use Subversion or Mercurial for version control,
    rather than Git. Please convert
    = link_to "them to Git,", "https://www.atlassian.com/git/tutorials/migrating-overview"
    and go through the
    = link_to "import flow", status_import_bitbucket_path, "data-no-turbolink" => "true"
    again.


:javascript
  new ImporterStatus("#{jobs_import_bitbucket_path}", "#{import_bitbucket_path}");