6 $editable_stock_props => {}
7 $editable_stock_props_definitions => {}
9 $management_factor_types => ()
13 <& /util/import_javascript.mas, classes => [ 'jstree.dist.jstree', 'bootstrap_min.js', 'jquery.iframe-post-form', 'CXGN.List', 'CXGN.BreedersToolbox.AddTrial','CXGN.BreedersToolbox.UploadTrial','CXGN.BreedersToolbox.Trial', 'CXGN.Trial','CXGN.BreedersToolbox.GenotypingTrial','CXGN.BreedersToolbox.Accessions', 'CXGN.BreedersToolbox.UploadPedigrees','CXGN.BreedersToolbox.Crosses','CXGN.BreedersToolbox.FieldBook','CXGN.BreedersToolbox.UploadPhenotype', 'CXGN.BreederSearch', 'CXGN.Trial','CXGN.TrialTreeFolders' ] &>
15 <& /util/import_css.mas, paths => ['/static/documents/inc/jstree_theme/jstree-bstheme-min.css'] &>
17 <& /breeders_toolbox/folder/folder_set.mas, project_type => 'field_trial' &>
18 <& /breeders_toolbox/folder/folder_new.mas, project_type => 'field_trial' &>
19 <& /breeders_toolbox/folder/folder_move.mas, project_type => 'field_trial' &>
20 <& /breeders_toolbox/folder/folders_edit.mas, folder_tree_type => 'Trial', folder_tree_identifier => 'trial_list', folder_tree_refresh_name => 'refresh_jstree_html' &>
22 <& /breeders_toolbox/trial/trial_create_dialogs.mas, locations => \@locations, breeding_programs => $breeding_programs, management_factor_types => $management_factor_types, design_types => $design_types &>
24 <& /breeders_toolbox/trial/download_trials_phenotypes_dialog.mas &>
26 <& /breeders_toolbox/trial/trial_upload_dialogs.mas, locations => \@locations, breeding_programs => $breeding_programs, design_types => $design_types &>
27 <& /breeders_toolbox/add_accessions_dialogs.mas, preferred_species=>$preferred_species, editable_stock_props=>$editable_stock_props, editable_stock_props_definitions=>$editable_stock_props_definitions &>
28 <& /breeders_toolbox/upload_seedlots_dialogs.mas &>
29 <& /breeders_toolbox/add_seedlot_dialogs.mas, timestamp=>$timestamp &>
31 <table class="table table-bordered">
35 <th>Breeding Programs -- Folders -- Trials <button class="btn btn-sm btn-default" id="refresh_jstree_html_trialtree_button" name="refresh_jstree_html">Refresh</button></th>
42 <input type="text" class="form-control input-sm" id="trial_tree_search" placeholder="Search" />
44 <h4>Download Trial Phenotypes</h4>
45 <h5><i>Select multiple trials by holding 'Ctrl'.</i></h5>
46 <button class="btn btn-primary" id="trials_download_phenotypes_button" disabled="disabled" title="First Select Trial(s) to Download">Download Phenotypes</button>
48 <h5><i>Double click<br />trial ( <span class="glyphicon glyphicon-leaf text-success"></span> ) or folder ( <span class="glyphicon glyphicon-folder-open text-danger"></span> )<br/>to view detail page.</i></h5>
49 <h5><i>Breeding programs ( <span class="glyphicon glyphicon-briefcase text-info"></span> )</i></h5>
50 <h5><i>Analyses ( <span class="glyphicon glyphicon-stats text-success"></span> )</i></h5>
51 <h5><i>Sampling trials ( <span class="glyphicon glyphicon-th text-success"></span> )</i></h5>
54 <button class="btn btn-sm btn-default" id="new_folder_dialog_link">Create new folder</button><br/><br/>
55 <button class="btn btn-sm btn-default" id="open_folder_dialog_link">Move trial(s) to folder</button><br/><br/>
56 <button class="btn btn-sm btn-default" id="move_folder_dialog_link">Move folder</button>
58 <div id="folder_edit_options" style="display:none">
60 <h5><i>Select multiple folders by holding 'Ctrl'.</i></h5>
61 <button class="btn btn-primary" id="edit_folders_button" title="First Select Folder(s) to Edit">Edit Folder(s)</button>
65 <!--<button id="delete" disabled="disabled" >Delete</button -->
69 <div id="trial_list" >[loading...]</div>
80 jQuery(document).ready(function($) {
83 url: '/ajax/breeders/get_trials_with_folders_cached?type=trial',
84 success: function(response) {
85 var html = '<ul>'+response.html+'</ul>';
87 jQuery('#trial_list').html(html);
89 jQuery('#trial_list').jstree( {
90 "core": { 'themes': { 'name': 'proton', 'responsive': true}},
91 "valid_children" : [ "folder", "trial", "breeding_program", "analyses" ],
93 "breeding_program" : {
94 "icon": 'glyphicon glyphicon-briefcase text-info',
97 "icon": 'glyphicon glyphicon-folder-open text-danger',
100 "icon": 'glyphicon glyphicon-leaf text-success',
103 "icon": 'glyphicon glyphicon-stats text-success',
106 "icon": 'glyphicon glyphicon-th text-success',
110 "case_insensitive" : true,
112 "plugins" : ["html_data","types","search"],
117 error: function(response) {
118 alert("An error occurred while loading the trial data.");
122 jQuery('#refresh_jstree_html_trialtree_button').click(function(){
124 url: '/ajax/breeders/get_trials_with_folders_cached?type=trial',
125 success: function(response) {
126 var html = '<ul>'+response.html+'</ul>';
128 jQuery('#trial_list').html(html);
130 jQuery('#trial_list').jstree( {
131 "core": { 'themes': { 'name': 'proton', 'responsive': true}},
132 "valid_children" : [ "folder", "trial", "breeding_program", "analyses", "sampling_trial" ],
134 "breeding_program" : {
135 "icon": 'glyphicon glyphicon-briefcase text-info',
138 "icon": 'glyphicon glyphicon-folder-open text-danger',
141 "icon": 'glyphicon glyphicon-leaf text-success',
144 "icon": 'glyphicon glyphicon-stats text-success',
147 "icon": 'glyphicon glyphicon-th text-success',
151 "case_insensitive" : true,
153 "plugins" : ["html_data","types","search"],
158 error: function(response) {
159 alert("An error occurred while loading the trial data.");
164 jQuery("#trial_tree_search").keyup(function() {
165 var v = jQuery("#trial_tree_search").val();
166 jQuery("#trial_list").jstree(true).search(v);
171 jQuery('#trial_list').on("changed.jstree", function (e, data) {
173 if ($('#trial_list').jstree('is_leaf', data.node) && data.node.data.jstree.type == 'trial') {
174 jQuery('#trials_download_phenotypes_button').removeAttr('disabled');
175 jQuery("#folder_edit_options").hide();
177 else if ($('#trial_list').jstree('is_leaf', data.node) && data.node.data.jstree.type == 'folder') {
178 jQuery('#trials_download_phenotypes_button').attr('disabled', 'disabled');
179 jQuery("#folder_edit_options").show();
182 jQuery('#trials_download_phenotypes_button').attr('disabled', 'disabled');
183 jQuery("#folder_edit_options").hide();
188 $("#trial_list").delegate("li", "dblclick", function(event){
189 var node = $("#trial_list").jstree("get_node", this);
191 if (node.id.substr(0,1) !== 'j') {
192 if (node.type == 'folder') {
193 window.open('/folder/'+node.id);
194 event.stopPropagation();
195 } else if (node.type == 'breeding_program') {
196 window.open('/breeders/program/'+node.id);
197 event.stopPropagation();
198 } else if (node.type == 'analyses') {
199 window.open('/analyses/'+node.id);
200 event.stopPropagation();
201 } else if (node.type == 'trial') {
202 window.open('/breeders_toolbox/trial/'+node.id);
203 event.stopPropagation();
204 } else if (node.type == 'sampling_trial') {
205 window.open('/breeders_toolbox/trial/'+node.id);
206 event.stopPropagation();