debian-mirror-gitlab/app/views/import/bitbucket/status.html.haml

95 lines
4.5 KiB
Text
Raw Normal View History

2018-11-18 11:00:15 +05:30
- page_title _('Bitbucket import')
- header_title _('Projects'), root_path
2017-08-17 22:00:37 +05:30
2015-04-26 12:48:37 +05:30
%h3.page-title
%i.fa.fa-bitbucket
2018-11-18 11:00:15 +05:30
= _('Import projects from Bitbucket')
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
- if @repos.any?
%p.light
2018-11-18 11:00:15 +05:30
= _('Select projects you want to import.')
2015-09-11 14:41:01 +05:30
%p
- if @incompatible_repos.any?
2017-08-17 22:00:37 +05:30
= button_tag class: 'btn btn-import btn-success js-import-all' do
2018-11-18 11:00:15 +05:30
= _('Import all compatible projects')
2017-08-17 22:00:37 +05:30
= icon('spinner spin', class: 'loading-icon')
2015-09-11 14:41:01 +05:30
- else
2017-08-17 22:00:37 +05:30
= button_tag class: 'btn btn-import btn-success js-import-all' do
2018-11-18 11:00:15 +05:30
= _('Import all projects')
2017-08-17 22:00:37 +05:30
= icon('spinner spin', class: 'loading-icon')
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
.position-relative.ms-no-clear.d-flex.flex-fill.float-right.append-bottom-10
= form_tag status_import_bitbucket_path, method: 'get' do
= text_field_tag :filter, @filter, class: 'form-control pr-5', placeholder: _('Filter projects'), size: 40, autofocus: true, 'aria-label': _('Search')
.position-absolute.position-top-0.d-flex.align-items-center.text-muted.position-right-0.h-100
.border-left
%button{ class: 'btn btn-transparent btn-secondary', 'aria-label': _('Search Button'), type: 'submit' }
%i{ class: 'fa fa-search', 'aria-hidden': true }
2016-06-02 11:05:42 +05:30
.table-responsive
2015-11-26 14:37:03 +05:30
%table.table.import-jobs
2016-06-02 11:05:42 +05:30
%colgroup.import-jobs-from-col
%colgroup.import-jobs-to-col
%colgroup.import-jobs-status-col
2015-11-26 14:37:03 +05:30
%thead
%tr
2018-11-18 11:00:15 +05:30
%th= _('From Bitbucket')
%th= _('To GitLab')
%th= _('Status')
2015-11-26 14:37:03 +05:30
%tbody
- @already_added_projects.each do |project|
2017-08-17 22:00:37 +05:30
%tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
2015-11-26 14:37:03 +05:30
%td
2017-08-17 22:00:37 +05:30
= link_to project.import_source, "https://bitbucket.org/#{project.import_source}", target: '_blank', rel: 'noopener noreferrer'
2015-11-26 14:37:03 +05:30
%td
2017-09-10 17:25:29 +05:30
= link_to project.full_path, [project.namespace.becomes(Namespace), project]
2015-11-26 14:37:03 +05:30
%td.job-status
2019-02-15 15:39:39 +05:30
- case project.import_status
- when 'finished'
2015-11-26 14:37:03 +05:30
%span
%i.fa.fa-check
2018-11-18 11:00:15 +05:30
= _('done')
2019-02-15 15:39:39 +05:30
- when 'started'
2015-11-26 14:37:03 +05:30
%i.fa.fa-spinner.fa-spin
2018-11-18 11:00:15 +05:30
= _('started')
2015-11-26 14:37:03 +05:30
- else
= project.human_import_status_name
2015-04-26 12:48:37 +05:30
2015-11-26 14:37:03 +05:30
- @repos.each do |repo|
2017-08-17 22:00:37 +05:30
%tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
2015-11-26 14:37:03 +05:30
%td
2017-08-17 22:00:37 +05:30
= link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
2015-11-26 14:37:03 +05:30
%td.import-target
2017-08-17 22:00:37 +05:30
%fieldset.row
.input-group
2018-11-08 19:23:39 +05:30
.project-path.input-group-prepend
2017-08-17 22:00:37 +05:30
- 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) } : {}
2019-12-21 20:55:43 +05:30
= select_tag :namespace_id, namespaces_options(selected, opts.merge({ display_path: true })), { class: 'select2 js-select-namespace', tabindex: 1 }
2017-08-17 22:00:37 +05:30
- else
2018-11-08 19:23:39 +05:30
= text_field_tag :path, current_user.namespace_path, class: "input-group-text input-large form-control", tabindex: 1, disabled: true
%span.input-group-prepend
.input-group-text /
2018-11-20 20:47:30 +05:30
= text_field_tag :path, sanitize_project_name(repo.slug), class: "input-mini form-control", tabindex: 2, autofocus: true, required: true
2015-11-26 14:37:03 +05:30
%td.import-actions.job-status
2017-08-17 22:00:37 +05:30
= button_tag class: 'btn btn-import js-add-to-import' do
2018-11-18 11:00:15 +05:30
= _('Import')
2017-08-17 22:00:37 +05:30
= icon('spinner spin', class: 'loading-icon')
2015-11-26 14:37:03 +05:30
- @incompatible_repos.each do |repo|
2017-08-17 22:00:37 +05:30
%tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
2015-11-26 14:37:03 +05:30
%td
2017-08-17 22:00:37 +05:30
= link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
2015-11-26 14:37:03 +05:30
%td.import-target
%td.import-actions-job-status
2018-11-18 11:00:15 +05:30
= label_tag _('Incompatible Project'), nil, class: 'label badge-danger'
2015-09-11 14:41:01 +05:30
- if @incompatible_repos.any?
%p
2018-11-18 11:00:15 +05:30
= _("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 }
2015-09-11 14:41:01 +05:30
2016-09-13 17:45:13 +05:30
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_bitbucket_path}", import_path: "#{import_bitbucket_path}" } }