forked from tuupola/jquery_chained
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.chained.remote.js
161 lines (138 loc) · 5.95 KB
/
jquery.chained.remote.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
/*
* Chained - jQuery / Zepto chained selects plugin
*
* Copyright (c) 2010-2014 Mika Tuupola
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Project home:
* http://www.appelsiini.net/projects/chained
*
* Version: 0.9.10
*
*/
;(function($, window, document, undefined) {
"use strict";
$.fn.remoteChained = function(parents, url, options) {
var settings;
/* New style syntax. */
if ("object" === typeof(parents) && "undefined" !== typeof(parents.url)) {
settings = $.extend({}, $.fn.remoteChained.defaults, parents);
/* Still support old style syntax. */
} else {
settings = $.extend({}, $.fn.remoteChained.defaults, options);
settings.parents = parents;
settings.url = url;
}
return this.each(function() {
/* Save this to self because this changes when scope changes. */
var self = this;
var request = false; /* Track xhr requests. */
$(settings.parents).each(function() {
$(this).bind("change", function() {
/* Build data array from parents values. */
var data = {};
$(settings.parents).each(function() {
var id = $(this).attr(settings.attribute);
var value = $(":selected", this).val();
data[id] = value;
/* Optionally also depend on values from these inputs. */
if (settings.depends) {
$(settings.depends).each(function() {
/* Do not include own value. */
if (self !== this) {
var id = $(this).attr(settings.attribute);
var value = $(this).val();
data[id] = value;
}
});
}
});
/* If previous request running, abort it. */
/* TODO: Probably should use Sinon to test this. */
if (request && $.isFunction(request.abort)) {
request.abort();
request = false;
}
if (settings.clear) {
if (settings.loading) {
/* Clear the select and show loading text. */
build.call(self, {"" : settings.loading});
} else {
/* Clear the select. */
$("option", self).remove();
}
/* Force updating the children to clear too. */
$(self).trigger("change");
}
request = $.getJSON(settings.url, data, function(json) {
build.call(self, json);
/* Force updating the children. */
$(self).trigger("change");
});
});
/* If we have bootstrapped data given in options. */
if (settings.bootstrap) {
build.call(self, settings.bootstrap);
settings.bootstrap = null;
}
});
/* Build the select from given data. */
function build(json) {
/* If select already had something selected, preserve it. */
var selected_key = $(":selected", self).val();
/* Clear the select. */
$("option", self).remove();
var option_list = [];
if ($.isArray(json)) {
/* JSON is already an array (which preserves the ordering of options) */
/* [["","--"],["series-1","1 series"],["series-3","3 series"]] */
option_list = json;
} else {
/* JSON is an JavaScript object. Rebuild it as an array. */
/* {"":"--","series-1":"1 series","series-3":"3 series"} */
for (var index in json) {
if (json.hasOwnProperty(index)) {
option_list.push([index, json[index]]);
}
}
}
/* Add new options from json. */
for (var i=0; i!==option_list.length; i++) {
var key = option_list[i][0];
var value = option_list[i][1];
/* Set the selected option from JSON. */
if ("selected" === key) {
selected_key = value;
continue;
}
var option = $("<option />").val(key).append(value);
$(self).append(option);
}
/* Loop option again to set selected. IE needed this... */
$(self).children().each(function() {
if ($(this).val() === selected_key) {
$(this).attr("selected", "selected");
}
});
/* If we have only the default value disable select. */
if (1 === $("option", self).size() && $(self).val() === "") {
$(self).prop("disabled", true);
} else {
$(self).prop("disabled", false);
}
}
});
};
/* Alias for those who like to use more English like syntax. */
$.fn.remoteChainedTo = $.fn.remoteChained;
/* Default settings for plugin. */
$.fn.remoteChained.defaults = {
attribute: "name",
depends : null,
bootstrap : null,
loading : null,
clear : false
};
})(window.jQuery || window.Zepto, window, document);