forked from dtuite/jquery.populate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.populate.js
229 lines (188 loc) · 6.46 KB
/
jquery.populate.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
// This plugin comes from:
//
// http://www.keyframesandcode.com/resources/javascript/jQuery/demos/populate-demo.html
jQuery.fn.populate = function(obj, options) {
// ------------------------------------------------------------------------------------------
// JSON conversion function
// convert
function parseJSON(obj, path) {
// prepare
path = path || '';
// iteration (objects / arrays)
if(obj == undefined) {
// do nothing
} else if(obj.constructor == Object) {
for(var prop in obj) {
var name = path + (path == '' ? prop : '[' +prop+ ']');
parseJSON(obj[prop], name);
}
}
else if(obj.constructor == Array) {
for(var i = 0; i < obj.length; i++) {
var index = options.useIndices ? i : '';
index = options.phpNaming ? '[' +index+']' : index;
var name = path + index;
parseJSON(obj[i], name);
}
// assignment (values)
} else {
// if the element name hasn't yet been defined, create it as a single value
if(arr[path] == undefined) {
arr[path] = obj;
// if the element name HAS been defined, but it's a single value, convert to an array and add the new value
} else if(arr[path].constructor != Array) {
arr[path] = [arr[path], obj];
// if the element name HAS been defined, and is already an array, push the single value on the end of the stack
} else {
arr[path].push(obj);
}
}
};
// ------------------------------------------------------------------------------------------
// population functions
function debug(str) {
if(window.console && console.log) {
console.log(str);
}
}
function getElementName(name) {
if (!options.phpNaming) {
name = name.replace(/\[\]$/,'');
}
return name;
}
function populateElement(parentElement, name, value) {
var selector = options.identifier == 'id' ? '#' + name : '[' +options.identifier+ '="' +name+ '"]';
var element = jQuery(selector, parentElement);
value = value.toString();
value = value == 'null' ? '' : value;
element.html(value);
}
function populateFormElement(form, name, value) {
// check that the named element exists in the form
var name = getElementName(name); // handle non-php naming
var element = form[name];
// if the form element doesn't exist, check if there is a tag with that id
if(element == undefined) {
// look for the element
element = jQuery('#' + name, form);
if(element) {
element.html(value);
return true;
}
// nope, so exit
if(options.debug) {
debug('No such element as ' + name);
}
return false;
}
// debug options
if(options.debug) {
_populate.elements.push(element);
}
// now, place any single elements in an array.
// this is so that the next bit of code (a loop) can treat them the
// same as any array-elements passed, ie radiobutton or checkox arrays,
// and the code will just work
elements = element.type == undefined && element.length ? element : [element];
// populate the element correctly
for(var e = 0; e < elements.length; e++) {
// grab the element
var element = elements[e];
// skip undefined elements or function objects (IE only)
if(!element || typeof element == 'undefined' ||
typeof element == 'function') {
continue;
}
// anything else, process
switch(element.type || element.tagName) {
case 'radio':
var matches = value.toString() == element.value
// use the single value to check the radio button
element.checked = (element.value != '' && matches);
if (matches) jQuery(element).trigger('change');
case 'checkbox':
// depends on the value.
// if it's an array, perform a sub loop
// if it's a value, just do the check
var values = value.constructor == Array ? value : [value];
for(var j = 0; j < values.length; j++) {
element.checked |= element.value == values[j];
}
//element.checked = (element.value != '' && value.toString().toLowerCase() == element.value.toLowerCase());
break;
case 'select-multiple':
var values = value.constructor == Array ? value : [value];
for(var i = 0; i < element.options.length; i++) {
for(var j = 0; j < values.length; j++) {
element.options[i].selected |= element.options[i].value == values[j];
}
}
break;
case 'select':
case 'select-one':
// if the select box has been replaced by this
// selectbox plugin: https://gist.github.com/1139558
if ($('#' + element.id + '_container').length > 0) {
// Click the correct li to set the select box.
$('li#' + element.id + '_input_' + value).click()
// Otherwise just let it work the usual way.
} else {
element.value = value.toString() || value;
}
break;
case 'text':
case 'button':
case 'textarea':
case 'submit':
default:
value = value == null ? '' : value;
element.value = value;
}
}
}
// ------------------------------------------------------------------------------------------
// options & setup
// exit if no data object supplied
if (obj === undefined) {
return this;
};
// options
var options = jQuery.extend({
phpNaming: true,
phpIndices: false,
resetForm: true,
identifier: 'id',
debug: false
}, options);
if(options.phpIndices) {
options.phpNaming = true;
}
// ------------------------------------------------------------------------------------------
// convert hierarchical JSON to flat array
var arr = [];
parseJSON(obj);
if(options.debug) {
_populate = {
arr: arr,
obj: obj,
elements: []
}
}
// ------------------------------------------------------------------------------------------
// main process function
this.each(function(){
// variables
var tagName = this.tagName.toLowerCase();
var method = tagName == 'form' ? populateFormElement : populateElement;
// reset form?
if(tagName == 'form' && options.resetForm) {
this.reset();
}
// update elements
for(var i in arr) {
method(this, i, arr[i]);
}
});
return this;
};