ace.ajax-content.js
7.4 KB
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
/**
<b>Load content via Ajax </b>. For more information please refer to documentation #basics/ajax
*/
ace.enable_ajax_content = function($, options) {
//var has_history = 'history' in window && typeof window.history.pushState === 'function';
var content_url = options.content_url || false
var default_url = options.default_url || false;
var loading_icon = options.loading_icon || 'fa-spinner fa-2x orange';
var loading_text = options.loading_text || '';
var update_breadcrumbs = options.update_breadcrumbs || typeof options.update_breadcrumbs === 'undefined';
var update_title = options.update_title || typeof options.update_title === 'undefined';
var update_active = options.update_active || typeof options.update_active === 'undefined';
var close_active = options.close_active || typeof options.close_active === 'undefined';
$(window)
.off('hashchange.ajax')
.on('hashchange.ajax', function(e, manual_trigger) {
var hash = $.trim(window.location.hash);
if(!hash || hash.length == 0) return;
hash = hash.replace(/^(\#\!)?\#/, '');
var url = false;
if(typeof content_url === 'function') url = content_url(hash);
if(typeof url === 'string') getUrl(url, hash, manual_trigger || false);
}).trigger('hashchange.ajax', [true]);
/**
if(has_history) {
window.onpopstate = function(event) {
JSON.stringify(event.state);
//getUrl(event.state.url, event.state.hash, true);
}
}
*/
if(default_url && window.location.hash == '') window.location.hash = default_url;
function getUrl(url, hash, manual_trigger) {
var event
$(document).trigger(event = $.Event('ajaxloadstart'), {url: url, hash: hash})
if (event.isDefaultPrevented()) return;
var contentArea = $('.page-content-area');
contentArea
.css('opacity', 0.25)
var loader = $('<div style="position: fixed; z-index: 2000;" class="ajax-loading-overlay"><i class="ajax-loading-icon fa fa-spin '+loading_icon+'"></i> '+loading_text+'</div>').insertBefore(contentArea);
var offset = contentArea.offset();
loader.css({top: offset.top, left: offset.left})
$.ajax({
'url': url
})
.complete(function() {
contentArea.css('opacity', 0.8)
$(document).on('ajaxscriptsloaded', function() {
contentArea.css('opacity', 1)
contentArea.prevAll('.ajax-loading-overlay').remove();
});
})
.error(function() {
$(document).trigger('ajaxloaderror', {url: url, hash: hash});
})
.done(function(result) {
$(document).trigger('ajaxloaddone', {url: url, hash: hash});
var link_element = $('a[data-url="'+hash+'"]');
var link_text = '';
if(link_element.length > 0) {
var nav = link_element.closest('.nav');
if(nav.length > 0) {
if(update_active) {
nav.find('.active').each(function(){
var $class = 'active';
if( $(this).hasClass('hover') || close_active ) $class += ' open';
$(this).removeClass($class);
if(close_active) {
$(this).find(' > .submenu').css('display', '');
//var sub = $(this).find(' > .submenu').get(0);
//if(sub) ace.submenu.hide(sub, 200)
}
})
link_element.closest('li').addClass('active').parents('.nav li').addClass('active open');
if('sidebar_scroll' in ace.helper) {
ace.helper.sidebar_scroll.reset();
//first time only
if(manual_trigger) ace.helper.sidebar_scroll.scroll_to_active();
}
}
if(update_breadcrumbs) {
link_text = updateBreadcrumbs(link_element);
}
}
}
//convert "title" and "link" tags to "div" tags for later processing
result = String(result)
.replace(/<(title|link)([\s\>])/gi,'<div class="hidden ajax-append-$1"$2')
.replace(/<\/(title|link)\>/gi,'</div>')
contentArea.empty().html(result);
contentArea.css('opacity', 0.6);
//remove previous stylesheets inserted via ajax
setTimeout(function() {
$('head').find('link.ajax-stylesheet').remove();
var ace_style = $('head').find('link#main-ace-style');
contentArea.find('.ajax-append-link').each(function(e) {
var $link = $(this);
if ( $link.attr('href') ) {
var new_link = jQuery('<link />', {type : 'text/css', rel: 'stylesheet', 'class': 'ajax-stylesheet'})
if( ace_style.length > 0 ) new_link.insertBefore(ace_style);
else new_link.appendTo('head');
new_link.attr('href', $link.attr('href'));//we set "href" after insertion, for IE to work
}
$link.remove();
})
}, 10);
//////////////////////
if(update_title) updateTitle(link_text, contentArea);
if( !manual_trigger ) {
$('html,body').animate({scrollTop: 0}, 250);
}
//////////////////////
$(document).trigger('ajaxloadcomplete', {url: url, hash: hash});
})
}
function updateBreadcrumbs(link_element) {
var link_text = '';
//update breadcrumbs
var breadcrumbs = $('.breadcrumb');
if(breadcrumbs.length > 0 && breadcrumbs.is(':visible')) {
breadcrumbs.find('> li:not(:first-child)').remove();
var i = 0;
link_element.parents('.nav li').each(function() {
var link = $(this).find('> a');
var link_clone = link.clone();
link_clone.find('i,.fa,.glyphicon,.ace-icon,.menu-icon,.badge,.label').remove();
var text = link_clone.text();
link_clone.remove();
var href = link.attr('href');
if(i == 0) {
var li = $('<li class="active"></li>').appendTo(breadcrumbs);
li.text(text);
link_text = text;
}
else {
var li = $('<li><a /></li>').insertAfter(breadcrumbs.find('> li:first-child'));
li.find('a').attr('href', href).text(text);
}
i++;
})
}
return link_text;
}
function updateTitle(link_text, contentArea) {
var $title = contentArea.find('.ajax-append-title');
if($title.length > 0) {
document.title = $title.text();
$title.remove();
}
else if(link_text.length > 0) {
var extra = $.trim(String(document.title).replace(/^(.*)[\-]/, ''));//for example like " - Ace Admin"
if(extra) extra = ' - ' + extra;
link_text = $.trim(link_text) + extra;
}
}
}
ace.load_ajax_scripts = function(scripts, callback) {
jQuery.ajaxPrefilter('script', function(opts) {opts.cache = true});
setTimeout(function() {
//let's keep a list of loaded scripts so that we don't load them more than once!
if(! ('ajax_loaded_scripts' in ace.vars) ) ace.vars['ajax_loaded_scripts'] = {}
var deferreds = [];
for(var i = 0; i < scripts.length; i++) if(scripts[i]) {
(function() {
var script_name = "js-"+scripts[i].replace(/[^\w\d\-]/g, '-').replace(/\-\-/g, '-');
//only load scripts that are not loaded yet!
if(! (script_name in ace.vars['ajax_loaded_scripts']) ) {
deferreds.push( jQuery.getScript(scripts[i]).done(function() {
ace.vars['ajax_loaded_scripts'][script_name] = true;
}));
}
})()
}
if(deferreds.length > 0) {
deferreds.push(jQuery.Deferred(function( deferred ){jQuery( deferred.resolve )}));
jQuery.when.apply( null, deferreds ).then(function() {
if(typeof callback === 'function') callback();
jQuery('.btn-group[data-toggle="buttons"] > .btn').button();
$(document).trigger('ajaxscriptsloaded');
})
}
else {
if(typeof callback === 'function') callback();
jQuery('.btn-group[data-toggle="buttons"] > .btn').button();
$(document).trigger('ajaxscriptsloaded');
}
}, 10)
}