forked from guillaumepotier/Garlic.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
garlic.js
429 lines (333 loc) · 16.6 KB
/
garlic.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/*
Garlic.js allows you to automatically persist your forms' text field values locally,
until the form is submitted. This way, your users don't lose any precious data if they
accidentally close their tab or browser.
author: Guillaume Potier - @guillaumepotier
*/
!function ($) {
"use strict";
/*global localStorage */
/*global document */
/* STORAGE PUBLIC CLASS DEFINITION
* =============================== */
var Storage = function ( options ) {
this.defined = 'undefined' !== typeof localStorage;
}
Storage.prototype = {
constructor: Storage
, get: function ( key, placeholder ) {
return localStorage.getItem( key ) ? localStorage.getItem( key ) : 'undefined' !== typeof placeholder ? placeholder : null;
}
, has: function ( key ) {
return localStorage.getItem( key ) ? true : false;
}
, set: function ( key, value, fn ) {
if ( 'string' === typeof value ) {
// if value is null, remove storage if exists
if ( '' === value ) {
this.destroy( key );
} else {
localStorage.setItem( key , value );
}
}
return 'function' === typeof fn ? fn() : true;
}
, destroy: function ( key, fn ) {
localStorage.removeItem( key );
return 'function' === typeof fn ? fn() : true;
}
, clean: function ( fn ) {
for ( var i = localStorage.length - 1; i >= 0; i-- ) {
if ( 'undefined' === typeof Array.indexOf && -1 !== localStorage.key(i).indexOf( 'garlic:' ) ) {
localStorage.removeItem( localStorage.key(i) );
}
}
return 'function' === typeof fn ? fn() : true;
}
, clear: function ( fn ) {
localStorage.clear();
return 'function' === typeof fn ? fn() : true;
}
}
/* GARLIC PUBLIC CLASS DEFINITION
* =============================== */
var Garlic = function ( element, storage, options ) {
this.init( 'garlic', element, storage, options );
}
Garlic.prototype = {
constructor: Garlic
/* init data, bind jQuery on() actions */
, init: function ( type, element, storage, options ) {
this.type = type;
this.$element = $( element );
this.options = this.getOptions( options );
this.storage = storage;
this.path = this.options.getPath( this.$element ) || this.getPath();
this.parentForm = this.$element.closest( 'form' );
this.$element.addClass('garlic-auto-save');
this.expiresFlag = !this.options.expires ? false : ( this.$element.data( 'expires' ) ? this.path : this.getPath( this.parentForm ) ) + '_flag' ;
// bind garlic events
this.$element.on( this.options.events.join( '.' + this.type + ' ') , false, $.proxy( this.persist, this ) );
if ( this.options.destroy ) {
$( this.parentForm ).on( 'submit reset' , false, $.proxy( this.destroy, this ) );
}
// retrieve garlic persisted data
this.retrieve();
}
, getOptions: function ( options ) {
return $.extend( {}, $.fn[this.type].defaults, options, this.$element.data() );
}
/* temporary store data / state in localStorage */
, persist: function () {
// some binded events are redundant (change & paste for example), persist only once by field val
if ( this.val === this.getVal() ) {
return;
}
this.val = this.getVal();
// if auto-expires is enabled, set the expiration date for future auto-deletion
if ( this.options.expires ) {
this.storage.set( this.expiresFlag , ( new Date().getTime() + this.options.expires * 1000 ).toString() );
}
this.storage.set( this.path , this.getVal() );
this.options.onPersist(this.$element, this.getVal());
}
, getVal: function () {
return !this.$element.is( 'input[type=checkbox]' ) ? this.$element.val() : ( this.$element.prop( 'checked' ) ? 'checked' : 'unchecked' );
}
/* retrieve localStorage data / state and update elem accordingly */
, retrieve: function () {
if ( this.storage.has( this.path ) ) {
// if data expired, destroy it!
if ( this.options.expires ) {
var date = new Date().getTime();
if ( this.storage.get( this.expiresFlag ) < date.toString() ) {
this.storage.destroy( this.path );
return;
} else {
this.$element.attr( 'expires-in', Math.floor( ( parseInt( this.storage.get( this.expiresFlag ) ) - date ) / 1000 ) );
}
}
var storedValue = this.storage.get( this.path );
// if conflictManager enabled, manage fields with already provided data, different from the one stored
if ( this.options.conflictManager.enabled && this.detectConflict() ) {
return this.conflictManager();
}
// input[type=checkbox] and input[type=radio] have a special checked / unchecked behavior
if ( this.$element.is( 'input[type=radio], input[type=checkbox]' ) ) {
// for checkboxes and radios
if ( 'checked' === storedValue || this.$element.val() === storedValue ) {
return this.$element.attr( 'checked', true );
// only needed for checkboxes
} else if ( 'unchecked' === storedValue ) {
this.$element.attr( 'checked', false );
}
return;
}
// for input[type=text], select and textarea, just set val()
this.$element.val( storedValue );
// trigger custom user function when data is retrieved
this.options.onRetrieve( this.$element, storedValue );
return;
}
}
/* there is a conflict when initial data / state differs from persisted data / state */
, detectConflict: function() {
var self = this;
// radio buttons and checkboxes are yet not supported
if ( this.$element.is( 'input[type=checkbox], input[type=radio]' ) ) {
return false;
}
// there is a default not null value and we have a different one stored
if ( this.$element.val() && this.storage.get( this.path ) !== this.$element.val() ) {
// for select elements, we need to check if there is a default checked value
if ( this.$element.is( 'select' ) ) {
var selectConflictDetected = false;
// foreach each options except first one, always considered as selected, seeking for a default selected one
this.$element.find( 'option' ).each( function () {
if ( $( this ).index() !== 0 && $( this ).attr( 'selected' ) && $( this ).val() !== self.storage.get( this.path ) ) {
selectConflictDetected = true;
return;
}
});
return selectConflictDetected;
}
return true;
}
return false;
}
/* manage here the conflict, show default value depending on options.garlicPriority value */
, conflictManager: function () {
// user can define here a custom function that could stop Garlic default behavior, if returns false
if ( 'function' === typeof this.options.conflictManager.onConflictDetected
&& !this.options.conflictManager.onConflictDetected( this.$element, this.storage.get( this.path ) ) ) {
return false;
}
if ( this.options.conflictManager.garlicPriority ) {
this.$element.data( 'swap-data', this.$element.val() );
this.$element.data( 'swap-state', 'garlic' );
this.$element.val( this.storage.get( this.path ) );
} else {
this.$element.data( 'swap-data', this.storage.get( this.path ) );
this.$element.data( 'swap-state', 'default' );
}
this.swapHandler();
this.$element.addClass( 'garlic-conflict-detected' );
this.$element.closest( 'input[type=submit]' ).attr( 'disabled', true );
}
/* manage swap user interface */
, swapHandler: function () {
var swapChoiceElem = $( this.options.conflictManager.template );
this.$element.after( swapChoiceElem.text( this.options.conflictManager.message ) );
swapChoiceElem.on( 'click', false, $.proxy( this.swap, this ) );
}
/* swap data / states for conflicted elements */
, swap: function () {
var val = this.$element.data( 'swap-data' );
this.$element.data( 'swap-state', 'garlic' === this.$element.data( 'swap-state' ) ? 'default' : 'garlic' );
this.$element.data( 'swap-data', this.$element.val());
$( this.$element ).val( val );
}
/* delete localStorage persistance only */
, destroy: function () {
this.storage.destroy( this.path );
}
/* remove data / reset state AND delete localStorage */
, remove: function () {
this.remove();
if ( this.$element.is( 'input[type=radio], input[type=checkbox]' ) ) {
$( this.$element ).prop( 'checked', false );
return;
}
this.$element.val( '' );
}
/* retuns an unique identifier for form elements, depending on their behaviors:
* radio buttons: domain > pathname > form.<attr.name>[:eq(x)] > input.<attr.name>
no eq(); must be all stored under the same field name inside the same form
* checkbokes: domain > pathname > form.<attr.name>[:eq(x)] > [fieldset, div, span..] > input.<attr.name>[:eq(y)]
cuz' they have the same name, must detect their exact position in the form. detect the exact hierarchy in DOM elements
* other inputs: domain > pathname > form.<attr.name>[:eq(x)] > input.<attr.name>[:eq(y)]
we just need the element name / eq() inside a given form
*/
, getPath: function ( elem ) {
if ( 'undefined' === typeof elem ) {
elem = this.$element;
}
if ( this.options.getPath( elem ) ) {
return this.options.getPath( elem );
}
// Requires one element.
if ( elem.length != 1 ) {
return false;
}
var path = ''
, fullPath = elem.is( 'input[type=checkbox]' )
, node = elem;
while ( node.length ) {
var realNode = node[0]
, name = realNode.nodeName;
if ( !name ) {
break;
}
name = name.toLowerCase();
var parent = node.parent()
, siblings = parent.children( name );
// don't need to pollute path with select, fieldsets, divs and other noisy elements,
// exept for checkboxes that need exact path, cuz have same name and sometimes same eq()!
if ( !$( realNode ).is( 'form, input, select, textarea' ) && !fullPath ) {
node = parent;
continue;
}
// set input type as name + name attr if exists
name += $( realNode ).attr( 'name' ) ? '.' + $( realNode ).attr( 'name' ) : '';
// if has sibilings, get eq(), exept for radio buttons
if ( siblings.length > 1 && !$( realNode ).is( 'input[type=radio]' ) ) {
name += ':eq(' + siblings.index( realNode ) + ')';
}
path = name + ( path ? '>' + path : '' );
// break once we came up to form:eq(x), no need to go further
if ( 'form' == realNode.nodeName.toLowerCase() ) {
break;
}
node = parent;
}
return 'garlic:' + document.domain + ( this.options.domain ? '*' : window.location.pathname ) + '>' + path;
}
, getStorage: function () {
return this.storage;
}
}
/* GARLIC PLUGIN DEFINITION
* ========================= */
$.fn.garlic = function ( option, fn ) {
var options = $.extend(true, {}, $.fn.garlic.defaults, option, this.data() )
, storage = new Storage()
, returnValue = false;
// this plugin heavily rely on local Storage. If there is no localStorage or data-storage=false, no need to go further
if ( !storage.defined ) {
return false;
}
function bind ( self ) {
var $this = $( self )
, data = $this.data( 'garlic' )
, fieldOptions = $.extend( {}, options, $this.data() );
// don't bind an elem with data-storage=false
if ( 'undefined' !== typeof fieldOptions.storage && !fieldOptions.storage ) {
return;
}
// don't bind a password type field
if ( 'password' === $( self ).attr( 'type' ) ) {
return;
}
// if data never binded, bind it right now!
if ( !data ) {
$this.data( 'garlic', ( data = new Garlic( self, storage, fieldOptions ) ) );
}
// here is our garlic public function accessor, currently does not support args
if ( 'string' === typeof option && 'function' === typeof data[option] ) {
return data[option]();
}
}
// loop through every elemt we want to garlic
this.each(function () {
// if a form elem is given, bind all its input children
if ( $( this ).is( 'form' ) ) {
$( this ).find( options.inputs ).each( function () {
returnValue = bind( $( this ) );
});
// if it is a Garlic supported single element, bind it too
// add here a return instance, cuz' we could call public methods on single elems with data[option]() above
} else if ( $( this ).is( options.inputs ) ) {
returnValue = bind( $( this ) );
}
});
return 'function' === typeof fn ? fn() : returnValue;
}
/* GARLIC CONFIGS & OPTIONS
* ========================= */
$.fn.garlic.Constructor = Garlic;
$.fn.garlic.defaults = {
destroy: true // Remove or not localstorage on submit & clear
, inputs: 'input, textarea, select' // Default supported inputs.
, events: [ 'DOMAttrModified', 'textInput', 'input', 'change', 'click', 'keypress', 'paste', 'focus' ] // Events list that trigger a localStorage
, domain: false // Store et retrieve forms data accross all domain, not just on
, expires: false // false for no expiration, otherwise (int) in seconds for auto-expiration
, conflictManager: {
enabled: false // Manage default data and persisted data. If false, persisted data will always replace default ones
, garlicPriority: true // If form have default data, garlic persisted data will be shown first
, template: '<span class="garlic-swap"></span>' // Template used to swap between values if conflict detected
, message: 'This is your saved data. Click here to see default one' // Default message for swapping data / state
, onConflictDetected: function ( $item, storedVal ) { return true; } // This function will be triggered if a conflict is detected on an item. Return true if you want Garlic behavior, return false if you want to override it
}
, getPath: function ( $item ) {} // Set your own key-storing strategy per field
, onRetrieve: function ( $item, storedVal ) {} // This function will be triggered each time Garlic find an retrieve a local stored data for a field
, onPersist: function ( $item, storedVal ) {} // This function will be triggered each time Garlic stores a field to local storage
}
/* GARLIC DATA-API
* =============== */
$( window ).on( 'load', function () {
$( '[data-persist="garlic"]' ).each( function () {
$(this).garlic();
})
});
// This plugin works with jQuery or Zepto (with data extension builded for Zepto. See changelog 0.0.6)
}(window.jQuery || window.Zepto);