2020-10-23 16:11:00 +00:00
|
|
|
import { Client } from '../models/client.ts'
|
|
|
|
import { Channel } from './channel.ts'
|
2020-12-20 09:11:37 +00:00
|
|
|
import {
|
|
|
|
GuildCategoryChannelPayload,
|
|
|
|
ModifyGuildCategoryChannelOption,
|
|
|
|
ModifyGuildCategoryChannelPayload,
|
|
|
|
Overwrite
|
|
|
|
} from '../types/channel.ts'
|
2020-11-08 07:57:24 +00:00
|
|
|
import { Guild } from './guild.ts'
|
2020-12-20 09:11:37 +00:00
|
|
|
import { CHANNEL } from '../types/endpoint.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[]
|
2020-11-01 13:42:00 +00:00
|
|
|
guild: Guild
|
2020-10-23 16:11:00 +00:00
|
|
|
parentID?: string
|
|
|
|
|
2020-12-20 09:11:37 +00:00
|
|
|
constructor(client: Client, data: GuildCategoryChannelPayload, 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.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-20 09:11:37 +00:00
|
|
|
readFromData(data: GuildCategoryChannelPayload): 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.parentID = data.parent_id ?? this.parentID
|
2020-10-23 16:11:00 +00:00
|
|
|
}
|
2020-12-20 09:11:37 +00:00
|
|
|
|
|
|
|
async edit(
|
|
|
|
options?: ModifyGuildCategoryChannelOption
|
|
|
|
): Promise<CategoryChannel> {
|
|
|
|
const body: ModifyGuildCategoryChannelPayload = {
|
|
|
|
name: options?.name,
|
|
|
|
position: options?.position,
|
|
|
|
permission_overwrites: options?.permissionOverwrites,
|
|
|
|
parent_id: options?.parentID
|
|
|
|
}
|
|
|
|
|
|
|
|
const resp = await this.client.rest.patch(CHANNEL(this.id), body)
|
|
|
|
|
|
|
|
return new CategoryChannel(this.client, resp, this.guild)
|
|
|
|
}
|
2020-10-23 16:11:00 +00:00
|
|
|
}
|