status.html.haml 2.9 KB
Newer Older
D
Douwe Maan 已提交
1
- page_title "Bitbucket import"
D
Douwe Maan 已提交
2
- header_title "Projects", root_path
D
Douwe Maan 已提交
3 4
%h3.page-title
  %i.fa.fa-bitbucket
D
Douwe Maan 已提交
5
  Import projects from Bitbucket
D
Douwe Maan 已提交
6

7 8 9 10 11 12
- if @repos.any?
  %p.light
    Select projects you want to import.
  %hr
  %p
  - if @incompatible_repos.any?
13 14
    = button_tag class: "btn btn-import btn-success js-import-all" do
      Import all compatible projects
P
Phil Hughes 已提交
15
      = icon("spinner spin", class: "loading-icon")
16
  - else
17 18
    = button_tag class: "btn btn-success js-import-all" do
      Import all projects
P
Phil Hughes 已提交
19
      = icon("spinner spin", class: "loading-icon")
20

21
.table-responsive
D
Douwe Maan 已提交
22
  %table.table.import-jobs
23 24 25
    %colgroup.import-jobs-from-col
    %colgroup.import-jobs-to-col
    %colgroup.import-jobs-status-col
D
Douwe Maan 已提交
26 27 28 29 30 31 32 33 34 35 36
    %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
37
            = link_to project.path_with_namespace, [project.namespace.becomes(Namespace), project]
D
Douwe Maan 已提交
38 39 40 41 42 43 44 45 46 47
          %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
D
Douwe Maan 已提交
48

D
Douwe Maan 已提交
49 50 51 52 53 54 55
      - @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
56 57
            = button_tag class: "btn btn-import js-add-to-import" do
              Import
P
Phil Hughes 已提交
58
              = icon("spinner spin", class: "loading-icon")
D
Douwe Maan 已提交
59 60 61 62 63 64 65
      - @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"
66 67 68 69 70 71 72 73

- 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
74
    = link_to "import flow", status_import_bitbucket_path, "data-no-turbolink" => "true"
75 76
    again.

D
Douwe Maan 已提交
77

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