JaBa/helpers/extenders.js

68 lines
2.3 KiB
JavaScript
Raw Normal View History

const { Message, BaseInteraction, User } = require("discord.js");
User.prototype.getUsername = function () {
return this.discriminator === "0" ? this.username : this.tag;
};
2022-01-04 02:18:28 +05:00
2023-12-14 18:58:19 +05:00
BaseInteraction.prototype.getLocale = function () {
2024-04-29 15:57:02 +05:00
return this.data?.guild?.language ?? "en-US";
2023-12-14 18:58:19 +05:00
};
2023-11-04 23:06:51 +05:00
BaseInteraction.prototype.translate = function (key, args) {
2023-12-14 18:58:19 +05:00
const language = this.client.translations.get(this.getLocale());
2023-11-04 23:06:51 +05:00
if (!language) throw "Interaction: Invalid language set in data.";
2022-01-04 02:18:28 +05:00
2023-11-04 23:06:51 +05:00
return language(key, args);
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
BaseInteraction.prototype.replyT = async function (key, args, options = {}) {
2023-12-14 18:58:19 +05:00
const translated = this.translate(key, args, this.getLocale());
2023-10-12 19:44:26 +05:00
const string = options.prefixEmoji ? `${this.client.customEmojis[options.prefixEmoji]} | ${translated}` : translated;
2022-01-04 02:18:28 +05:00
2024-04-29 15:57:02 +05:00
if (options.edit) return this.editReply({ content: string, ephemeral: options.ephemeral || false });
else return this.reply({ content: string, ephemeral: options.ephemeral || false });
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
BaseInteraction.prototype.success = async function (key, args, options = {}) {
options.prefixEmoji = "success";
2022-01-04 02:18:28 +05:00
2024-04-29 15:57:02 +05:00
return this.replyT(key, args, options);
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
BaseInteraction.prototype.error = async function (key, args, options = {}) {
options.prefixEmoji = "error";
2022-01-04 02:18:28 +05:00
2024-04-29 15:57:02 +05:00
return this.replyT(key, args, options);
2022-01-04 02:18:28 +05:00
};
2024-02-09 23:26:57 +05:00
Message.prototype.getLocale = function () {
2024-04-29 15:57:02 +05:00
return this.data?.guild?.language ?? "en-US";
2024-02-09 23:26:57 +05:00
};
2023-11-04 23:06:51 +05:00
Message.prototype.translate = function (key, args) {
2024-02-09 23:26:57 +05:00
const language = this.client.translations.get(this.getLocale());
2023-11-04 23:06:51 +05:00
if (!language) throw "Message: Invalid language set in data.";
2022-01-04 02:18:28 +05:00
2023-11-04 23:06:51 +05:00
return language(key, args);
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
Message.prototype.replyT = async function (key, args, options = {}) {
2024-02-09 23:26:57 +05:00
const translated = this.translate(key, args, this.getLocale());
2023-10-12 19:44:26 +05:00
const string = options.prefixEmoji ? `${this.client.customEmojis[options.prefixEmoji]} | ${translated}` : translated;
2024-04-29 15:57:02 +05:00
if (options.edit) return this.edit({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
else return this.reply({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
Message.prototype.success = async function (key, args, options = {}) {
options.prefixEmoji = "success";
2024-04-29 15:57:02 +05:00
return this.replyT(key, args, options);
2022-01-04 02:18:28 +05:00
};
2023-11-05 16:03:23 +05:00
Message.prototype.error = async function (key, args, options = {}) {
options.prefixEmoji = "error";
2024-04-29 15:57:02 +05:00
return this.replyT(key, args, options);
2023-07-05 00:58:06 +05:00
};