Update template by merging fork 'DiscordJS-Example'
This commit is contained in:
commit
f88e14b34a
@ -4,6 +4,7 @@ node_modules
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
docs
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
|
@ -8,5 +8,8 @@
|
||||
"ecmaVersion": "latest",
|
||||
"sourceType": "module"
|
||||
},
|
||||
"rules": {}
|
||||
"plugins": ["jsdoc"],
|
||||
"rules": {
|
||||
"jsdoc/no-undefined-types": 1
|
||||
}
|
||||
}
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,3 +3,5 @@ node_modules
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
commands/examples
|
||||
docs
|
||||
|
7
.jsdoc.conf.json
Normal file
7
.jsdoc.conf.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"source": {
|
||||
"include": ["."],
|
||||
"exclude": ["node_modules", "commands/examples"],
|
||||
"includePattern": ".+\\.js(doc|x)?$"
|
||||
}
|
||||
}
|
@ -4,6 +4,7 @@ node_modules
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
docs
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
|
13
deploy.js
13
deploy.js
@ -3,13 +3,17 @@ import { REST, Routes } from 'discord.js';
|
||||
import { join, dirname } from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
import { config } from 'dotenv';
|
||||
import Module from 'module';
|
||||
|
||||
config();
|
||||
|
||||
// Construct and prepare an instance of the REST module
|
||||
const rest = new REST().setToken(process.env.TOKEN);
|
||||
|
||||
// and deploy your commands!
|
||||
/**
|
||||
* Calls HTTP PUT to register commands in discord.
|
||||
* @param {Array<Object>} commands
|
||||
*/
|
||||
const putCommands = async (commands) => {
|
||||
try {
|
||||
console.info(`[INFO] Started refreshing ${commands.length} application (/) commands.`);
|
||||
@ -32,6 +36,7 @@ getFiles(cmdPath)
|
||||
// For each command file
|
||||
.then(async (files) =>
|
||||
(await Promise.all(files.map(importAndCheck)))
|
||||
.filter((module) => module !== 0)
|
||||
.map((module) => module.data.toJSON())
|
||||
).then(putCommands);
|
||||
.filter(/** @param {(Module|0)} module */ (module) => module !== 0)
|
||||
.map(/** @param {Module} module */ (module) => module.data.toJSON())
|
||||
)
|
||||
.then(putCommands);
|
||||
|
@ -1,5 +1,11 @@
|
||||
import { Events } from 'discord.js';
|
||||
import Module from 'module';
|
||||
|
||||
/**
|
||||
* A more precise execution function specifically to call the main property of a module.
|
||||
* @param {import('discord.js').Interaction} interaction
|
||||
* @param {Module} command
|
||||
*/
|
||||
const executeCommand = async (interaction, command) => {
|
||||
// Try executing command
|
||||
try {
|
||||
@ -21,9 +27,21 @@ const executeCommand = async (interaction, command) => {
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* A generic execution function to call command methods.
|
||||
* @param {import('discord.js').Interaction} interaction
|
||||
* @param {Module} command
|
||||
* @param {string} name
|
||||
* @param {string=} description
|
||||
* @param {string=} cmdName
|
||||
*/
|
||||
const genericExecute = async (interaction, command, name, description, cmdName) => {
|
||||
try {
|
||||
console.info(`[INFO] Command ${(cmdName ?? interaction.commandName) ?? 'anonymous'} ${description ?? `used "${name}"`}.`);
|
||||
console.info(
|
||||
`[INFO] Command ${cmdName ?? interaction.commandName ?? 'anonymous'} ${
|
||||
description ?? `used "${name}"`
|
||||
}.`
|
||||
);
|
||||
await command[name](interaction);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
@ -31,7 +49,9 @@ const genericExecute = async (interaction, command, name, description, cmdName)
|
||||
};
|
||||
|
||||
export const name = Events.InteractionCreate;
|
||||
/** @param {import('discord.js').Interaction} interaction */
|
||||
export async function execute(interaction) {
|
||||
/** @type {Module} */
|
||||
let command = interaction.client.commands.get(interaction.commandName);
|
||||
|
||||
// Execute slash- and context-menu-commands
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { Events } from 'discord.js';
|
||||
import { Events, Client } from 'discord.js';
|
||||
|
||||
export const name = Events.ClientReady;
|
||||
export const once = true;
|
||||
/** @param {Client} client */
|
||||
export function execute(client) {
|
||||
console.info(`[INFO] Ready! Logged in as ${client.user.tag}`);
|
||||
}
|
||||
|
30
index.js
30
index.js
@ -1,23 +1,38 @@
|
||||
import { Client, Collection, GatewayIntentBits } from 'discord.js';
|
||||
import { Client, Collection, GatewayIntentBits, Partials } from 'discord.js';
|
||||
import { getFiles, importAndCheck } from './shared.js';
|
||||
import { Partials } from 'discord.js';
|
||||
import { join, dirname } from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
import { config } from 'dotenv';
|
||||
import Module from 'module';
|
||||
|
||||
config();
|
||||
|
||||
/**
|
||||
* Main entry point, the bot logs on to discord.
|
||||
* @param {Array<Module>} commands
|
||||
* @param {Array<Module>} events
|
||||
*/
|
||||
const runClient = (commands, events) => {
|
||||
// Create a new client instance
|
||||
const client = new Client({
|
||||
intents: [
|
||||
GatewayIntentBits.Guilds,
|
||||
GatewayIntentBits.GuildMembers,
|
||||
GatewayIntentBits.GuildMessages,
|
||||
GatewayIntentBits.GuildVoiceStates,
|
||||
GatewayIntentBits.GuildMessageReactions
|
||||
],
|
||||
partials: [Partials.Message, Partials.Reaction]
|
||||
});
|
||||
|
||||
/**
|
||||
* The commands registered for this client.
|
||||
* @type {Collection}
|
||||
*/
|
||||
client.commands = new Collection();
|
||||
commands.forEach((c) => client.commands.set(c.data.name, c));
|
||||
|
||||
// Register client events
|
||||
events.forEach((e) =>
|
||||
e.once
|
||||
? client.once(e.name, (...args) => e.execute(...args))
|
||||
@ -35,13 +50,10 @@ const evtPath = join(__dirname, 'events');
|
||||
getFiles(cmdPath)
|
||||
// For each command file
|
||||
.then(async (files) =>
|
||||
(await Promise.all(files.map(importAndCheck)))
|
||||
.filter((module) => module !== 0)
|
||||
).then(async (commands) => {
|
||||
(await Promise.all(files.map(importAndCheck))).filter((module) => module !== 0)
|
||||
)
|
||||
.then(async (commands) => {
|
||||
const files = await getFiles(evtPath);
|
||||
const events = await Promise.all(
|
||||
files.map(async (filePath) =>
|
||||
await import(filePath)
|
||||
));
|
||||
const events = await Promise.all(files.map(async (filePath) => await import(filePath)));
|
||||
runClient(commands, events);
|
||||
});
|
||||
|
1534
package-lock.json
generated
1534
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -8,18 +8,20 @@
|
||||
"start": "node .",
|
||||
"deploy": "node deploy.js",
|
||||
"lint": "prettier --check . && eslint .",
|
||||
"format": "prettier --write ."
|
||||
"format": "prettier --write .",
|
||||
"jsdoc": "rm -rf docs/ && jsdoc -c ./.jsdoc.conf.json -d docs/ -r ."
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"discord.js": "^14.14.1",
|
||||
"dotenv": "^16.3.1",
|
||||
"proxy-agent": "^6.3.1"
|
||||
"dotenv": "^16.4.5",
|
||||
"sqlite3": "^5.1.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-jsdoc": "^48.0.6",
|
||||
"prettier": "^3.1.1"
|
||||
},
|
||||
"type": "module"
|
||||
|
20
shared.js
20
shared.js
@ -1,18 +1,32 @@
|
||||
import { join } from 'path';
|
||||
import { readdir } from 'fs/promises';
|
||||
import { join } from 'path';
|
||||
import Module from 'module';
|
||||
|
||||
// Lists of required and optional attributes of command modules
|
||||
const required = ['data', 'execute'];
|
||||
const optional = ['autocomplete', 'modalSubmit'];
|
||||
|
||||
/**
|
||||
* Recursively scans a directory for all files in it.
|
||||
* @param {string} dir
|
||||
* @returns {Promise<Array<string>>} Array of paths to the files within.
|
||||
*/
|
||||
export const getFiles = async (dir) => {
|
||||
const dirents = await readdir(dir, { withFileTypes: true });
|
||||
const files = await Promise.all(dirents.map((dirent) => {
|
||||
const files = await Promise.all(
|
||||
dirents.map((dirent) => {
|
||||
const res = join(dir, dirent.name);
|
||||
return dirent.isDirectory() ? getFiles(res) : res;
|
||||
}));
|
||||
})
|
||||
);
|
||||
return Array.prototype.concat(...files);
|
||||
};
|
||||
|
||||
/**
|
||||
* Imports and checks a command from a path as a module.
|
||||
* @param {string} filePath
|
||||
* @returns {Promise<Module|0>}
|
||||
*/
|
||||
export const importAndCheck = async (filePath) => {
|
||||
if (!filePath.endsWith('.js') || filePath.endsWith('.example.js')) {
|
||||
// Skip this file
|
||||
|
Loading…
Reference in New Issue
Block a user