JaBa/commands/General/remindme.js

103 lines
2.7 KiB
JavaScript
Raw Normal View History

2024-01-27 16:31:34 +05:00
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
const BaseCommand = require("../../base/BaseCommand"),
ms = require("ms"),
moment = require("moment");
class Remindme extends BaseCommand {
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../base/Client")} client
*/
constructor(client) {
super({
command: new SlashCommandBuilder()
.setName("remindme")
.setDescription(client.translate("general/remindme:DESCRIPTION"))
.setDescriptionLocalizations({
2023-07-05 00:58:06 +05:00
uk: client.translate("general/remindme:DESCRIPTION", null, "uk-UA"),
ru: client.translate("general/remindme:DESCRIPTION", null, "ru-RU"),
})
.setDMPermission(true)
2023-07-05 00:58:06 +05:00
.addStringOption(option =>
option
.setName("time")
.setDescription(client.translate("general/remindme:TIME"))
.setDescriptionLocalizations({
uk: client.translate("general/remindme:TIME", null, "uk-UA"),
ru: client.translate("general/remindme:TIME", null, "ru-RU"),
})
.setRequired(true),
)
.addStringOption(option =>
option
.setName("message")
.setDescription(client.translate("common:MESSAGE"))
.setDescriptionLocalizations({
uk: client.translate("common:MESSAGE", null, "uk-UA"),
ru: client.translate("common:MESSAGE", null, "ru-RU"),
})
.setRequired(true),
),
aliases: [],
dirname: __dirname,
ownerOnly: false,
});
}
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
*/
async onLoad() {
//...
}
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
* @param {import("discord.js").ChatInputCommandInteraction} interaction
2022-08-09 23:48:33 +05:00
* @param {Object} data
*/
async execute(client, interaction, data) {
await interaction.deferReply({ ephemeral: true });
if (!data.userData.reminds) data.userData.reminds = [];
2024-01-27 16:31:34 +05:00
const dateNow = Date.now();
2024-01-23 16:11:10 +05:00
const reminderData = {
2024-01-27 16:31:34 +05:00
message: interaction.options.getString("message"),
createdAt: dateNow,
2024-01-27 16:31:34 +05:00
sendAt: dateNow + ms(interaction.options.getString("time")),
};
2024-01-23 16:11:10 +05:00
data.userData.reminds.push(reminderData);
2023-10-30 21:45:10 +05:00
data.userData.markModified("reminds");
2023-10-17 08:33:41 +05:00
await data.userData.save();
2023-10-09 17:08:19 +05:00
client.databaseCache.usersReminds.set(interaction.user.id, data.userData);
2024-01-27 16:31:34 +05:00
const embed = new EmbedBuilder()
.setAuthor({
name: interaction.translate("general/remindme:EMBED_SAVED"),
})
.addFields([
{
name: interaction.translate("general/remindme:EMBED_TIME"),
value: moment(reminderData.sendAt).locale(interaction.getLocale()).format("Do MMMM YYYY, HH:mm:ss"),
},
{
name: interaction.translate("common:MESSAGE"),
value: reminderData.message,
},
])
.setColor(client.config.embed.color)
.setFooter(client.config.embed.footer);
interaction.editReply({
embeds: [embed],
});
}
}
2023-07-05 00:58:06 +05:00
module.exports = Remindme;