2 * JavaScript for the user selectors.
3 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4 * @package userselector
7 // Define the core_user namespace if it has not already been defined
8 M.core_user = M.core_user || {};
9 // Define a user selectors array for against the cure_user namespace
10 M.core_user.user_selectors = [];
12 * Retrieves an instantiated user selector or null if there isn't one by the requested name
13 * @param {string} name The name of the selector to retrieve
16 M.core_user.get_user_selector = function (name) {
17 return this.user_selectors[name] || null;
21 * Initialise a new user selector.
23 * @param {YUI} Y The YUI3 instance
24 * @param {string} name the control name/id.
25 * @param {string} hash the hash that identifies this selector in the user's session.
26 * @param {array} extrafields extra fields we are displaying for each user in addition to fullname.
27 * @param {string} lastsearch The last search that took place
29 M.core_user.init_user_selector = function (Y, name, hash, extrafields, lastsearch) {
30 // Creates a new user_selector object
32 /** This id/name used for this control in the HTML. */
34 /** Array of fields to display for each user, in addition to fullname. */
35 extrafields: extrafields,
36 /** Number of seconds to delay before submitting a query request */
38 /** The input element that contains the search term. */
39 searchfield : Y.one('#' + name + '_searchtext'),
40 /** The clear button. */
42 /** The select element that contains the list of users. */
43 listbox : Y.one('#' + name),
44 /** Used to hold the timeout id of the timeout that waits before doing a search. */
46 /** Stores any in-progress remote requests. */
48 /** The last string that we searched for, so we can avoid unnecessary repeat searches. */
49 lastsearch : lastsearch,
50 /** Whether any options where selected last time we checked. Used by
51 * handle_selection_change to track when this status changes. */
52 selectionempty : true,
54 * Initialises the user selector object
58 // Hide the search button and replace it with a label.
59 var searchbutton = Y.one('#' + this.name + '_searchbutton');
60 this.searchfield.insert(Y.Node.create('<label for="' + this.name + '_searchtext">' + searchbutton.get('value') + '</label>'), this.searchfield);
61 searchbutton.remove();
63 // Hook up the event handler for when the search text changes.
64 this.searchfield.on('keyup', this.handle_keyup, this);
66 // Hook up the event handler for when the selection changes.
67 this.listbox.on('keyup', this.handle_selection_change, this);
68 this.listbox.on('click', this.handle_selection_change, this);
69 this.listbox.on('change', this.handle_selection_change, this);
71 // And when the search any substring preference changes. Do an immediate re-search.
72 Y.one('#userselector_searchanywhereid').on('click', this.handle_searchanywhere_change, this);
74 // Define our custom event.
75 //this.createEvent('selectionchanged');
76 this.selectionempty = this.is_selection_empty();
78 // Replace the Clear submit button with a clone that is not a submit button.
79 var clearbtn = Y.one('#' + this.name + '_clearbutton');
80 this.clearbutton = Y.Node.create('<input type="button" value="' + clearbtn.get('value') + '" />');
81 clearbtn.replace(Y.Node.getDOMNode(this.clearbutton));
82 this.clearbutton.set('id', this.name + "_clearbutton");
83 this.clearbutton.on('click', this.handle_clear, this);
84 this.clearbutton.set('disabled', (this.get_search_text() == ''));
86 this.send_query(false);
89 * Key up hander for the search text box.
90 * @param {Y.Event} e the keyup event.
92 handle_keyup : function(e) {
93 // Trigger an ajax search after a delay.
94 this.cancel_timeout();
95 this.timeoutid = Y.later(this.querydelay * 1000, e, function(obj){obj.send_query(false)}, this);
97 // Enable or diable the clear button.
98 this.clearbutton.set('disabled', (this.get_search_text() == ''));
100 // If enter was pressed, prevent a form submission from happening.
101 if (e.keyCode == 13) {
106 * Handles when the selection has changed. If the selection has changed from
107 * empty to not-empty, or vice versa, then fire the event handlers.
109 handle_selection_change : function() {
110 var isselectionempty = this.is_selection_empty();
111 if (isselectionempty !== this.selectionempty) {
112 this.fire('user_selector:selectionchanged', isselectionempty);
114 this.selectionempty = isselectionempty;
117 * Trigger a re-search when the 'search any substring' option is changed.
119 handle_searchanywhere_change : function() {
120 if (this.lastsearch != '' && this.get_search_text() != '') {
121 this.send_query(true);
125 * Click handler for the clear button..
127 handle_clear : function() {
128 this.searchfield.set('value', '');
129 this.clearbutton.set('disabled',true);
130 this.send_query(false);
133 * Fires off the ajax search request.
135 send_query : function(forceresearch) {
136 // Cancel any pending timeout.
137 this.cancel_timeout();
139 var value = this.get_search_text();
140 this.searchfield.set('class', '');
141 if (this.lastsearch == value && !forceresearch) {
145 // Try to cancel existing transactions.
146 Y.Object.each(this.iotransactions, function(trans) {
150 var iotrans = Y.io(M.cfg.wwwroot + '/user/selector/search.php', {
152 data: 'selectorid=' + hash + '&sesskey=' + M.cfg.sesskey + '&search=' + value + '&userselector_searchanywhere=' + this.get_option('searchanywhere'),
154 complete: this.handle_response
158 this.iotransactions[iotrans.id] = iotrans;
160 this.lastsearch = value;
161 this.listbox.setStyle('background','url(' + M.util.image_url('i/loading', 'moodle') + ') no-repeat center center');
164 * Handle what happens when we get some data back from the search.
165 * @param {int} requestid not used.
166 * @param {object} response the list of users that was returned.
168 handle_response : function(requestid, response) {
170 delete this.iotransactions[requestid];
171 if (!Y.Object.isEmpty(this.iotransactions)) {
172 // More searches pending. Wait until they are all done.
175 this.listbox.setStyle('background','');
176 var data = Y.JSON.parse(response.responseText);
178 this.searchfield.addClass('error');
179 return new M.core.ajaxException(data);
181 this.output_options(data);
183 this.listbox.setStyle('background','');
184 this.searchfield.addClass('error');
185 return new M.core.exception(e);
189 * This method should do the same sort of thing as the PHP method
190 * user_selector_base::output_options.
191 * @param {object} data the list of users to populate the list box with.
193 output_options : function(data) {
194 // Clear out the existing options, keeping any ones that are already selected.
195 var selectedusers = {};
196 this.listbox.all('optgroup').each(function(optgroup){
197 optgroup.all('option').each(function(option){
198 if (option.get('selected')) {
199 selectedusers[option.get('value')] = {
200 id : option.get('value'),
201 name : option.get('innerText') || option.get('textContent'),
202 disabled: option.get('disabled')
210 // Output each optgroup.
212 for (var key in data.results) {
213 var groupdata = data.results[key];
214 this.output_group(groupdata.name, groupdata.users, selectedusers, true);
218 var searchstr = (this.lastsearch != '') ? this.insert_search_into_str(M.util.get_string('nomatchingusers', 'moodle'), this.lastsearch) : M.util.get_string('none', 'moodle');
219 this.output_group(searchstr, {}, selectedusers, true)
222 // If there were previously selected users who do not match the search, show them too.
223 if (this.get_option('preserveselected') && selectedusers) {
224 this.output_group(this.insert_search_into_str(M.util.get_string('previouslyselectedusers', 'moodle'), this.lastsearch), selectedusers, true, false);
226 this.handle_selection_change();
229 * This method should do the same sort of thing as the PHP method
230 * user_selector_base::output_optgroup.
232 * @param {string} groupname the label for this optgroup.v
233 * @param {object} users the users to put in this optgroup.
234 * @param {boolean|object} selectedusers if true, select the users in this group.
235 * @param {boolean} processsingle
237 output_group : function(groupname, users, selectedusers, processsingle) {
238 var optgroup = Y.Node.create('<optgroup></optgroup>');
240 for (var key in users) {
241 var user = users[key];
242 var option = Y.Node.create('<option value="' + user.id + '">' + user.name + '</option>');
244 option.set('disabled', true);
245 } else if (selectedusers === true || selectedusers[user.id]) {
246 option.set('selected', true);
247 delete selectedusers[user.id];
249 option.set('selected', false);
251 optgroup.append(option);
252 if (user.infobelow) {
253 extraoption = Y.Node.create('<option disabled="disabled" class="userselector-infobelow"/>');
254 extraoption.appendChild(document.createTextNode(user.infobelow));
255 optgroup.append(extraoption);
261 optgroup.set('label', groupname + ' (' + count + ')');
262 if (processsingle && count === 1 && this.get_option('autoselectunique') && option.get('disabled') == false) {
263 option.set('selected', true);
266 optgroup.set('label', groupname);
267 optgroup.append(Y.Node.create('<option disabled="disabled">\u00A0</option>'));
269 this.listbox.append(optgroup);
273 * @param {string} str
274 * @param {string} search The search term
277 insert_search_into_str : function(str, search) {
278 return str.replace("%%SEARCHTERM%%", search);
281 * Gets the search text
282 * @return String the value to search for, with leading and trailing whitespace trimmed.
284 get_search_text : function() {
285 return this.searchfield.get('value').toString().replace(/^ +| +$/, '');
288 * Returns true if the selection is empty (nothing is selected)
289 * @return Boolean check all the options and return whether any are selected.
291 is_selection_empty : function() {
292 var selection = false;
293 this.listbox.all('option').each(function(){
294 if (this.get('selected')) {
301 * Cancel the search delay timeout, if there is one.
303 cancel_timeout : function() {
304 if (this.timeoutid) {
305 clearTimeout(this.timeoutid);
306 this.timeoutid = null;
310 * @param {string} name The name of the option to retrieve
311 * @return the value of one of the option checkboxes.
313 get_option : function(name) {
314 var checkbox = Y.one('#userselector_' + name + 'id');
316 return (checkbox.get('checked'));
322 // Augment the user selector with the EventTarget class so that we can use
324 Y.augment(user_selector, Y.EventTarget, null, null, {});
325 // Initialise the user selector
326 user_selector.init();
327 // Store the user selector so that it can be retrieved
328 this.user_selectors[name] = user_selector;
329 // Return the user selector
330 return user_selector;
334 * Initialise a class that updates the user's preferences when they change one of
335 * the options checkboxes.
338 * @return Tracker object
340 M.core_user.init_user_selector_options_tracker = function(Y) {
341 // Create a user selector options tracker
342 var user_selector_options_tracker = {
344 * Initlises the option tracker and gets everything going.
349 'userselector_preserveselected',
350 'userselector_autoselectunique',
351 'userselector_searchanywhere'
353 for (var s in settings) {
354 var setting = settings[s];
355 Y.one('#' + setting + 'id').on('click', this.set_user_preference, this, setting);
359 * Sets a user preference for the options tracker
360 * @param {Y.Event|null} e
361 * @param {string} name The name of the preference to set
363 set_user_preference : function(e, name) {
364 M.util.set_user_preference(name, Y.one('#' + name + 'id').get('checked'));
367 // Initialise the options tracker
368 user_selector_options_tracker.init();
369 // Return it just incase it is ever wanted
370 return user_selector_options_tracker;