4 /** Javascript for local persistent selection. */
6 get_selection_list = null;
7 form_selection_sources = {};
10 var storage = localStorage; // sessionStorage
12 get_selection_list = function() {
13 if (!storage.persistentSelection) {
14 storage.persistentSelection = JSON.stringify([]);
16 return JSON.parse(storage.persistentSelection);
19 var put_storage = function(lst) {
20 storage.persistentSelection = JSON.stringify(lst);
23 var add_selection = function(uuid, name, href, type) {
24 var lst = get_selection_list();
25 lst.push({"uuid": uuid, "name": name, "href": href, "type": type});
30 var remove_selection = function(uuid) {
31 var lst = get_selection_list();
32 for (var i = 0; i < lst.length; i++) {
33 if (lst[i].uuid == uuid) {
42 var remove_selection_click = function(e) {
43 remove_selection($(this).val());
46 var clear_selections = function() {
51 var update_count = function(e) {
53 var this_object_uuid = $('#selection-form-content').
55 find('input[name=uuid]').val();
56 var lst = get_selection_list();
57 $("#persistent-selection-count").text(lst.length);
59 html = '<li><a href="#" class="btn btn-xs btn-info" id="clear_selections_button"><i class="fa fa-fw fa-ban"></i> Clear selections</a></li>';
60 if (this_object_uuid.match('-j7d0g-')) {
61 html += '<li><button class="btn btn-xs btn-info" type="submit" name="copy_selections_into_project" id="copy_selections_into_project"><i class="fa fa-fw fa-copy"></i> Copy selections into this project</button></li>';
62 html += '<li><button class="btn btn-xs btn-info" type="submit" name="move_selections_into_project" id="move_selections_into_project"><i class="fa fa-fw fa-truck"></i> Move selections into this project</button></li>';
64 html += '<li><button class="btn btn-xs btn-info" type="submit" name="combine_selected_files_into_collection" '
65 + ' id="combine_selected_files_into_collection">'
66 + '<i class="fa fa-fw fa-archive"></i> Combine selected collections and files into a new collection</button></li>'
67 + '<li class="notification"><table style="width: 100%"></table></li>';
68 $('#selection-form-content').html(html);
70 for (var i = 0; i < lst.length; i++) {
71 $('#selection-form-content > li > table').append("<tr>"
73 + "<input class='remove-selection' name='selection[]' type='checkbox' value='" + lst[i].uuid + "' checked='true' data-stoppropagation='true' />"
77 + "<div style='padding-left: 1em'><a href=\"" + lst[i].href + "\">" + lst[i].name + "</a></div>"
80 + "<td style=\"vertical-align: top\">"
81 + "<span style=\"padding-right: 1em\">" + lst[i].type + "</span>"
87 $('#selection-form-content').html("<li class='notification empty'>No selections.</li>");
90 var checkboxes = $('.persistent-selection:checkbox');
91 for (i = 0; i < checkboxes.length; i++) {
92 for (var j = 0; j < lst.length; j++) {
93 if (lst[j].uuid == $(checkboxes[i]).val()) {
94 checkboxes[i].checked = true;
98 if (j == lst.length) {
99 checkboxes[i].checked = false;
103 $('.remove-selection').on('click', remove_selection_click);
104 $('#clear_selections_button').on('click', clear_selections);
105 $(document).trigger('selections-updated', [lst]);
109 on('change', '.persistent-selection:checkbox', function(e) {
111 if ($(this).is(":checked")) {
112 add_selection($(this).val(), $(this).attr('friendly_name'), $(this).attr('href'), $(this).attr('friendly_type'));
115 remove_selection($(this).val());
119 $(window).on('load storage', update_count);
121 $('#selection-form-content').on("click", function(e) {
126 add_form_selection_sources = null;
127 select_form_sources = null;
130 var form_selection_sources = {};
131 add_form_selection_sources = function (src) {
132 for (var i = 0; i < src.length; i++) {
133 var t = form_selection_sources[src[i].type];
135 t = form_selection_sources[src[i].type] = {};
137 if (!t[src[i].uuid]) {
138 t[src[i].uuid] = src[i];
143 select_form_sources = function(type) {
146 if (get_selection_list) {
147 var lst = get_selection_list();
148 if (lst.length > 0) {
149 var text = "― Selections ―";
150 var span = document.createElement('span');
151 span.innerHTML = text;
152 ret.push({text: span.innerHTML, value: "***invalid***"});
154 for (var i = 0; i < lst.length; i++) {
155 if (lst[i].type == type) {
157 n = n.replace(/<span[^>]*>/i, "[");
158 n = n.replace(/<\/span>/i, "]");
159 ret.push({text: n, value: lst[i].uuid})
165 var text = "― Recent ―";
166 var span = document.createElement('span');
167 span.innerHTML = text;
168 ret.push({text: span.innerHTML, value: "***invalid***"});
170 var t = form_selection_sources[type];
172 if (t.hasOwnProperty(key)) {
174 ret.push({text: obj.name, value: obj.uuid})
181 function dispatch_selection_action() {
182 // Build a new "href" attribute for this link by starting with the
183 // "data-href" attribute and appending ?foo[]=bar&foo[]=baz (or
184 // &foo=... as appropriate) to reflect the current object
187 var param_name = $(this).attr('data-selection-param-name');
188 var href = $(this).attr('data-href');
189 if ($(this).closest('.disabled').length > 0) {
192 $('.persistent-selection:checkbox:checked').each(function() {
193 data.push({name: param_name, value: $(this).val()});
195 if (href.indexOf('?') >= 0)
199 href += $.param(data, true);
200 $(this).attr('href', href);
204 function enable_disable_selection_actions() {
205 var $checked = $('.persistent-selection:checkbox:checked');
206 $('[data-selection-action]').
207 closest('div.btn-group-sm').
209 toggleClass('disabled', ($checked.length == 0));
210 $('[data-selection-action=compare]').
212 toggleClass('disabled',
213 ($checked.filter('[value*=-d1hrv-]').length < 2) ||
214 ($checked.not('[value*=-d1hrv-]').length > 0));
218 on('selections-updated ready ajax:complete', function() {
219 $('[data-selection-action]').click(dispatch_selection_action);
220 enable_disable_selection_actions();