forked from d4software/QueryTree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui-utils.js
More file actions
58 lines (55 loc) · 2.02 KB
/
ui-utils.js
File metadata and controls
58 lines (55 loc) · 2.02 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
function clearAlerts() {
return $('.alert-container').empty();
}
function clearAlert(id) {
$('.alert-container div').filter('#' + id).remove();
}
function raiseAlert(id, message, alertClass, timeout) {
clearAlert(id);
var div = $('<div class="alert alert-dismissable"></div>').addClass(alertClass).attr('id', id);
div.append('<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>');
div.append($('<span>').text(message));
$('.alert-container').append(div);
var realTimeout = timeout;
if (realTimeout === undefined) {
realTimeout = 5000;
}
if (realTimeout != 0) {
window.setTimeout(function () {
div.fadeTo(500, 0).slideUp(500, function () {
$(this).remove();
});
}, realTimeout);
}
}
function raiseErrorAlert(id, message, timeout) {
raiseAlert(id, message, 'alert-danger', timeout);
}
function raiseInfoAlert(id, message, timeout) {
raiseAlert(id, message, 'alert-info', timeout);
}
function raiseSuccessAlert(id, message, timeout) {
raiseAlert(id, message, 'alert-success', timeout);
}
var QueryString = function () {
// This function is anonymous, is executed immediately and
// the return value is assigned to QueryString!
var query_string = {};
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
// If first entry with this name
if (typeof query_string[pair[0]] === "undefined") {
query_string[pair[0]] = decodeURIComponent(pair[1]);
// If second entry with this name
} else if (typeof query_string[pair[0]] === "string") {
var arr = [ query_string[pair[0]],decodeURIComponent(pair[1]) ];
query_string[pair[0]] = arr;
// If third or later entry with this name
} else {
query_string[pair[0]].push(decodeURIComponent(pair[1]));
}
}
return query_string;
}();