mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
35 lines
883 B
JavaScript
35 lines
883 B
JavaScript
'use strict';
|
|
|
|
const Action = require('./Action');
|
|
const Channel = require('../../structures/Channel');
|
|
const { ChannelTypes } = require('../../util/Constants');
|
|
|
|
class ChannelUpdateAction extends Action {
|
|
handle(data) {
|
|
const client = this.client;
|
|
|
|
let channel = client.channels.cache.get(data.id);
|
|
if (channel) {
|
|
const old = channel._update(data);
|
|
|
|
if (ChannelTypes[channel.type] !== data.type) {
|
|
const newChannel = Channel.create(this.client, data, channel.guild);
|
|
for (const [id, message] of channel.messages.cache) newChannel.messages.cache.set(id, message);
|
|
channel = newChannel;
|
|
this.client.channels.cache.set(channel.id, channel);
|
|
}
|
|
|
|
return {
|
|
old,
|
|
updated: channel,
|
|
};
|
|
} else {
|
|
client.channels._add(data);
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
module.exports = ChannelUpdateAction;
|