summaryrefslogtreecommitdiff
path: root/app/views/projects/_import_project_pane.html.haml
blob: cfbaebec876827fc07125bfdc531f60956945397 (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
- active_tab = local_assigns.fetch(:active_tab, 'blank')

.project-import
  .form-group.import-btn-container.clearfix
    %h5
      Import project from
    .import-buttons
      - if gitlab_project_import_enabled?
        .import_gitlab_project.has-tooltip{ data: { container: 'body' } }
          = link_to new_import_gitlab_project_path, class: 'btn btn_import_gitlab_project project-submit' do
            = icon('gitlab', text: 'GitLab export')
      %div
        - if github_import_enabled?
          = link_to new_import_github_path, class: 'btn js-import-github' do
            = icon('github', text: 'GitHub')
      %div
        - if bitbucket_import_enabled?
          = link_to status_import_bitbucket_path, class: "btn import_bitbucket #{'how_to_import_link' unless bitbucket_import_configured?}" do
            = icon('bitbucket', text: 'Bitbucket')
          - unless bitbucket_import_configured?
            = render 'bitbucket_import_modal'
      %div
        - if gitlab_import_enabled?
          = link_to status_import_gitlab_path, class: "btn import_gitlab #{'how_to_import_link' unless gitlab_import_configured?}" do
            = icon('gitlab', text: 'GitLab.com')
          - unless gitlab_import_configured?
            = render 'gitlab_import_modal'
      %div
        - if google_code_import_enabled?
          = link_to new_import_google_code_path, class: 'btn import_google_code' do
            = icon('google', text: 'Google Code')
      %div
        - if fogbugz_import_enabled?
          = link_to new_import_fogbugz_path, class: 'btn import_fogbugz' do
            = icon('bug', text: 'Fogbugz')
      %div
        - if gitea_import_enabled?
          = link_to new_import_gitea_path, class: 'btn import_gitea' do
            = custom_icon('go_logo')
            Gitea
      %div
        - if git_import_enabled?
          %button.btn.js-toggle-button.js-import-git-toggle-button{ type: "button", data: { toggle_open_class: 'active' } }
            = icon('git', text: 'Repo by URL')
      %div
        - if manifest_import_enabled?
          = link_to new_import_manifest_path, class: 'btn import_manifest' do
            = icon('file-text-o', text: 'Manifest file')

  .js-toggle-content.toggle-import-form{ class: ('hide' if active_tab != 'import') }
    = form_for @project, html: { class: 'new_project' } do |f|
      %hr
      = render "shared/import_form", f: f
      = render 'new_project_fields', f: f, project_name_id: "import-url-name"