mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
* Backporting, doc/bug fixes as well deprecation * Adress issue with not resettable icons/images
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
const Channel = require('./Channel');
|
|
const TextBasedChannel = require('./interfaces/TextBasedChannel');
|
|
const Collection = require('../util/Collection');
|
|
|
|
/**
|
|
* Represents a direct message channel between two users.
|
|
* @extends {Channel}
|
|
* @implements {TextBasedChannel}
|
|
*/
|
|
class DMChannel extends Channel {
|
|
constructor(client, data) {
|
|
super(client, data);
|
|
this.type = 'dm';
|
|
this.messages = new Collection();
|
|
this._typing = new Map();
|
|
}
|
|
|
|
setup(data) {
|
|
super.setup(data);
|
|
|
|
/**
|
|
* The recipient on the other end of the DM
|
|
* @type {User}
|
|
*/
|
|
this.recipient = this.client.dataManager.newUser(data.recipients[0]);
|
|
|
|
this.lastMessageID = data.last_message_id;
|
|
}
|
|
|
|
/**
|
|
* When concatenated with a string, this automatically concatenates the recipient's mention instead of the
|
|
* DM channel object.
|
|
* @returns {string}
|
|
*/
|
|
toString() {
|
|
return this.recipient.toString();
|
|
}
|
|
|
|
// These are here only for documentation purposes - they are implemented by TextBasedChannel
|
|
/* eslint-disable no-empty-function */
|
|
send() {}
|
|
sendMessage() {}
|
|
sendEmbed() {}
|
|
sendFile() {}
|
|
sendFiles() {}
|
|
sendCode() {}
|
|
fetchMessage() {}
|
|
fetchMessages() {}
|
|
fetchPinnedMessages() {}
|
|
search() {}
|
|
startTyping() {}
|
|
stopTyping() {}
|
|
get typing() {}
|
|
get typingCount() {}
|
|
createCollector() {}
|
|
createMessageCollector() {}
|
|
awaitMessages() {}
|
|
// Doesn't work on DM channels; bulkDelete() {}
|
|
acknowledge() {}
|
|
_cacheMessage() {}
|
|
}
|
|
|
|
TextBasedChannel.applyToClass(DMChannel, true, ['bulkDelete']);
|
|
|
|
module.exports = DMChannel;
|