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_folder" id="copy_selections_into_folder"><i class="fa fa-fw fa-folder-open"></i> Copy selections into this folder</button></li>';
62 html += '<li><button class="btn btn-xs btn-info" type="submit" name="combine_selected_files_into_collection" '
63 + ' id="combine_selected_files_into_collection">'
64 + '<i class="fa fa-fw fa-archive"></i> Combine selected collections and files into a new collection</button></li>'
65 + '<li class="notification"><table style="width: 100%"></table></li>';
66 $('#selection-form-content').html(html);
68 for (var i = 0; i < lst.length; i++) {
69 $('#selection-form-content > li > table').append("<tr>"
71 + "<input class='remove-selection' name='selection[]' type='checkbox' value='" + lst[i].uuid + "' checked='true' data-stoppropagation='true' />"
75 + "<div style='padding-left: 1em'><a href=\"" + lst[i].href + "\">" + lst[i].name + "</a></div>"
78 + "<td style=\"vertical-align: top\">"
79 + "<span style=\"padding-right: 1em\">" + lst[i].type + "</span>"
85 $('#selection-form-content').html("<li class='notification empty'>No selections.</li>");
88 var checkboxes = $('.persistent-selection:checkbox');
89 for (i = 0; i < checkboxes.length; i++) {
90 for (var j = 0; j < lst.length; j++) {
91 if (lst[j].uuid == $(checkboxes[i]).val()) {
92 checkboxes[i].checked = true;
96 if (j == lst.length) {
97 checkboxes[i].checked = false;
101 $('.remove-selection').on('click', remove_selection_click);
102 $('#clear_selections_button').on('click', clear_selections);
106 on('change', '.persistent-selection:checkbox', function(e) {
107 //console.log($(this));
108 //console.log($(this).val());
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());
120 $(window).on('load storage', update_count);
122 $('#selection-form-content').on("click", function(e) {
127 add_form_selection_sources = null;
128 select_form_sources = null;
131 var form_selection_sources = {};
132 add_form_selection_sources = function (src) {
133 for (var i = 0; i < src.length; i++) {
134 var t = form_selection_sources[src[i].type];
136 t = form_selection_sources[src[i].type] = {};
138 if (!t[src[i].uuid]) {
139 t[src[i].uuid] = src[i];
144 select_form_sources = function(type) {
147 if (get_selection_list) {
148 var lst = get_selection_list();
149 if (lst.length > 0) {
150 var text = "― Selections ―";
151 var span = document.createElement('span');
152 span.innerHTML = text;
153 ret.push({text: span.innerHTML, value: "***invalid***"});
155 for (var i = 0; i < lst.length; i++) {
156 if (lst[i].type == type) {
158 n = n.replace(/<span[^>]*>/i, "[");
159 n = n.replace(/<\/span>/i, "]");
160 ret.push({text: n, value: lst[i].uuid})
166 var text = "― Recent ―";
167 var span = document.createElement('span');
168 span.innerHTML = text;
169 ret.push({text: span.innerHTML, value: "***invalid***"});
171 var t = form_selection_sources[type];
173 if (t.hasOwnProperty(key)) {
175 ret.push({text: obj.name, value: obj.uuid})