99 lines
2.3 KiB
TypeScript
99 lines
2.3 KiB
TypeScript
import * as plugins from "./lik.plugins";
|
|
|
|
/**
|
|
* allows you to easily keep track of a bunch of strings;
|
|
*/
|
|
|
|
export interface triggerFunction {
|
|
():boolean;
|
|
}
|
|
|
|
export class Stringmap {
|
|
private _stringArray:string[] = [];
|
|
private _triggerUntilTrueFunctionArray:triggerFunction[] = [];
|
|
constructor(){
|
|
|
|
};
|
|
/**
|
|
* add a string to the Stringmap
|
|
*/
|
|
addString(stringArg:string){
|
|
this._stringArray.push(stringArg);
|
|
this.notifyTrigger();
|
|
};
|
|
|
|
/**
|
|
* removes a string from Stringmap
|
|
*/
|
|
removeString(stringArg:string){
|
|
for (let keyArg in this._stringArray){
|
|
if(this._stringArray[keyArg] == stringArg){
|
|
this._stringArray.splice(parseInt(keyArg),1);
|
|
};
|
|
};
|
|
this.notifyTrigger();
|
|
}
|
|
|
|
/**
|
|
* wipes the Stringmap
|
|
*/
|
|
wipe(){
|
|
this._stringArray = [];
|
|
this.notifyTrigger();
|
|
}
|
|
|
|
/**
|
|
* check if string is in Stringmap
|
|
*/
|
|
checkString(stringArg:string):boolean {
|
|
return this._stringArray.indexOf(stringArg) != -1;
|
|
}
|
|
|
|
/**
|
|
* checks stringPresence with minimatch
|
|
*/
|
|
checkMinimatch(miniMatchStringArg:string):boolean {
|
|
let foundMatch:boolean = false;
|
|
for(let stringItem of this._stringArray){
|
|
if(plugins.minimatch(stringItem,miniMatchStringArg)){
|
|
foundMatch = true;
|
|
};
|
|
};
|
|
return foundMatch;
|
|
};
|
|
|
|
/**
|
|
* checks if the Stringmap is empty
|
|
*/
|
|
checkIsEmpty(){
|
|
return (this._stringArray.length == 0);
|
|
}
|
|
|
|
// trigger registering
|
|
|
|
/**
|
|
* notifies triggers
|
|
*/
|
|
private notifyTrigger(){
|
|
let filteredArray = this._triggerUntilTrueFunctionArray.filter((functionArg) => {
|
|
return !functionArg();
|
|
});
|
|
this._triggerUntilTrueFunctionArray = filteredArray;
|
|
};
|
|
|
|
/**
|
|
* register a new trigger
|
|
*/
|
|
registerUntilTrue(functionArg:triggerFunction,doFunctionArg){
|
|
this._triggerUntilTrueFunctionArray.push(
|
|
() => {
|
|
let result = functionArg();
|
|
if(result == true){
|
|
doFunctionArg();
|
|
}
|
|
return result;
|
|
}
|
|
);
|
|
this.notifyTrigger();
|
|
}
|
|
} |