ODTicketManager 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 ticket manager.
This class manages all currently created tickets in the bot.
All tickets which are added, removed or modified in this manager will be updated automatically in the database.
Methods
Properties
inherited redirects
class ➜ api.ODManagerRedirectHelper
Handle all redirects in this ODManager
Methods
constructor()
function ➜ api.ODTicketManager
(no description)
View Parameters (2)
debug
: class ➜api.ODDebugger
- Parameter Description Lorem Ipsum.client
: class ➜api.ODClientManager_Default
- 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
: class ➜api.ODTicket
- 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.
inherited 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.
inherited get()
function ➜ null|api.ODTicket
Get data that matches the ODId
. Returns the found data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
inherited getAll()
function ➜ api.ODTicket[]
Get all data inside this manager
getAllTicketParticipants()
function ➜ Promise
Shortcut for getting all users that are able to view a ticket.
View Parameters (1)
ticket
: class ➜api.ODTicket
- Parameter Description Lorem Ipsum.
inherited getFiltered()
function ➜ api.ODTicket[]
Get all data that matches inside the filter function
View Parameters (1)
predicate
: function ➜(value:api.ODTicket, index:number, array:api.ODTicket[]) => unknown
- Parameter Description Lorem Ipsum.
inherited getIds()
function ➜ api.ODId[]
Get a list of all the ids inside this manager
inherited getLength()
function ➜ number
Get the length of the data inside this manager
inherited getRegex()
function ➜ api.ODTicket[]
Get all data that matches the regex
View Parameters (1)
regex
: type ➜RegExp
- Parameter Description Lorem Ipsum.
getTicketChannel()
function ➜ Promise
Get the discord channel for a specific ticket.
View Parameters (1)
ticket
: class ➜api.ODTicket
- Parameter Description Lorem Ipsum.
getTicketMessage()
function ➜ Promise
Get the main ticket message of a ticket channel when found.
View Parameters (1)
ticket
: class ➜api.ODTicket
- Parameter Description Lorem Ipsum.
getTicketUser()
function ➜ Promise
Shortcut for getting a discord.js user within a ticket.
View Parameters (2)
ticket
: class ➜api.ODTicket
- Parameter Description Lorem Ipsum.user
: type ➜"creator"|"closer"|"claimer"|"pinner"
- Parameter Description Lorem Ipsum.
inherited 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:api.ODTicket, id:api.ODId) => api.ODPromiseVoid
- Parameter Description Lorem Ipsum.
inherited onAdd()
function ➜ void
Listen for when data is added to this manager.
View Parameters (1)
callback
: type ➜api.ODManagerAddCallback
- Parameter Description Lorem Ipsum.
inherited onChange()
function ➜ void
Listen for when data is changed in this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
inherited onRemove()
function ➜ void
Listen for when data is removed from this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
inherited remove()
function ➜ null|api.ODTicket
Remove data that matches the ODId
. Returns the removed data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
inherited 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.
useGuild()
function ➜ void
Use a specific guild in this class for fetching the channel
View Parameters (1)
guild
: type ➜null|discord.Guild
- 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!