2015-11-30 18:58:35 +00:00
|
|
|
/// <reference path="index.ts" />
|
|
|
|
module SmartenvObjectStorage {
|
|
|
|
export function init() {
|
2015-12-10 14:52:14 +00:00
|
|
|
var obs:any = {
|
|
|
|
add: function(paramNameArg = "undefined",objectArg = "undefined") {
|
|
|
|
if (paramNameArg == "undefined"){
|
|
|
|
plugins.beautylog.error("paramName is undefined");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (objectArg == "undefined"){
|
|
|
|
plugins.beautylog.error("objectArg is undefined");
|
|
|
|
}
|
|
|
|
if (typeof obsItems[paramNameArg] === "undefined"){
|
|
|
|
obsItems[paramNameArg] = objectArg;
|
|
|
|
} else {
|
|
|
|
plugins.beautylog.error("object is already present, so add operation has failed.");
|
|
|
|
}
|
|
|
|
return obsItems[paramNameArg];
|
|
|
|
},
|
|
|
|
replace: function(paramNameArg,objectArg){
|
|
|
|
obsItems[paramNameArg] = objectArg;
|
|
|
|
},
|
|
|
|
merge: function(paramNameArg,objectArg){
|
|
|
|
if(!(typeof obsItems[paramNameArg] === "undefined")){
|
|
|
|
obsItems[paramNameArg] = plugins._.assign(obsItems[paramNameArg],objectArg);
|
|
|
|
} else {
|
|
|
|
plugins.beautylog.error("object is not present, so there is nothing to merge");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
get: function(keyName) {
|
|
|
|
return obsItems[keyName];
|
|
|
|
},
|
|
|
|
getAll: function () {
|
|
|
|
return obsItems;
|
|
|
|
},
|
|
|
|
addComplete: function(itemsArg) {
|
|
|
|
obsItems = plugins._.assign(obsItems,itemsArg);
|
|
|
|
return obsItems;
|
2015-12-06 20:49:57 +00:00
|
|
|
}
|
2015-11-30 18:58:35 +00:00
|
|
|
};
|
2015-12-10 14:52:14 +00:00
|
|
|
var obsItems:any = {};
|
2015-11-30 18:58:35 +00:00
|
|
|
return obs;
|
|
|
|
}
|
|
|
|
}
|