SOURCE CODE: Uize.Build.FileBuilders.TempGeneratedNamespaceModules

VIEW REFERENCE

/*______________
|       ______  |   U I Z E    J A V A S C R I P T    F R A M E W O R K
|     /      /  |   ---------------------------------------------------
|    /    O /   |    MODULE : Uize.Build.FileBuilders.TempGeneratedNamespaceModules Package
|   /    / /    |
|  /    / /  /| |    ONLINE : http://uize.com
| /____/ /__/_| | COPYRIGHT : (c)2012-2014 UIZE
|          /___ |   LICENSE : Available under MIT License or GNU General Public License
|_______________|             http://uize.com/license.html
*/

/* Module Meta Data
  type: Package
  importance: 5
  codeCompleteness: 100
  docCompleteness: 100
*/

/*?
  Introduction
    The =Uize.Build.FileBuilders.TempGeneratedNamespaceModules= module defines a file builder for JavaScript namespace modules generated from folders and for which there are not explicit JavaScript modules.

    *DEVELOPERS:* `Chris van Rensburg`

    Functions defined in the file builder are called as instance methods on an instance of a subclass of the =Uize.Services.FileBuilderAdapter= class, so the functions can access instance methods implemented in this class.
*/

Uize.module ({
  name:'Uize.Build.FileBuilders.TempGeneratedNamespaceModules',
  required:'Uize.Build.Util',
  builder:function () {
    var _jsExtensionRegExp = /\.js$/;

    function _removeJsFileExtension (_path) {return _path.replace (_jsExtensionRegExp,'')}
    function _sourceFolderPath (m,_path) {return _removeJsFileExtension (m.sourceUrlFromTempUrl (_path))}

    return Uize.package ({
      description:'Generated JavaScript namespace modules under temp',
      urlMatcher:function (_urlParts) {
        var
          m = this,
          _pathname = _urlParts.pathname
        ;
        return (
          _urlParts.fileType == 'js' &&
          m.isTempUrl (_pathname) &&
          m.fileSystem.folderExists ({path:_sourceFolderPath (m,_pathname)})
        );
      },
      builderInputs:function (_urlParts) {
        return {sourceFolderPath:_sourceFolderPath (this,_urlParts.pathname)};
      },
      builder:function (_inputs,_urlParts) {
        var _params = this.params;
        return Uize.Build.Util.moduleAsText ({
          name:Uize.Build.Util.moduleNameFromModulePath (
            _removeJsFileExtension (
              _urlParts.pathname.slice ((_params.tempPath + '/' + _params.modulesFolder + '/').length)
            )
          )
        });
      }
    });
  }
});