discord.js-selfbot-v13/src/client/actions/TypingStart.js

30 lines
788 B
JavaScript
Raw Normal View History

2022-03-19 10:37:45 +00:00
'use strict';
const Action = require('./Action');
const Typing = require('../../structures/Typing');
const { Events } = require('../../util/Constants');
2022-03-19 10:37:45 +00:00
class TypingStart extends Action {
handle(data) {
const channel = this.getChannel(data);
if (!channel) return;
if (!channel.isText()) {
this.client.emit(Events.WARN, `Discord sent a typing packet to a ${channel.type} channel ${channel.id}`);
2022-03-19 10:37:45 +00:00
return;
}
const user = this.getUserFromMember(data);
if (user) {
/**
* Emitted whenever a user starts typing in a channel.
* @event Client#typingStart
* @param {Typing} typing The typing state
*/
this.client.emit(Events.TYPING_START, new Typing(channel, user, data));
2022-03-19 10:37:45 +00:00
}
}
}
module.exports = TypingStart;