X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=34ad96d7c281807923590ecff9d5c537c75c39fc;hb=32e61827009be16e05a3bd2973245ab2fdd790bd;hp=658f8499c414c8546fde6cefc161cbf74bfa2afb;hpb=4fcef8ebfa3efd25d3d461aeffefe774f940b6a8;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 658f849..34ad96d 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -1,5 +1,4 @@ -/* A very simple client that shows a basic usage of the pz2.js -*/ +/*! MKWS, the MasterKey Widget Set. Copyright (C) 2013, Index Data */ "use strict"; // HTML5: disable for debug_level >= 2 @@ -10,17 +9,16 @@ var mkws = { filters: [] }; -/* - * global config object: mkws_config - * - * Needs to be defined in the HTML header before including this JS file. - * Define empty mkws_config for simple applications that don't define it. - */ +// Define empty mkws_config for simple applications that don't define it. if (!mkws_config) var mkws_config = {}; -// Wrapper for jQuery -(function ($) { +// wrapper for jQuery lib +function _mkws($) { + // if (console && console.log) console.log("run _mkws()"); + + // call this function only once + if (mkws.init) return; mkws.locale_lang = { "de": { @@ -89,7 +87,7 @@ mkws.debug_function = function (string) { } var now = $.now(); - var timestamp = (now - mkws.debug_time.start)/1000 + " (+" + (now - mkws.debug_time.last)/1000 + ") " + var timestamp = ((now - mkws.debug_time.start)/1000).toFixed(3) + " (+" + ((now - mkws.debug_time.last)/1000).toFixed(3) + ") " mkws.debug_time.last = now; // you need to disable use strict at the top of the file!!! @@ -101,6 +99,7 @@ mkws.debug_function = function (string) { console.log(timestamp + string); } var debug = mkws.debug_function; // local alias +debug("start running MKWS"); Handlebars.registerHelper('json', function(obj) { @@ -215,7 +214,7 @@ for (var key in mkws_config) { } } - +debug("Create main pz2 object"); // create a parameters array and pass it to the pz2's constructor // then register the form submit event with the pz2.search function // autoInit is set to true on default @@ -422,7 +421,9 @@ function onFormSubmitEventHandler() function newSearch(query, sort, targets) { - if (!mkws.authenticated) { + debug("newSearch: " + query); + + if (mkws_config.use_service_proxy && !mkws.authenticated) { alert("searching before authentication"); return; } @@ -904,10 +905,14 @@ function mkws_html_all() { mkws_html_switch(); - if (mkws_config.use_service_proxy) + if (mkws_config.use_service_proxy) { mkws_service_proxy_auth(mkws_config.service_proxy_auth, mkws_config.service_proxy_auth_domain, mkws_config.pazpar2_url); + } else { + // raw pp2 + run_auto_searches(); + } if (mkws_config.responsive_design_width) { // Responsive web design - change layout on the fly based on @@ -932,6 +937,8 @@ function mkws_html_all() { function run_auto_searches() { + debug("run auto searches"); + var node = $('#mkwsRecords'); if (node.attr('autosearch')) { var query = node.attr('autosearch'); @@ -1125,10 +1132,72 @@ function M(word) { return mkws.locale_lang[lang][word] || word; } +// main +(function() { + try { + mkws_html_all() + } + + catch (e) { + mkws_config.error = e.message; + // alert(e.message); + } +})(); + + // done + mkws.init = true; +}; + + /* - * implement jQuery plugins + * implement jQuery plugin $.pazpar2({}) */ -$.extend({ +function _mkws_jquery_plugin ($) { + function debug (string) { // delayed debug, internal variables are set after dom ready + setTimeout(function() { mkws.debug(string); }, 500); + } + + function init_popup(obj) { + var config = obj ? obj : {}; + + var height = config.height || 760; + var width = config.width || 880; + var id_button = config.id_button || "input#mkwsButton"; + var id_popup = config.id_popup || "#mkwsPopup"; + + debug("popup height: " + height + ", width: " + width); + + // make sure that jquery-ui was loaded afte jQuery core lib, e.g.: + // + if (!$.ui) { + debug("Error: jquery-ui.js is missing, did you included it after jquery core in the HTML file?"); + return; + } + + $(id_popup).dialog({ + closeOnEscape: true, + autoOpen: false, + height: height, + width: width, + modal: true, + resizable: true, + buttons: { + Cancel: function() { + $(this).dialog("close"); + } + }, + close: function() { } + }); + + $(id_button) + .button() + .click(function() { + $(id_popup).dialog("open"); + }); + }; + + $.extend({ + // implement $.parseQuerystring() for parsing URL parameters parseQuerystring: function() { var nvpair = {}; @@ -1141,9 +1210,6 @@ $.extend({ return nvpair; }, - debug2: function(string) { // delayed debug, internal variables are set after dom ready - setTimeout(function() { debug(string); }, 500); - }, // service-proxy or pazpar2 pazpar2: function(config) { @@ -1215,71 +1281,27 @@ $.extend({ ' if (config && config.layout == 'div') { - this.debug2("jquery plugin layout: div"); + debug("jquery plugin layout: div"); document.write(div); } else if (config && config.layout == 'popup') { - this.debug2("jquery plugin layout: popup with id: " + id_popup); + debug("jquery plugin layout: popup with id: " + id_popup); document.write(popup); $(document).ready( function() { init_popup(config); } ); } else { - this.debug2("jquery plugin layout: table"); + debug("jquery plugin layout: table"); document.write(table); } } }); - -function init_popup(obj) { - var config = obj ? obj : {}; - - var height = config.height || 760; - var width = config.width || 880; - var id_button = config.id_button || "input#mkwsButton"; - var id_popup = config.id_popup || "#mkwsPopup"; - - debug("popup height: " + height + ", width: " + width); - - // make sure that jquery-ui was loaded afte jQuery core lib, e.g.: - // - if (!$.ui) { - debug("Error: jquery-ui.js is missing, did you included it after jquery core in the HTML file?"); - return; - } - - $(id_popup).dialog({ - closeOnEscape: true, - autoOpen: false, - height: height, - width: width, - modal: true, - resizable: true, - buttons: { - Cancel: function() { - $(this).dialog("close"); - } - }, - close: function() { } - }); - - $(id_button) - .button() - .click(function() { - $(id_popup).dialog("open"); - }); }; +// wrapper to call _mkws after page load +(function (j) { + // enable before page load, so we could call it before mkws() runs + _mkws_jquery_plugin(j); - - -/* magic */ -$(document).ready(function() { - try { - mkws_html_all() - } - - catch (e) { - mkws_config.error = e.message; - // alert(e.message); - } -}); - + $(document).ready(function() { + // if (console && console.log) console.log("on load ready"); + _mkws(j); + }); })(jQuery);