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) {
52 var lst = get_selection_list();
53 $("#persistent-selection-count").text(lst.length);
55 $('#selection-form-content').html(
56 '<li><a href="#" id="clear_selections_button">Clear selections</a></li>'
57 + '<li><input type="submit" name="combine_selected_files_into_collection" '
58 + ' id="combine_selected_files_into_collection" '
59 + ' value="Combine selected collections and files into a new collection" /></li>'
60 + '<li class="notification"><table style="width: 100%"></table></li>');
62 for (var i = 0; i < lst.length; i++) {
63 $('#selection-form-content > li > table').append("<tr>"
65 + "<input class='remove-selection' name='selection[]' type='checkbox' value='" + lst[i].uuid + "' checked='true' data-stoppropagation='true' />"
69 + "<div style='padding-left: 1em'><a href=\"" + lst[i].href + "\">" + lst[i].name + "</a></div>"
72 + "<td style=\"vertical-align: top\">"
73 + "<span style=\"padding-right: 1em\">" + lst[i].type + "</span>"
79 $('#selection-form-content').html("<li class='notification empty'>No selections.</li>");
82 var checkboxes = $('.persistent-selection:checkbox');
83 for (i = 0; i < checkboxes.length; i++) {
84 for (var j = 0; j < lst.length; j++) {
85 if (lst[j].uuid == $(checkboxes[i]).val()) {
86 checkboxes[i].checked = true;
90 if (j == lst.length) {
91 checkboxes[i].checked = false;
95 $('.remove-selection').on('click', remove_selection_click);
96 $('#clear_selections_button').on('click', clear_selections);
100 on('change', '.persistent-selection:checkbox', function(e) {
101 //console.log($(this));
102 //console.log($(this).val());
105 if ($(this).is(":checked")) {
106 add_selection($(this).val(), $(this).attr('friendly_name'), $(this).attr('href'), $(this).attr('friendly_type'));
109 remove_selection($(this).val());
114 $(window).on('load storage', update_count);
116 $('#selection-form-content').on("click", function(e) {
121 add_form_selection_sources = null;
122 select_form_sources = null;
125 var form_selection_sources = {};
126 add_form_selection_sources = function (src) {
127 for (var i = 0; i < src.length; i++) {
128 var t = form_selection_sources[src[i].type];
130 t = form_selection_sources[src[i].type] = {};
132 if (!t[src[i].uuid]) {
133 t[src[i].uuid] = src[i];
138 select_form_sources = function(type) {
141 if (get_selection_list) {
142 var lst = get_selection_list();
143 if (lst.length > 0) {
144 var text = "― Selections ―";
145 var span = document.createElement('span');
146 span.innerHTML = text;
147 ret.push({text: span.innerHTML, value: "***invalid***"});
149 for (var i = 0; i < lst.length; i++) {
150 if (lst[i].type == type) {
152 n = n.replace(/<span[^>]*>/i, "[");
153 n = n.replace(/<\/span>/i, "]");
154 ret.push({text: n, value: lst[i].uuid})
160 var text = "― Recent ―";
161 var span = document.createElement('span');
162 span.innerHTML = text;
163 ret.push({text: span.innerHTML, value: "***invalid***"});
165 var t = form_selection_sources[type];
167 if (t.hasOwnProperty(key)) {
169 ret.push({text: obj.name, value: obj.uuid})