bdjs
Version:
A potent package for creating Discord bots.
45 lines (44 loc) • 1.6 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Function_1 = require("../structures/Function");
const _ = tslib_1.__importStar(require("lodash"));
exports.default = new Function_1.BaseFunction({
description: 'Get a property from a command data.',
parameters: [
{
name: 'Type',
description: 'The command type.',
required: true,
resolver: 'String',
value: 'none'
},
{
name: 'Name',
description: 'The command name.',
required: true,
resolver: 'String',
value: 'none'
},
{
name: 'Property',
description: 'The command property.',
required: true,
resolver: 'String',
value: 'none'
}
],
code: async function (d, [type, name, property]) {
if (type === undefined)
throw new d.error(d, 'required', 'Command Type', d.function.name);
if (name === undefined)
throw new d.error(d, 'required', 'Command Name', d.function.name);
if (property === undefined)
throw new d.error(d, 'required', 'Command Property', d.function.name);
const commands = Array.from(d.bot.commands.values()).filter(cmd => cmd.type === type);
const command = commands.find(cmd => cmd.name === name);
if (!command)
throw new d.error(d, 'invalid', 'Command Name', d.function.name);
return _.get(command, property);
}
});