djs-easy
Version:
djs-easy is a javascript package for discord with the a lot stuff you need to make your bot programming easy
41 lines • 2.23 kB
JavaScript
;
// @ts-nocheck
Object.defineProperty(exports, "__esModule", { value: true });
const discord_js_1 = require("discord.js");
class Message {
constructor(client, interaction, guild) {
var _a;
const args = [], keys = Object.keys(interaction);
for (let i = 0; i < keys.length; i++) {
this[keys[i]] = interaction[keys[i]];
}
(_a = interaction.options.data) === null || _a === void 0 ? void 0 : _a.forEach((v) => args.push(v.value));
this.author = interaction.user;
this.channel = interaction.channel;
this.createdAt = interaction.createdAt;
this.createdTimestamp = interaction.createdTimestamp;
this.content = `/${interaction.commandName} ${args.join(" ")}`;
this.mentions = {
channels: new discord_js_1.Collection(),
members: new discord_js_1.Collection(),
users: new discord_js_1.Collection(),
roles: new discord_js_1.Collection(),
};
args.forEach(v => {
var _a, _b, _c, _d, _e, _f, _g, _h;
let member = (_b = (_a = guild === null || guild === void 0 ? void 0 : guild.members) === null || _a === void 0 ? void 0 : _a.cache) === null || _b === void 0 ? void 0 : _b.get(v);
let user = (_d = (_c = client === null || client === void 0 ? void 0 : client.users) === null || _c === void 0 ? void 0 : _c.cache) === null || _d === void 0 ? void 0 : _d.get(v);
let channel = (_f = (_e = guild === null || guild === void 0 ? void 0 : guild.channels) === null || _e === void 0 ? void 0 : _e.cache) === null || _f === void 0 ? void 0 : _f.get(v);
let role = (_h = (_g = guild === null || guild === void 0 ? void 0 : guild.roles) === null || _g === void 0 ? void 0 : _g.cache) === null || _h === void 0 ? void 0 : _h.get(v);
if (member)
this.mentions.members.set(member.id, member);
if (user)
this.mentions.users.set(user.id, user);
if (role)
this.mentions.roles.set(role.id, role);
if (channel)
this.mentions.channels.set(channel.id, channel);
});
}
}
exports.default = Message;