Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_clone.html.haml « buttons « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db5d1ff5693dc092c0dc8230881960fc3faeafa2 (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
- project = project || @project
- dropdown_class = local_assigns.fetch(:dropdown_class, '')

- if can?(current_user, :download_code, @project)
  .git-clone-holder.js-git-clone-holder
    = render Pajamas::ButtonComponent.new(variant: :confirm, button_options: { id: 'clone-dropdown', class: 'clone-dropdown-btn', data: { toggle: 'dropdown', qa_selector: 'clone_dropdown' } }) do
      %span.gl-mr-2.js-clone-dropdown-label
        = _('Clone')
      = sprite_icon("chevron-down", css_class: "icon")
    %ul.dropdown-menu.dropdown-menu-large.dropdown-menu-selectable.clone-options-dropdown{ class: dropdown_class, data: { qa_selector: 'clone_dropdown_content' } }
      - if ssh_enabled?
        %li{ class: 'gl-px-4!' }
          %label.label-bold
            = _('Clone with SSH')
          .input-group.btn-group
            = text_field_tag :ssh_project_clone, ssh_clone_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true, aria: { label: _('Repository clone URL') }, data: { qa_selector: 'ssh_clone_url_content' }
            .input-group-append
              = clipboard_button(target: '#ssh_project_clone', title: _("Copy URL"), class: "input-group-text gl-button btn btn-icon btn-default")
              = render_if_exists 'projects/buttons/geo'
      - if http_enabled?
        %li.pt-2{ class: 'gl-px-4!' }
          %label.label-bold
            = _('Clone with %{http_label}') % { http_label: gitlab_config.protocol.upcase }
          .input-group.btn-group
            = text_field_tag :http_project_clone, http_clone_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true, aria: { label: _('Repository clone URL') }, data: { qa_selector: 'http_clone_url_content' }
            .input-group-append
              = clipboard_button(target: '#http_project_clone', title: _("Copy URL"), class: "input-group-text gl-button btn btn-icon btn-default")
              = render_if_exists 'projects/buttons/geo'
        = render_if_exists 'projects/buttons/kerberos_clone_field'
      %li.divider.mt-2
      %li.pt-2.gl-dropdown-item
        %label.label-bold{ class: 'gl-px-4!' }
          = _('Open in your IDE')
        - if ssh_enabled?
          - escaped_ssh_url_to_repo = CGI.escape(ssh_clone_url_to_repo(project))
          %a.dropdown-item.open-with-link{ href: 'vscode://vscode.git/clone?url=' + escaped_ssh_url_to_repo }
            .gl-dropdown-item-text-wrapper
              = _('Visual Studio Code (SSH)')
        - if http_enabled?
          - escaped_http_url_to_repo = CGI.escape(http_clone_url_to_repo(project))
          %a.dropdown-item.open-with-link{ href: 'vscode://vscode.git/clone?url=' + escaped_http_url_to_repo }
            .gl-dropdown-item-text-wrapper
              = _('Visual Studio Code (HTTPS)')
        - if ssh_enabled?
          %a.dropdown-item.open-with-link{ href: 'jetbrains://idea/checkout/git?idea.required.plugins.id=Git4Idea&checkout.repo=' + escaped_ssh_url_to_repo }
            .gl-dropdown-item-text-wrapper
              = _('IntelliJ IDEA (SSH)')
        - if http_enabled?
          %a.dropdown-item.open-with-link{ href: 'jetbrains://idea/checkout/git?idea.required.plugins.id=Git4Idea&checkout.repo=' + escaped_http_url_to_repo }
            .gl-dropdown-item-text-wrapper
              = _('IntelliJ IDEA (HTTPS)')
        - if show_xcode_link?(@project)
          %a.dropdown-item.open-with-link{ href: xcode_uri_to_repo(@project) }
            .gl-dropdown-item-text-wrapper
              = _("Xcode")