From c9e865629ebb1e83626ff049244318b8769b4502 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 29 Oct 2014 11:05:02 +0100 Subject: [PATCH] JS doc --- apps/user_ldap/js/ldapFilter.js | 14 ++++++++++++++ apps/user_ldap/js/settings.js | 13 +++++++++++++ 2 files changed, 27 insertions(+) diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 2bb62ad1a9a..780aa10fe3f 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -63,12 +63,21 @@ LdapFilter.prototype.compose = function() { ); }; +/** + * this function is triggered after attribute detectors have completed in + * LdapWizard + */ LdapFilter.prototype.afterDetectorsRan = function() { this.updateCount(); }; +/** + * this function is triggered after LDAP filters have been composed successfully + * @param {object} result returned by the ajax call + */ LdapFilter.prototype.afterComposeSuccess = function(result) { LdapWizard.applyChanges(result); + //best time to run attribute detectors LdapWizard.runDetectors(this.target, this.afterDetectorsRan); }; @@ -147,6 +156,11 @@ LdapFilter.prototype.findFeatures = function() { } }; +/** + * this function is triggered before user and group counts are executed + * resolving the passed status variable will fire up counting + * @param {object} status an instance of $.Deferred + */ LdapFilter.prototype.beforeUpdateCount = function(status) { return LdapWizard.runDetectors(this.target, function() { status.resolve(); diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index f8cb3d84cea..be1db28648f 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -377,6 +377,16 @@ var LdapWizard = { LdapWizard._countThings('countUsers', '#ldap_user_count', doneCallback); }, + /** + * called after detectors have run + * @callback runDetectorsCallback + */ + + /** + * runs detectors to determine appropriate attributes, e.g. displayName + * @param {string} type either "User" or "Group" + * @param {runDetectorsCallback} triggered after all detectors have completed + */ runDetectors: function(type, callback) { if(type === 'Group') { $.when(LdapWizard.detectGroupMemberAssoc()) @@ -397,6 +407,9 @@ var LdapWizard = { } }, + /** + * runs detector to find out a fitting user display name attribute + */ detectUserDisplayNameAttribute: function() { var param = 'action=detectUserDisplayNameAttribute' + '&ldap_serverconfig_chooser='+ -- 2.39.5