-
Notifications
You must be signed in to change notification settings - Fork 23
/
jquery.ajaxy.js
2366 lines (1980 loc) · 62.2 KB
/
jquery.ajaxy.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @depends jquery, core.console, core.string, jquery.extra
* @name jquery.ajaxy
* @package jquery-ajaxy {@link http://balupton.com/projects/jquery-ajaxy}
*/
/**
* jQuery Aliaser
*/
(function($){
// Create our Plugin function, with $ as the argument (we pass the jQuery object over later)
// More info: http://docs.jquery.com/Plugins/Authoring#Custom_Alias
/**
* Prepare Body
*/
$(document.body).addClass('js');
/**
* jQuery Ajaxy
* @version 1.6.0
* @date August 31, 2010
* @since 0.1.0-dev, July 24, 2008
* @package jquery-ajaxy {@link http://balupton.com/projects/jquery-ajaxy}
* @author Benjamin "balupton" Lupton {@link http://balupton.com}
* @copyright (c) 2008-2010 Benjamin Arthur Lupton {@link http://balupton.com}
* @license MIT License {@link http://creativecommons.org/licenses/MIT/}
*/
if ( !($.Ajaxy||false) ) {
/**
* Ajaxy
*/
$.Ajaxy = {
// ====================================================
// Options
/**
* User configuration
*/
options: {
/**
* The hostname our application is using.
* For production use, you want to ensure this has been set.
*/
root_url: '',
/**
* The base url our application is using.
* For production use, you want to ensure this has been set.
*/
base_url: '',
/**
* The short url of the page we are using.
*/
relative_url: '',
/**
* An optional regular expression which the Ajaxy State must match against in order for it be considered a valid Ajaxy Request.
* In other words if the Ajaxy State does not match against this regular expression, then we do not proceed with the Ajaxy request.
* If set to false, then we do assume all URLs which reach Ajaxy.request are Ajaxy URLs.
* If set to true, then we will use the default regular expression to match against.
*/
request_match: false,
/**
* The CSS class that can be attached to a Ajaxy link to indicate we should not log this page in history.
*/
no_log_class: 'ajaxy-no_log',
/**
* Whether or not we should perform the initial redirect if we have detected we are on a page.
* For production use, you want to ensure this has been set to true. As we should always want to ensure we are in the correct location.
*/
redirect: false,
/**
* Whether or not we want to set the initial relative_url as the base_url if we are too lasy to configure this properly.
* For production use, you want to ensure this has been set to false. As we should always have our urls configured correctly.
*/
relative_as_base: true,
/**
* Whether or not we should support plain text responses in our Ajax requests, as well as the standard JSON.
* If this is set to true and text was sent back on a Ajax request, then responseData will have the following structure:
* {
* content: responseText
* }
* For production use, you want to ensure this has been set to false. As we should always be returning JSON instead of text.
*/
support_text: true,
/**
* Whether or not we should automatically inform Google Analytics of a Ajaxy request, if GA has been detected.
*/
analytics: true,
/**
* Whether or not we should automatically find all ajaxy links and ajaxify them on DOM ready.
*/
auto_ajaxify: true,
/**
* Whether or not we should automatically find all ajaxy links and ajaxify them on the document ready calls.
* This should be left to true generally, as it keeps the links working for ajaxed'in content.
*/
auto_ajaxify_documentReady: true,
/**
* Whether or not we should automatically sparkle the loaded in content (or page) on the document ready calls.
* This only applies if jQuery Sparkle has been detected.
*/
auto_sparkle_documentReady: true,
/**
* Whether or not we should add a ajaxy sparkle extension such that we can perform an ajaxify on sparkled content.
* This only applies if jQuery Sparkle has been detected.
*/
add_sparkle_extension: true,
/**
* Whether or not we should ScrollTo the content automatically on a StateCompleted Event
*/
scrollto_content: false,
/**
* The options to pass to $.fn.ScrollTo when we have detected an anchor.
*/
scrollto_options: {
duration: 800, /* Set to 0 to have no scroll animation effect */
easing:'swing' /* unless you are using the jQuery Easing plugin, only [swing] and [linear] are available. */
},
/**
* What we should call our anchor param
*/
anchor_param_name: 'anchor',
/**
* Whether or not we should track all the anchors with Ajaxyy (even if they don't have the ajaxy class).
* If you are using jQuery Ajaxy to power your entire site, then this should be enabled.
*/
track_all_anchors: false,
/**
* Whether or not we should track all the anchors with Ajaxy (even if they don't have the ajaxy class).
* If you are using jQuery Ajaxy to power your entire site, then this should be enabled.
*/
track_all_internal_links: false,
/**
* Whether or not we should output as much debugging information as possible.
* For production use, you want to ensure this has been set to false. As we should always never want the client to see debug information.
*/
debug: true,
/**
* A series of location aliases
*/
aliases: [
['','/']
],
/**
* The Controllers to use
*/
Controllers: {},
/**
* The method that will be used to send our AJAX requests
*/
method: 'post'
},
// ====================================================
// Defaults
/**
* Default Structures
*/
defaults: {
/**
* Default Controller Structure
* All Controllers inherit and are bound to this
*/
Controller: {
// Options
classname: null,
selector: null,
matches: null,
// System
controller: null,
// Actions
response: null,
request: null,
error: null,
refresh: null
},
Action: {
// Options
propagate: true,
// System
action: null,
state: null,
State: null,
controller: null,
Controller: null,
// Ajaxy Helper Functions
forward: function(){
window.console.error('Ajaxy.Action.forward: Forward never defined.', [this, arguments]);
window.console.trace();
},
trigger: function(){
window.console.error('Ajaxy.Action.trigger: Trigger never defined.', [this, arguments]);
window.console.trace();
},
stopPropagation: function(){
this.propagate = false;
},
preventDefault: function(){
this.propagate = false;
},
documentReady: function($el,options){
var Ajaxy = $.Ajaxy; var Action = this;
// Options
if ( typeof options !== 'object' ) {
options = {};
}
// Default Options
var defaults = {};
switch ( Action.action ) {
case 'refresh':
defaults.auto_ajaxify_documentReady =
defaults.auto_sparkle_documentReady = false;
break;
default:
break;
}
// Merge with Defaults
var config = $.extend(true,{},defaults,options);
// Fire Ajaxy's stateCompleted
return Ajaxy.stateCompleted(Action.State,$el,config);
}
},
/**
* Default State Structure
* All Controllers inherit and are bound to this
* State is associated with a particular state
*/
State: {
// Options
mode: null,
el: null,
isLink: false,
isForm: false,
// Parts
anchor: '',
querystring: '',
state: '',
hash: '',
location: '',
locationShort: '',
raw: {
anchor: '',
querystring: '',
hash: '',
state: '',
location: '',
locationShort: ''
},
vanilla: {
anchor: '',
querystring: '',
hash: '',
state: '',
location: '',
locationShort: ''
},
clean: {
anchor: '',
querystring: '',
hash: '',
state: '',
location: '',
locationShort: ''
},
// System
controller: null,
/** The Request Object that is used in the $.Ajax */
Request: {
url: null,
data: {}
},
/* The Response Object which is returned in our Ajax Request */
Response: {
callback: null,
data: {}
},
/* The Response Object which is returned from an Error in our Ajax Request */
Error: {
callback: null,
data: {}
},
/* Any user data specific to the state should go in here. This is not used by Ajaxy. */
User: {
data: {}
}
}
},
// ====================================================
// Variables
/**
* Have we been constructed
*/
isConstructed: false,
/**
* Aliases Hashtable
*/
aliases: {},
/**
* Whether or not we are in postpone mode
*/
postpone: false,
/**
* Collection of Controllers
*/
Controllers: {},
/**
* Collection of states
*/
States: {},
/**
* Collection of Ignored States
*/
ignoredStates: {},
/**
* Our Current State
*/
currentState: {},
/**
* Queue for our events
* @param {Object} state
*/
ajaxQueue: [],
/**
* Our assigned data
* @param {Object} data
*/
data: {},
/**
* Contains any redirect data in case we were
* @param {Object} redirected
*/
redirected: false,
// ====================================================
// Data
/**
* Get a piece of data
* @param {Object} name
*/
get: function ( name ) {
var Ajaxy = $.Ajaxy;
// Fetch data
if ( typeof Ajaxy.data[name] !== 'undefined' ) {
return Ajaxy.data[name];
} else {
return undefined;
}
},
/**
* Set a piece (or pieces) of data
* Ajaxy.set(data), Ajaxy.set(name, value)
* @param {Object} data
* @param {Object} value
*/
set: function ( data, value ) {
var Ajaxy = $.Ajaxy;
// Set route data
if ( typeof value === 'undefined' ) {
if ( typeof data === 'object' ) {
Ajaxy.data.extend(true, data);
}
} else {
Ajaxy.data[data] = value;
}
},
// ====================================================
// URLS
/**
* Ensure we return a valid String value
* @param {*} str
* @return {String}
*/
ensureString: function(str){
var result = '';
switch ( typeof str ) {
case 'number':
case 'string':
result = String(str);
break;
default:
result = '';
}
return result;
},
/**
* Extract a Relative URL from a URL
* @param {String} url
*/
extractRelativeUrl: function (url,fixSlash){
var Ajaxy = $.Ajaxy; var History = $.History;
if ( typeof fixSlash === 'undefined' ) {
fixSlash = true;
}
// Prepare
url = Ajaxy.ensureString(url);
// Strip urls
var relative_url = url.stripLeft(Ajaxy.options.root_url).stripLeft(Ajaxy.options.base_url);
// Check
if ( fixSlash && relative_url === '/' ) relative_url = '';
// Return relative_url
return relative_url;
},
/**
* Extract the State from a URL
* Alias for extractRelativeUrl
* @param {String} state
*/
extractState: function (url) {
var Ajaxy = $.Ajaxy;
// Strip urls
var state = Ajaxy.extractRelativeUrl(url,false);
// Return state
return state;
},
/**
* Extract the Hash from a State
* @param {String} state
* @return {String}
*/
extractHash: function (state) {
var Ajaxy = $.Ajaxy;
// Strip urls
var state = Ajaxy.extractState(state);
// Extract the anchor
var hash = state.match(/^([^#?]*)/)||'';
if ( hash && hash.length||false === 2 ) {
hash = hash[1]||'';
}
// Return hash
return hash;
},
/**
* Extract a Anchor from a State
* @param {String} state
* @return {String}
*/
extractAnchor: function (state) {
var Ajaxy = $.Ajaxy;
// Strip urls
var state = Ajaxy.extractState(state),
anchor_param_name = Ajaxy.options.anchor_param_name;
// Extract the anchor
var anchor = state.replace(/[^#]+#/g,'#').match(/#+([^#\?]*)/)||'';
if ( anchor && anchor.length||false === 2 ) {
anchor = anchor[1]||'';
}
// Check
if ( anchor === state ) {
anchor = '';
}
// Check
if ( !anchor ) {
// Extract anchor from QueryString
var anchor = state.match(RegExp(anchor_param_name+'=([a-zA-Z0-9-_]+)')) || '';
if ( anchor && anchor.length||false === 2 ) {
anchor = anchor[1]||'';
}
}
// Return anchor
return anchor;
},
/**
* Extract a Querystring from a State
* @param {String} state
* @return {String}
*/
extractQuerystring: function (state) {
var Ajaxy = $.Ajaxy;
// Strip urls
var state = Ajaxy.extractState(state);
// Extract the querystring
var querystring = state.match(/\?(.*)$/)||'';
if ( querystring && querystring.length||false === 2 ) {
querystring = querystring[1]||'';
}
// Return querystring
return querystring;
},
/**
* Track a state change in Google Analytics
* @param {Object} State
*/
track: function ( State ) {
var Ajaxy = $.Ajaxy;
// Inform Google Analytics of a state change
if ( typeof pageTracker !== 'undefined' ) {
var url = State.vanilla.locationShort;
if ( Ajaxy.options.debug ) window.console.debug('Ajaxy.track', [this,arguments], [url]);
pageTracker._trackPageview(url);
// ^ we do not use root url here as google doesn't want that
// but it does want the base url here
// http://www.google.com/support/googleanalytics/bin/answer.py?answer=55521
}
// Done
return true;
},
/**
* Determines the result of a matches against a state
* @param {Regex|Array|String} matches
* @param {String} state
*/
matches: function ( matches, state ) {
var Ajaxy = $.Ajaxy;
var isAMatch = false;
// Handle matches
switch ( typeof matches ) {
// Objects
case 'function':
case 'object':
if ( matches.test||false && matches.exec||false ) {
// Regular Expression
isAMatch = matches.test(state);
break;
}
case 'array':
$.each(matches, function(i,match){
isAMatch = Ajaxy.matches(match,state);
if ( isAMatch ) return false; // break out of $.each
});
break;
// Exact
case 'number':
case 'string':
isAMatch = (String(matches) === state);
break;
}
// Return isAMatch
return isAMatch;
},
/**
* Match the state against the controllers
* @param {String} state
*/
match: function ( state ) {
var Ajaxy = $.Ajaxy;
var matchedController = false;
// Cycle through
$.each(Ajaxy.Controllers, function(controller,Controller){
// Check for matches
var matches = Ajaxy.matches(Controller.matches||false, state);
// Did we find a match?
if ( matches ) {
matchedController = controller;
return false; // break out of $.each
}
});
// Return matchedController
return matchedController;
},
// ====================================================
// Controllers
/**
* Get the controller's Controller Object
* @param {String|Object} controller
* @return {Object|undefined}
*/
getController: function ( controller, create ) {
var Ajaxy = $.Ajaxy;
// Prepare
var Controller = undefined,
controllerType = typeof (controller||undefined);
// Fetch
if ( (controllerType === 'number' || controllerType === 'string') && typeof Ajaxy.Controllers[controller] !== 'undefined' ) {
Controller = Ajaxy.Controllers[controller];
}
else if ( controllerType === 'object' && typeof controller.controller === 'string' ) {
Controller = Ajaxy.getController(controller.controller,create);
}
else if ( create ) {
Controller = $.extend(true,{},Ajaxy.defaults.Controller);
}
else if ( create === false ) {
// Don't report couldn't find
}
else {
// Report couldn't find
window.console.error('Ajaxy.getController: Controller does not exist', [this, arguments]);
window.console.trace();
}
// Return Controller
return Controller;
},
/**
* Get the Controller Action
* @param {String|Object} controller
* @return {Object|undefined}
*/
getControllerAction: function ( controller, action, create ) {
var Ajaxy = $.Ajaxy;
// Prepare
var ControllerAction = undefined,
Controller = Ajaxy.getController(controller,false);
// Fetch
if ( typeof Controller === 'undefined' ) {
if ( create === false ) {
// Don't report couldn't find
}
else {
window.console.error('Ajaxy.getControllerAction: Controller does not exist', [this, arguments]);
window.console.trace();
}
}
else {
var controllerActionType = typeof (Controller[action]||undefined);
if ( controllerActionType === 'function' || controllerActionType === 'object' ) {
ControllerAction = Controller[action];
}
else if ( create === false ) {
// Don't report couldn't find
}
else {
window.console.error('Ajaxy.getControllerAction: Controller Action does not exist', [this, arguments]);
window.console.trace();
}
}
// Return ControllerAction
return ControllerAction;
},
/**
* Ajaxy.bind
* @alias Ajaxy.addControllers
*/
bind: function ( ) {
var Ajaxy = $.Ajaxy;
return Ajaxy.addControllers.apply(this, arguments);
},
/**
* Ajaxy.addController
* @param {String|Object} controller
* @param {Object|Function} Controller
*/
addController: function ( controller, Controller ) {
var Ajaxy = $.Ajaxy;
// --------------------------
// Prepare the Controller
// Add a controller
if ( typeof Controller === 'undefined' && typeof controller === 'object' ) {
// Ajaxy.addController({});
Controller = controller;
}
else if ( typeof controller === 'string' && typeof Controller === 'function' ) {
// Ajaxy.addController('controller',function(){});
Controller = {
'controller': controller,
'response': Controller
};
}
else if ( typeof controller === 'string' && typeof Controller === 'object' ) {
if ( typeof Controller.controller === 'undefined' ) {
Controller.controller = controller;
}
}
else {
// Unknown
window.console.error('Ajaxy.addController: Unknown Controller Format', [this, arguments]);
window.console.trace();
}
// Check Bound Status
if ( typeof Ajaxy.Controllers[Controller.controller] !== 'undefined' ) {
// Already Bound
window.console.error('Ajaxy.addController: Controller ['+Controller.controller+'] has already been bound.', [this, arguments], [Controller]);
window.console.trace();
return false;
}
// --------------------------
// Ensure then Store the Controller
// Ensure the Controller
Controller = $.prepareObject(
Ajaxy.defaults.Controller,
Controller
);
// Adjust Controller
if ( !Controller.selector && Controller.classname ) {
Controller.selector = '.'+Controller.classname;
}
// Store the Controller
Ajaxy.Controllers[Controller.controller] = Controller;
// Ajaxify the Controller
if ( Ajaxy.options.auto_ajaxify ) {
Ajaxy.ajaxifyController(Controller);
}
// --------------------------
// Return the Controller
return Controller;
},
/**
* Ajaxy.addControllers
* @param {Object|Array} Controllers
*/
addControllers: function ( Controllers ) {
var Ajaxy = $.Ajaxy;
// Create the Controller
if ( typeof Controllers === 'object' && typeof Controllers.controller === 'string' ) {
// We were meant to be an addController call
window.console.warn('Ajaxy.addControllers: It seems you intended to call addController instead.', [this, arguments]);
}
else if ( typeof Controllers === 'object' || typeof Controllers === 'array' ) {
// Bind Controllers
$.each(Controllers,function(controller,Controller){
Ajaxy.addController(controller,Controller);
});
}
// Return true
return true;
},
// ====================================================
// States
/**
* Get the state's State Object
* @param {String|Object} state
* @return {Object|undefined}
*/
getState: function ( state, create, error ) {
var Ajaxy = $.Ajaxy;
// Prepare
state = Ajaxy.extractState((state||{}).state||state);
var State = undefined,
type = typeof (state||undefined),
typeStringable = (type === 'number' || type === 'string');
// Fetch
if ( typeStringable && typeof Ajaxy.States[state] !== 'undefined' ) {
State = Ajaxy.States[state];
}
else if ( create ) {
State = Ajaxy.createState(state);
}
else if ( create === false ) {
// Don't report couldn't find
}
else if ( error||false ) {
// Report couldn't find
window.console.error('Ajaxy.getState: State does not exist', [this, arguments]);
window.console.trace();
}
// Rebuild State
if ( State ) {
Ajaxy.rebuildState(State);
}
// Return State
return State;
},
/**
* Create a new State Object
* @param {String|Object} state
* @return {Object|undefined}
*/
createState: function ( state ) {
var Ajaxy = $.Ajaxy;
// Prepare
state = Ajaxy.extractState((state||{}).state||state);
// Create State
State = $.extend(true,{},Ajaxy.defaults.State,{
state: state
});
// Rebuild State
Ajaxy.rebuildState(State);
// Return State
return State;
},
/**
* Build an Ajaxy State
* @param {String|Object} UserState
*/
buildState: function ( UserState ) {
var Ajaxy = $.Ajaxy; var History = $.History;
if ( Ajaxy.options.debug ) window.console.debug('Ajaxy.buildState:', [this, arguments]);
// --------------------------
// Ensure format
if ( typeof UserState === 'string' ) {
// We have just a state
UserState = {
url: UserState
};
}
// Prepare State
var State = Ajaxy.getState(false,true);
$.extend(true,State,UserState);
// --------------------------
// Ensure parts
// Check for !state and url
if ( !(State.state||false) && (State.url||false) ) {
State.state = Ajaxy.extractState(State.url);
}
// Fix state
if ( !State.state ) {
State.state = '/';
}
// Handle Element
if ( State.el ) {
var $el = $(State.el);
if ( $el.is('form') ) {
State.isForm = true;
State.isLink = false;
}
else if ( $el.is('a') ) {
State.isForm = false;
State.isLink = true;
}
else {
window.console.warn('Ajaxy.buildState: Unknown element type passed.', [this,arguments], [State.el]);
}
delete $el;
}
// Rebuild the state
Ajaxy.rebuildState(State);
// --------------------------
// Anchor Fixes
// Fix anchor
if ( State.anchor === State.state || State.anchor === State.hash ) {
State.anchor = '';
}
// Check for !hash and !querystring and anchor
if ( !(State.hash||false) && !State.raw.querystring && (State.anchor||'') ) {
// We are just an anchor change
// Let's grab the currentState's hash and use that, as we want to modify the state so we don't actually go to the anchor in the url
// As otherwise the anchor will become the hash, and this is a problem.
State.hash = Ajaxy.currentState.hash||'';
State.querystring = State.raw.querystring;
// Rebuild the state
Ajaxy.rebuildState(State);
}
// --------------------------
// Additional Checks
// Check state
if ( !State.state || (!State.hash && !State.raw.querystring) ) {
window.console.warn('Ajaxy.go: No state or (hash and querystring).', [this, arguments], [State]);
}
// Ensure mode
if ( !State.mode ) {
if ( State.isLink && Ajaxy.postpone ) {
if ( State.anchor && !State.raw.querystring && (State.hash === Ajaxy.options.relative_url) ) {
// We are in postpone mode, but we are just an anchor change...
// We can't use default here as we are still in a relative url
// So we just pretend as if this is not happening
State.mode = 'ignore';
}
else {
State.mode = 'postpone';
}
}
else if ( State.isForm ) {
State.mode = 'silent';
}
else {
State.mode = 'default';
}
}
// --------------------------
// Return State
return State;
},
/**
* Rebuild a State
* @param {&State} State
* @return {State}
*/
rebuildState: function(State,mode){
var Ajaxy = $.Ajaxy;
// Extract