2020-10-23 16:11:00 +00:00
|
|
|
import { Client } from '../models/client.ts'
|
|
|
|
import { Channel } from './channel.ts'
|
2020-12-02 12:29:52 +00:00
|
|
|
import { GuildChannelCategoryPayload, Overwrite } from '../types/channel.ts'
|
2020-11-08 07:57:24 +00:00
|
|
|
import { Guild } from './guild.ts'
|
2020-10-23 16:11:00 +00:00
|
|
|
|
2020-10-24 12:11:54 +00:00
|
|
|
export class CategoryChannel extends Channel {
|
2020-10-23 16:11:00 +00:00
|
|
|
guildID: string
|
|
|
|
name: string
|
|
|
|
position: number
|
|
|
|
permissionOverwrites: Overwrite[]
|
|
|
|
nsfw: boolean
|
2020-11-01 13:42:00 +00:00
|
|
|
guild: Guild
|
2020-10-23 16:11:00 +00:00
|
|
|
parentID?: string
|
|
|
|
|
2020-12-02 12:29:52 +00:00
|
|
|
constructor(client: Client, data: GuildChannelCategoryPayload, guild: Guild) {
|
2020-10-23 16:11:00 +00:00
|
|
|
super(client, data)
|
|
|
|
this.guildID = data.guild_id
|
|
|
|
this.name = data.name
|
2020-11-01 13:42:00 +00:00
|
|
|
this.guild = guild
|
2020-10-23 16:11:00 +00:00
|
|
|
this.position = data.position
|
|
|
|
this.permissionOverwrites = data.permission_overwrites
|
|
|
|
this.nsfw = data.nsfw
|
|
|
|
this.parentID = data.parent_id
|
2020-11-01 11:22:09 +00:00
|
|
|
// TODO: Cache in Gateway Event Code
|
|
|
|
// cache.set('guildcategorychannel', this.id, this)
|
2020-10-29 14:43:27 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 05:28:20 +00:00
|
|
|
readFromData(data: GuildChannelCategoryPayload): void {
|
2020-10-29 14:43:27 +00:00
|
|
|
super.readFromData(data)
|
|
|
|
this.guildID = data.guild_id ?? this.guildID
|
|
|
|
this.name = data.name ?? this.name
|
|
|
|
this.position = data.position ?? this.position
|
|
|
|
this.permissionOverwrites =
|
|
|
|
data.permission_overwrites ?? this.permissionOverwrites
|
|
|
|
this.nsfw = data.nsfw ?? this.nsfw
|
|
|
|
this.parentID = data.parent_id ?? this.parentID
|
2020-10-23 16:11:00 +00:00
|
|
|
}
|
|
|
|
}
|