now using classes, remove global funcionality to prevent bad habits

This commit is contained in:
Philipp Kunz
2015-11-30 15:04:04 +01:00
parent d2de8231cc
commit f5e48e4fd3
11 changed files with 175 additions and 69 deletions

View File

@@ -1,22 +1,44 @@
/// <reference path="typings/tsd.d.ts" />
/// <reference path="classes.ts" />
var beautylog = require("beautylog")("os");
var addToGlobal = function(objectArg,paramName) {
global[paramName] = objectArg;
};
var smartenv:any = {}; //create smartenv object
smartenv.items = {}; // create the items object to store items to.
smartenv.makeGlobal = function() {
addToGlobal(smartenv,"smartenv");//add object smartenv as global["smartenv"]
/* ----------------------------------------- *
* ----- Environment ----------------------- *
* ----------------------------------------- */
var environment:Environment;
var setEnvironment = function() {
var localRunTimeEnv = "undefined";
var localUserAgent = "undefined";
if (typeof window !== 'undefined') {
localRunTimeEnv = 'browser';
localUserAgent = navigator.userAgent;
} else if (typeof process !== 'undefined') {
localRunTimeEnv = 'node';
}
environment = new Environment(localRunTimeEnv,localUserAgent);
};
setEnvironment();
smartenv.getEnv = function() {
return environment;
};
/* ----------------------------------------- *
* ----- Info vars ------------------------- *
* ----------------------------------------- */
smartenv.info = {};
smartenv.info.node = {};
smartenv.info.node.version = process.version;
smartenv.info.print = function() {
var pck = require("./package.json");
beautylog.log("node version is " + smartenv.info.node.version + " and smartenv version is " + pck.version);
beautylog.log("the smartenv module currently holds the following properties:");
smartenv.printEnv = function() {
if (environment.isNode) {
var smartenvVersion = require("./package.json").version;
beautylog.log("node version is " + environment.nodeVersion + " and smartenv version is " + smartenvVersion);
} else {
beautylog.log("browser is " + environment.userAgent)
}
beautylog.log("the smartenv registration store currently holds the following properties:");
console.log(Object.getOwnPropertyNames(smartenv.items).sort());
};
@@ -31,12 +53,4 @@ smartenv.get = function(keyName) {
return smartenv.items[keyName];
};
smartenv.exportEnv = function() {
};
smartenv.importEnv = function() {
};
module.exports = smartenv;