summaryrefslogtreecommitdiff
path: root/app/views/import/manifest/status.html.haml
blob: 653dc24918275519b103bf7005923c77ef243e09 (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
- page_title "Manifest import"
- header_title "Projects", root_path
- provider = 'manifest'

%h3.page-title
  = _('Manifest file import')

%p
  = button_tag class: "btn btn-import btn-success js-import-all" do
    = import_all_githubish_repositories_button_label
    = 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= _('Repository URL')
        %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
            = project.import_url
          %td
            = link_to_project project
          %td.job-status
            - if project.import_status == 'finished'
              %span
                = icon('check')
                = _('Done')
            - elsif project.import_status == 'started'
              = icon("spinner spin")
              = _('Started')
            - elsif project.import_status == 'failed'
              = _('Failed')
            - else
              = project.human_import_status_name

      - @pending_repositories.each do |repository|
        %tr{ id: "repo_#{repository[:id]}" }
          %td
            = repository[:url]
          %td.import-target
            = import_project_target(@group.full_path, repository[:path])
          %td.import-actions.job-status
            = button_tag class: "btn btn-import js-add-to-import" do
              = _('Import')
              = icon("spinner spin", class: "loading-icon")

.js-importer-status{ data: { jobs_import_path: "#{url_for([:jobs, :import, provider])}",
                             import_path: "#{url_for([:import, provider])}",
                             ci_cd_only: "#{has_ci_cd_only_params?}" } }