lik/ts/lik.objectmap.ts

111 lines
2.3 KiB
TypeScript
Raw Normal View History

import * as plugins from './lik.plugins'
2016-07-31 12:36:28 +00:00
export interface IObjectmapForEachFunction<T> {
(itemArg: T): void
}
export interface IObjectmapFindFunction<T> {
(itemArg: T): boolean
}
2016-07-31 12:36:28 +00:00
2016-07-30 22:54:46 +00:00
/**
* allows keeping track of objects
*/
export class Objectmap<T> {
private objectArray: T[] = []
2016-08-07 16:07:21 +00:00
/**
* returns a new instance
*/
constructor() {
2016-08-07 16:07:21 +00:00
}
2016-08-07 16:07:21 +00:00
2016-07-31 12:36:28 +00:00
/**
* add object to Objectmap
*/
add(objectArg: T) {
this.objectArray.push(objectArg)
}
2016-07-31 12:36:28 +00:00
2016-09-22 10:00:33 +00:00
/**
* like .add but adds an whole array of objects
*/
addArray(objectArrayArg: T[]) {
for (let item of objectArrayArg) {
this.add(item)
}
}
2016-07-31 12:36:28 +00:00
/**
* check if object is in Objectmap
*/
checkForObject(objectArg: T) {
return this.objectArray.indexOf(objectArg) !== -1
}
/**
* find object
*/
find(findFunction: IObjectmapFindFunction<T>) {
let resultArray = this.objectArray.filter(findFunction)
if (resultArray.length > 0) {
return resultArray[0]
} else {
2016-09-22 10:00:33 +00:00
return null
}
}
2016-07-31 12:36:28 +00:00
/**
* run function for each item in Objectmap
*/
forEach(functionArg: IObjectmapForEachFunction<T>) {
return this.objectArray.forEach(functionArg)
}
2016-07-31 12:36:28 +00:00
/**
* gets an object in the Observablemap and removes it, so it can't be retrieved again
2016-07-31 12:36:28 +00:00
*/
getOneAndRemove() {
return this.objectArray.shift()
}
/**
* finds a specific element and then removes it
*/
findOneAndRemove(findFunction) {
let foundElement = this.find(findFunction)
if (foundElement) {
this.remove(foundElement)
}
return foundElement
2016-07-30 22:54:46 +00:00
}
2016-09-29 20:05:20 +00:00
/**
* returns a cloned array of all the objects currently in the Objectmap
*/
getArray() {
return plugins.lodash.cloneDeep(this.objectArray)
}
/**
* remove object from Objectmap
*/
remove(objectArg: T) {
let replacementArray = []
for (let item of this.objectArray) {
if (item !== objectArg) {
replacementArray.push(item)
}
}
this.objectArray = replacementArray
}
/**
* wipe Objectmap
*/
wipe() {
this.objectArray = []
}
}