-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
jquery.phoenix.js
209 lines (192 loc) · 6.63 KB
/
jquery.phoenix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
Copyright (c) 2013-2015 Nick Kugaevsky
Licensed under the MIT License
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
Phoenix is a simple jQuery plugin to make your form
input safe (I mean save) in your browser's local storage.
@version 1.2.3
@url github.com/kugaevsky/jquery-phoenix
---------------------
FEATURES:
- HTML5 localStorage persistance
- Simple event API
– Configurable usage
*/
(function($, window) {
"use strict";
var Phoenix, defaults, pluginName, saveTimers, supportsHtml5Storage;
pluginName = "phoenix";
defaults = {
namespace: "phoenixStorage",
webStorage: "localStorage",
maxItems: 100,
saveInterval: 1000,
clearOnSubmit: false,
saveOnChange: false,
keyAttributes: ["tagName", "id", "name"]
};
saveTimers = [];
Phoenix = (function() {
function Phoenix(element, option) {
var attr, storageArray;
this.element = element;
this._defaults = defaults;
this._name = pluginName;
this.$element = $(this.element);
this.options = $.extend({}, defaults, (typeof option === "object" ? option : void 0));
if (typeof option === "string") {
this.action = option;
}
this.uri = window.location.host + window.location.pathname;
storageArray = [this.options.namespace, this.uri].concat((function() {
var _i, _len, _ref, _results;
_ref = this.options.keyAttributes;
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
attr = _ref[_i];
_results.push(this.element[attr]);
}
return _results;
}).call(this));
this.storageKey = storageArray.join(".");
this.storageIndexKey = [this.options.namespace, "index", window.location.host].join(".");
this.webStorage = window[this.options.webStorage];
this.init();
}
Phoenix.prototype.indexedItems = function() {
return JSON.parse(this.webStorage[this.storageIndexKey]);
};
Phoenix.prototype.remove = function() {
var e, indexedItems;
this.stop();
this.webStorage.removeItem(this.storageKey);
e = $.Event("phnx.removed");
this.$element.trigger(e);
indexedItems = this.indexedItems();
indexedItems.slice($.inArray(this.storageKey, indexedItems), 1);
this.webStorage[this.storageIndexKey] = JSON.stringify(indexedItems);
};
Phoenix.prototype.updateIndex = function() {
var indexedItems;
indexedItems = this.indexedItems();
if ($.inArray(this.storageKey, indexedItems) === -1) {
indexedItems.push(this.storageKey);
if (indexedItems.length > this.options.maxItems) {
this.webStorage.removeItem(indexedItems[0]);
indexedItems.shift();
}
this.webStorage[this.storageIndexKey] = JSON.stringify(indexedItems);
}
};
Phoenix.prototype.load = function() {
var e, savedValue;
savedValue = this.webStorage[this.storageKey];
if (savedValue != null) {
if (this.$element.is(":checkbox, :radio")) {
this.element.checked = JSON.parse(savedValue);
} else if (this.element.tagName === "SELECT") {
this.$element.find("option").prop("selected", false);
$.each(JSON.parse(savedValue), (function(_this) {
return function(i, value) {
return _this.$element.find("option[value='" + value + "']").prop("selected", true);
};
})(this));
} else {
this.element.value = savedValue;
}
e = $.Event("phnx.loaded");
return this.$element.trigger(e);
}
};
Phoenix.prototype.save = function() {
var e, selectedValues;
this.webStorage[this.storageKey] = this.$element.is(":checkbox, :radio") ? this.element.checked : this.element.tagName === "SELECT" ? (selectedValues = $.map(this.$element.find("option:selected"), function(el) {
return el.value;
}), JSON.stringify(selectedValues)) : this.element.value;
e = $.Event("phnx.saved");
this.$element.trigger(e);
return this.updateIndex();
};
Phoenix.prototype.start = function() {
var e, saveTimer;
saveTimer = this.options.saveInterval >= 0 ? setInterval(((function(_this) {
return function() {
return _this.save();
};
})(this)), this.options.saveInterval) : setTimeout(((function(_this) {
return function() {
return _this.save();
};
})(this)));
saveTimers.push(saveTimer);
e = $.Event("phnx.started");
return this.$element.trigger(e);
};
Phoenix.prototype.stop = function() {
var e;
saveTimers.forEach(function(t) {
return clearInterval(t);
});
e = $.Event("phnx.stopped");
return this.$element.trigger(e);
};
Phoenix.prototype.init = function() {
if (this.webStorage[this.storageIndexKey] === void 0) {
this.webStorage[this.storageIndexKey] = "[]";
}
switch (this.action) {
case "remove":
return this.remove();
case "start":
return this.start();
case "stop":
return this.stop();
case "load":
return this.load();
case "save":
return this.save();
default:
this.load();
this.start();
if (this.options.clearOnSubmit) {
$(this.options.clearOnSubmit).submit((function(_this) {
return function() {
return _this.remove();
};
})(this));
}
if (this.options.saveOnChange) {
return $(this.element).change((function(_this) {
return function() {
return _this.save();
};
})(this));
}
}
};
return Phoenix;
})();
supportsHtml5Storage = function(webStorage) {
try {
return webStorage in window && window[webStorage] !== null;
} catch (_error) {
return false;
}
};
$.fn[pluginName] = function(option) {
var pluginID;
pluginID = "plugin_" + pluginName;
return this.each(function() {
if (!($.data(this, pluginID) && !supportsHtml5Storage(option.webStorage || defaults.webStorage))) {
return $.data(this, pluginID, new Phoenix(this, option));
}
});
};
})(jQuery, window);