2013-02-04 22:46:31 -05:00
|
|
|
= render "head"
|
2013-07-15 08:03:56 -04:00
|
|
|
.project-network
|
2014-06-14 12:35:45 -04:00
|
|
|
.controls
|
2015-01-24 13:02:58 -05:00
|
|
|
= form_tag namespace_project_network_path(@project.namespace, @project, @id), method: :get, class: 'form-inline network-form' do |f|
|
2014-09-03 07:13:26 -04:00
|
|
|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: 'search-input form-control input-mx-250 search-sha'
|
2014-09-26 10:52:36 -04:00
|
|
|
= button_tag class: 'btn btn-success btn-search-sha' do
|
2014-10-01 18:21:29 -04:00
|
|
|
%i.fa.fa-search
|
2014-06-14 12:35:45 -04:00
|
|
|
.inline.prepend-left-20
|
|
|
|
.checkbox.light
|
|
|
|
= label_tag :filter_ref do
|
|
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref]
|
|
|
|
%span Begin with the selected commit
|
|
|
|
|
2013-07-15 08:03:56 -04:00
|
|
|
.network-graph
|
2014-06-11 15:22:58 -04:00
|
|
|
= spinner nil, true
|
2012-12-04 18:57:21 -05:00
|
|
|
|
2011-11-13 06:58:45 -05:00
|
|
|
:javascript
|
2014-09-03 07:13:26 -04:00
|
|
|
disableButtonIfEmptyField('#extended_sha1', '.btn-search-sha')
|
|
|
|
|
2014-08-21 04:14:31 -04:00
|
|
|
network_graph = new Network({
|
2015-01-24 13:02:58 -05:00
|
|
|
url: '#{namespace_project_network_path(@project.namespace, @project, @ref, @options.merge(format: :json))}',
|
|
|
|
commit_url: '#{namespace_project_commit_path(@project.namespace, @project, 'ae45ca32').gsub("ae45ca32", "%s")}',
|
2013-05-02 07:36:53 -04:00
|
|
|
ref: '#{@ref}',
|
|
|
|
commit_id: '#{@commit.id}'
|
2013-07-15 08:03:56 -04:00
|
|
|
})
|
2014-08-21 04:14:31 -04:00
|
|
|
new ShortcutsNetwork(network_graph.branch_graph)
|