status.html.haml 4.6 KB
Newer Older
1 2
- page_title _('Bitbucket import')
- header_title _('Projects'), root_path
3

D
Douwe Maan 已提交
4 5
%h3.page-title
  %i.fa.fa-bitbucket
6
  = _('Import projects from Bitbucket')
D
Douwe Maan 已提交
7

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

21 22 23 24 25 26 27 28 29
.position-relative.ms-no-clear.d-flex.flex-fill.float-right
  = form_tag status_import_bitbucket_path, method: 'get' do
    = text_field_tag :filter, @filter, class: 'form-control append-bottom-10 pr-5', placeholder: _('Filter projects'), size: 40, autofocus: true
    .position-absolute.position-top-0.d-flex.align-items-center.text-muted.position-right-0{ style: 'margin-top: 1px' }
      %i{ class: 'fa fa-times fa-lg pl-2 pr-2 cursor-pointer d-none', 'aria-hidden': true }
      .border-left
        %button{ class: 'btn btn-transparent btn-secondary', type: 'submit' }
          %i{ class: 'fa fa-search', 'aria-hidden': true }

30
.table-responsive
D
Douwe Maan 已提交
31
  %table.table.import-jobs
32 33 34
    %colgroup.import-jobs-from-col
    %colgroup.import-jobs-to-col
    %colgroup.import-jobs-status-col
D
Douwe Maan 已提交
35 36
    %thead
      %tr
37 38 39
        %th= _('From Bitbucket')
        %th= _('To GitLab')
        %th= _('Status')
D
Douwe Maan 已提交
40 41
    %tbody
      - @already_added_projects.each do |project|
42
        %tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
D
Douwe Maan 已提交
43
          %td
44
            = link_to project.import_source, "https://bitbucket.org/#{project.import_source}", target: '_blank', rel: 'noopener noreferrer'
D
Douwe Maan 已提交
45
          %td
46
            = link_to project.full_path, [project.namespace.becomes(Namespace), project]
D
Douwe Maan 已提交
47
          %td.job-status
48 49
            - case project.import_status
            - when 'finished'
D
Douwe Maan 已提交
50 51
              %span
                %i.fa.fa-check
52
                = _('done')
53
            - when 'started'
D
Douwe Maan 已提交
54
              %i.fa.fa-spinner.fa-spin
55
              = _('started')
D
Douwe Maan 已提交
56 57
            - else
              = project.human_import_status_name
D
Douwe Maan 已提交
58

D
Douwe Maan 已提交
59
      - @repos.each do |repo|
60
        %tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
D
Douwe Maan 已提交
61
          %td
62
            = link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
D
Douwe Maan 已提交
63
          %td.import-target
64 65
            %fieldset.row
            .input-group
66
              .project-path.input-group-prepend
67 68 69
                - if current_user.can_select_namespace?
                  - selected = params[:namespace_id] || :current_user
                  - opts = current_user.can_create_group? ? { extra_group: Group.new(name: repo.owner, path: repo.owner) } : {}
70
                  = select_tag :namespace_id, namespaces_options(selected, opts.merge({ display_path: true })), { class: 'select2 js-select-namespace', tabindex: 1 }
71 72
                - else
                  = text_field_tag :path, current_user.namespace_path, class: "input-group-text input-large form-control", tabindex: 1, disabled: true
73 74
              %span.input-group-prepend
                .input-group-text /
75
              = text_field_tag :path, sanitize_project_name(repo.slug), class: "input-mini form-control", tabindex: 2, autofocus: true, required: true
D
Douwe Maan 已提交
76
          %td.import-actions.job-status
77
            = button_tag class: 'btn btn-import js-add-to-import' do
78
              = _('Import')
79
              = icon('spinner spin', class: 'loading-icon')
D
Douwe Maan 已提交
80
      - @incompatible_repos.each do |repo|
81
        %tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
D
Douwe Maan 已提交
82
          %td
83
            = link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
D
Douwe Maan 已提交
84 85
          %td.import-target
          %td.import-actions-job-status
86
            = label_tag _('Incompatible Project'), nil, class: 'label badge-danger'
87 88 89

- if @incompatible_repos.any?
  %p
90 91 92 93
    = _("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.")
    - link_to_git = link_to(_('Git'), 'https://www.atlassian.com/git/tutorials/migrating-overview')
    - link_to_import_flow = link_to(_('import flow'), status_import_bitbucket_path)
    = _("Please convert them to %{link_to_git}, and go through the %{link_to_import_flow} again.").html_safe % { link_to_git: link_to_git, link_to_import_flow: link_to_import_flow }
94

95
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_bitbucket_path}", import_path: "#{import_bitbucket_path}" } }