File: assets/help/README.txt

Recommend this page to a friend!
  Classes of Juan Jose   rsLIB   assets/help/README.txt   Download  
File: assets/help/README.txt
Role: Documentation
Content type: text/plain
Description: Readme TXT
Class: rsLIB
Load JavaScript and CSS using AJAX requests
Author: By
Last change: Update of assets/help/README.txt
Date: 2 years ago
Size: 6,055 bytes
 

Contents

Class file image Download
:: rsLIB :: --------- ASYNC REQUIRE LIBRARY :: INSERT THE LINKED-SCRIPTS PARAMETERS IN THE HEAD SYNCHRONOUSLY, BUT WITHOUT AJAX. File autoLoader for javascript Libraries (multi-scripts). copyright @ 2015 - Juan José Guerra Haba <dinertron@gmail.com> License: Free. GPL.v3 DESCRIPTION ----------- 'rsLIB' o RSLIB is the acronym of 'require async library' and a scripts library autoloader . It loads Scripts (js, json, ...) and even style sheets (CSS) DINAMICALLY and SYNCHRONOUS. Return an GLOBAL object 'rsLIB' for use in an immediate resource (variable, method, object ...) from library. This object contains some interesting properties and methods, among others, a very useful event 'onComplete (..)' to pass a callback. You only need to use it if you do use a resource immediately (variable, method, object ...) from library. OPTIONS ------- 'rsLIB' works with options and these are expected as an object embedded within the tag 'script' of the own call to this charger. These options should appear as follows: 1. nameLIB: name of the library to load 2. pathToLIB: path (relative or absolute) to the library directory with respect to html caller. 3. scripts: An array with the path relative to each script file you want to load. The last element of the array will not be charged, which is only indicates the main on which to launch the 'onComplete (..)' method. The call in the HTML Head might be: [code html] <script id="rsLIBID" class="rsLIBCLASS" type="text/javascript" src="./scripts/rsLIB.js"> /* Anonymous object for options */ { nameLIB: "PolyArea", pathToLIB: "./scripts/PolyArea/", scripts: ["./scripts/PolyArea/PolyArea.js", "./scripts/PolyArea/css/polyArea.css", "./scripts/PolyArea/PolyArea.js"] //The latter will not be loaded, only determines the event 'onComplete (..)' } </script> [/code] The MAGIC here is produced in this way to pass options, on the other hand, the options will be destroyed once used to help increase the SECURITY or ABSTRACTION layer. FEATURES -------- 1. OOP Philosophy. 2. EcmaScript-6 Features as "use-strict". 3. Abstraction and security through defined Closures and destruction options. 4. Simplification and minified code. (just over 2 kilobytes) 5. A single file. ADVANTAGES ---------- The main advantage is obvious, an entire group of scripts to load is implemented in a single options object, avoiding the annoying inclusion line-to-line for each tag in HTML, already the loader detect what type of file you are trying to link (css, js, json) and generates the corresponding label. DISADVANTAGES ------------- 1. Well, the main disadvantage (in some libraries or frameworks is not) is that the burden is necessarily produced in synchronous mode, that is, loading is script-to-script and this implies a possible reduction in execution speed. 2. Obviously standard tags for all loaded scripts are generated, there is no possibility to particularize with additional attributes. (async, data-main, lang, ...) (P.D.: Some libraries NEED synchronous mode for proper operation) FUTURE IMPROVEMENTS (TO-DO) --------------------------- 1. Using AJAX to provide load asynchronously. 2. Improve and include new options. 3. Using JSON for options. P.D.: Although used internally 'eval' on controlled manner, in following updates it will be studied how to replace 'eval' by 'JSON.parse' or 'JSON.stringify' CROSS-BROWSER ------------- (possibility of some external FOREING effects) Although it has made an effort to charger works cross-browser, DYNAMIC loading is something NO-STANDARD employing an UNORTHODOX way and can cause different behaviors in certain browsers. Reasons (tentative explanation): When produced a modification of DOM at the same time it is building its ELEMENT TREE incurred in a kind of contradiction is solved differently in different browsers. I think this occurs because the 'INTERNAL BROWSERS ARCHITECTURE' and type of engine used is very different; It is complicated but has to do with the flow 'READER-PARSER-INTERPRETATION' of files and JavaScript code and 'CREATION-MODIFICATION' DOM tree, and can cause the execution of scripts in a disorderly way (it has been observed in certain versions of IE), even giving different implementation priorities by type of script (script-in-line and linked), which in some cases can cause the browser to proceed with the reading of a piece of code in-line back before another set to a external script that contains the variables used. 'onComplete( callback )' EVENT ------------------------------ For these reasons the 'cross-browser' section has been implemented 'onComplete (..)' method to wait to use variables which are defined immediately. To avoid these adverse effects and provide a compatible form for all whatever DIRECT CODE that must run in the CALLBACK function as a parameter. For Example: [code javascript] /** An event callback function which include with immediate code * @param callback */ rsLIB.onComplete( function(){ //code to execute when the scripts are loaded (the main) }); [/code] THE 'rsLIB' OBJECT ------------------ Once interpreted the file 'rsLIB.js', it create the global variable 'rsLIB' representing the LOADER object. The following members is created: 1. options: the complete object detected as embedded options. 2. nameLIB: name of the library to load. 3. pathToLIB: the path to the library, based on the situation of HTML caller. 4. scripts: the array of scripts to load the library. 5. get: get properties of embedded object. 6. isset: utility method to check whether a variable is undefined. 7. onComplete (..): The event method to which can be passed a 'callback' function as the only parameter. -------------------- AUTHOR: `I hope I can be of use to someone as it has been for me. In this case it would be appreciated comment use in email or suggestions for future improvements.` PLEASE, KEEP CREDIT AND LINKS. THANKS ! `... And as he said 'George Lucas': that the force be with you. !!`