ODManager class
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
This is an Open Ticket manager.
It can be used to store & manage classes based on their ODId
.
It is somewhat the same as the default JS Map()
.
You can extend this class when creating your own classes & managers.
This class has many useful functions based on ODId
(add, get, remove, getAll, getFiltered, exists, loopAll, ...)
Methods
Properties
redirects
class ➜ api.ODManagerRedirectHelper
Handle all redirects in this ODManager
Methods
constructor()
function ➜ api.ODManager
(no description)
View Parameters (2)
debug
: class ➜api.ODDebugger
- Parameter Description Lorem Ipsum.debugname
: string ➜string
- Parameter Description Lorem Ipsum.
inherited protected _change()
function ➜ void
Trigger an onChange()
event in the parent ODManager
of this class.
add()
function ➜ boolean
Add data to the manager. The id will be fetched from the data class! You can optionally select to overwrite existing data!
View Parameters (2)
data
: type ➜DataType|(DataType[])
- Parameter Description Lorem Ipsum.overwrite
: boolean ➜boolean
- Parameter Description Lorem Ipsum.
inherited changed()
function ➜ void
(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.
exists()
function ➜ boolean
Check if data that matches the ODId
exists. Returns a boolean.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
get()
function ➜ null|DataType
Get data that matches the ODId
. Returns the found data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
getAll()
function ➜ DataType[]
Get all data inside this manager
getFiltered()
function ➜ DataType[]
Get all data that matches inside the filter function
View Parameters (1)
predicate
: function ➜(value:DataType, index:number, array:DataType) => unknown
- Parameter Description Lorem Ipsum.
getIds()
function ➜ api.ODId[]
Get a list of all the ids inside this manager
getLength()
function ➜ number
Get the length of the data inside this manager
getRegex()
function ➜ DataType[]
Get all data that matches the regex
View Parameters (1)
regex
: type ➜RegExp
- Parameter Description Lorem Ipsum.
loopAll()
function ➜ Promise
Run an iterator over all data in this manager. This method also supports async-await behaviour!
View Parameters (1)
cb
: function ➜(data:DataType, id:api.ODId) => api.ODPromiseVoid
- Parameter Description Lorem Ipsum.
onAdd()
function ➜ void
Listen for when data is added to this manager.
View Parameters (1)
callback
: type ➜api.ODManagerAddCallback
- Parameter Description Lorem Ipsum.
onChange()
function ➜ void
Listen for when data is changed in this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
onRemove()
function ➜ void
Listen for when data is removed from this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
remove()
function ➜ null|DataType
Remove data that matches the ODId
. Returns the removed data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
useDebug()
function ➜ void
Use the Open Ticket debugger in this manager for logs
View Parameters (2)
debug
: class ➜api.ODDebugger
- Parameter Description Lorem Ipsum.debugname
: string ➜string
- Parameter Description Lorem Ipsum.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!