2015-11-22 23:52:02 -05:00
|
|
|
module ButtonHelper
|
2015-11-24 18:35:24 -05:00
|
|
|
# Output a "Copy to Clipboard" button
|
|
|
|
#
|
|
|
|
# data - Data attributes passed to `content_tag`
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# # Define the clipboard's text
|
|
|
|
# clipboard_button(clipboard_text: "Foo")
|
|
|
|
# # => "<button class='...' data-clipboard-text='Foo'>...</button>"
|
|
|
|
#
|
|
|
|
# # Define the target element
|
2015-12-15 16:11:01 -05:00
|
|
|
# clipboard_button(clipboard_target: "div#foo")
|
|
|
|
# # => "<button class='...' data-clipboard-target='div#foo'>...</button>"
|
2015-11-24 18:35:24 -05:00
|
|
|
#
|
|
|
|
# See http://clipboardjs.com/#usage
|
|
|
|
def clipboard_button(data = {})
|
2015-11-22 23:53:55 -05:00
|
|
|
content_tag :button,
|
|
|
|
icon('clipboard'),
|
2015-11-24 18:35:24 -05:00
|
|
|
class: 'btn btn-xs btn-clipboard',
|
|
|
|
data: data,
|
2015-11-22 23:53:55 -05:00
|
|
|
type: :button
|
|
|
|
end
|
|
|
|
|
2015-11-22 23:52:02 -05:00
|
|
|
def http_clone_button(project)
|
2015-11-24 19:32:06 -05:00
|
|
|
klass = 'btn js-protocol-switch'
|
2015-11-22 23:52:02 -05:00
|
|
|
klass << ' active' if default_clone_protocol == 'http'
|
|
|
|
klass << ' has_tooltip' if current_user.try(:require_password?)
|
|
|
|
|
|
|
|
protocol = gitlab_config.protocol.upcase
|
|
|
|
|
|
|
|
content_tag :button, protocol,
|
|
|
|
class: klass,
|
|
|
|
data: {
|
|
|
|
clone: project.http_url_to_repo,
|
|
|
|
container: 'body',
|
|
|
|
html: 'true',
|
|
|
|
title: "Set a password on your account<br>to pull or push via #{protocol}"
|
|
|
|
},
|
|
|
|
type: :button
|
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_clone_button(project)
|
2015-11-24 19:32:06 -05:00
|
|
|
klass = 'btn js-protocol-switch'
|
2015-11-22 23:52:02 -05:00
|
|
|
klass << ' active' if default_clone_protocol == 'ssh'
|
|
|
|
klass << ' has_tooltip' if current_user.try(:require_ssh_key?)
|
|
|
|
|
|
|
|
content_tag :button, 'SSH',
|
|
|
|
class: klass,
|
|
|
|
data: {
|
|
|
|
clone: project.ssh_url_to_repo,
|
|
|
|
container: 'body',
|
|
|
|
html: 'true',
|
|
|
|
title: 'Add an SSH key to your profile<br>to pull or push via SSH.'
|
|
|
|
},
|
|
|
|
type: :button
|
|
|
|
end
|
|
|
|
end
|