/* Jappix - An open social platform These are the directory JS scripts for Jappix ------------------------------------------------- License: AGPL Author: Valérian Saliou */ // Bundle var Directory = (function () { /** * Alias of this * @private */ var self = {}; /** * Opens the directory popup * @public * @return {boolean} */ self.open = function() { try { // Popup HTML content var html = '
' + Common._e("User directory") + '
' + '
' + '
' + '
' + Common._e("Server to query") + '
' + '' + '
' + '
' + '
' + '
' + '
' + '' + Common._e("Close") + '' + '
'; // Create the popup Popup.create('directory', html); // Associate the events self.instance(); // Start a search! self.start(); } catch(e) { Console.error('Directory.open', e); } finally { return false; } }; /** * Quits the directory popup * @public * @return {boolean} */ self.close = function() { try { // Destroy the popup Popup.destroy('directory'); } catch(e) { Console.error('Directory.close', e); } finally { return false; } }; /** * Launches a directory search * @public * @return {boolean} */ self.start = function() { try { // Get the server to query var server = $('#directory .directory-server-input').val(); // Launch the search! DataForm.go($('#directory .directory-server-input').val(), 'search', '', '', 'directory'); Console.log('Directory search launched: ' + server); } catch(e) { Console.error('Directory.start', e); } finally { return false; } }; /** * Plugin launcher * @public * @return {undefined} */ self.instance = function() { try { // Click event $('#directory .bottom .finish').click(self.close); // Keyboard event $('#directory .directory-server-input').keyup(function(e) { if(e.keyCode == 13) { // No value? if(!$(this).val()) $(this).val(HOST_VJUD); // Start the directory search self.start(); return false; } }); } catch(e) { Console.error('Directory.instance', e); } }; /** * Return class scope */ return self; })();