mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
32 lines
695 B
JavaScript
32 lines
695 B
JavaScript
const Action = require('./Action');
|
|
|
|
class ChannelDeleteAction extends Action {
|
|
constructor(client) {
|
|
super(client);
|
|
this.deleted = new Map();
|
|
}
|
|
|
|
handle(data) {
|
|
const client = this.client;
|
|
|
|
let channel = client.channels.get(data.id);
|
|
if (channel) {
|
|
client.dataManager.killChannel(channel);
|
|
this.deleted.set(channel.id, channel);
|
|
this.scheduleForDeletion(channel.id);
|
|
} else {
|
|
channel = this.deleted.get(data.id) || null;
|
|
}
|
|
|
|
return {
|
|
channel,
|
|
};
|
|
}
|
|
|
|
scheduleForDeletion(id) {
|
|
this.client.setTimeout(() => this.deleted.delete(id), this.client.options.restWsBridgeTimeout);
|
|
}
|
|
}
|
|
|
|
module.exports = ChannelDeleteAction;
|