summaryrefslogtreecommitdiff
path: root/app/views/projects/_import_project_pane.html.haml
blob: e6ded3ad9127db66364bc7b4f2858358fcebf79f (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
- active_tab = local_assigns.fetch(:active_tab, 'blank')
- track_label = local_assigns.fetch(:track_label, 'import_project')

.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: 'gl-button btn-default btn btn_import_gitlab_project', **tracking_attrs(track_label, 'click_button', 'gitlab_export') do
            .gl-button-icon
              = sprite_icon('tanuki')
            = _("GitLab export")

      - if github_import_enabled?
        %div
          = link_to new_import_github_path, class: 'gl-button btn-default btn js-import-github', **tracking_attrs(track_label, 'click_button', 'github') do
            .gl-button-icon
              = sprite_icon('github')
            GitHub

      - if bitbucket_import_enabled?
        %div
          = link_to status_import_bitbucket_path, class: "gl-button btn-default btn import_bitbucket #{'how_to_import_link' unless bitbucket_import_configured?}",
          **tracking_attrs(track_label, 'click_button', 'bitbucket_cloud') do
            .gl-button-icon
              = sprite_icon('bitbucket')
            Bitbucket Cloud
          - unless bitbucket_import_configured?
            = render 'projects/bitbucket_import_modal'
      - if bitbucket_server_import_enabled?
        %div
          = link_to status_import_bitbucket_server_path, class: "gl-button btn-default btn import_bitbucket", **tracking_attrs(track_label, 'click_button', 'bitbucket_server') do
            .gl-button-icon
              = sprite_icon('bitbucket')
            Bitbucket Server
        %div
      - if gitlab_import_enabled?
        %div
          = link_to status_import_gitlab_path, class: "gl-button btn-default btn import_gitlab #{'how_to_import_link' unless gitlab_import_configured?}",
          **tracking_attrs(track_label, 'click_button', 'gitlab_com') do
            .gl-button-icon
              = sprite_icon('tanuki')
            = _("GitLab.com")
          - unless gitlab_import_configured?
            = render 'projects/gitlab_import_modal'

      - if fogbugz_import_enabled?
        %div
          = link_to new_import_fogbugz_path, class: 'gl-button btn-default btn import_fogbugz', **tracking_attrs(track_label, 'click_button', 'fogbugz') do
            .gl-button-icon
              = sprite_icon('bug')
            FogBugz

      - if gitea_import_enabled?
        %div
          = link_to new_import_gitea_path, class: 'gl-button btn-default btn import_gitea', **tracking_attrs(track_label, 'click_button', 'gitea') do
            .gl-button-icon
              = custom_icon('gitea_logo')
            Gitea

      - if git_import_enabled?
        %div
          %button.gl-button.btn-default.btn.btn-svg.js-toggle-button.js-import-git-toggle-button{ type: "button", data: { toggle_open_class: 'active' }, **tracking_attrs(track_label, 'click_button', 'repo_url') }
            .gl-button-icon
              = sprite_icon('link', css_class: 'gl-icon')
            = _('Repo by URL')

      - if manifest_import_enabled?
        %div
          = link_to new_import_manifest_path, class: 'gl-button btn-default btn import_manifest', **tracking_attrs(track_label, 'click_button', 'manifest_file') do
            .gl-button-icon
              = sprite_icon('doc-text')
            Manifest file

      - if phabricator_import_enabled?
        %div
          = link_to new_import_phabricator_path, class: 'gl-button btn-default btn import_phabricator', data: { track_label: "#{track_label}", track_event: "click_button", track_property: "phabricator" } do
            .gl-button-icon
              = custom_icon('issues')
            = _("Phabricator Tasks")


  .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 'projects/new_project_fields', f: f, project_name_id: "import-url-name", hide_init_with_readme: true, track_label: track_label