Split into multiple files #18
2 changed files with 51 additions and 8 deletions
36
src/events/loader.js
Normal file
36
src/events/loader.js
Normal file
|
@ -0,0 +1,36 @@
|
|||
import { readdir } from 'fs/promises';
|
||||
|
||||
export default async client => {
|
||||
const events_categories = (await readdir('./src/events'))
|
||||
.filter(element => !element.endsWith('.js'));
|
||||
|
||||
events_categories.forEach(async event_category => {
|
||||
// Retrieve events
|
||||
const events = await readdir(`./src/events/${event_category}`);
|
||||
|
||||
// Load them into the client
|
||||
Promise.all(
|
||||
events.map(async event_file => {
|
||||
const { once, default: execute } = await import(
|
||||
`../events/${event_category}/${event_file}`
|
||||
);
|
||||
|
||||
// Remove .js
|
||||
let event_type = event_file.split('.');
|
||||
if (event_type.pop() !== 'js') {
|
||||
throw `Unknown file in ${event_category}: ${event_file}`;
|
||||
}
|
||||
event_type = event_type.join('.');
|
||||
|
||||
if (once) {
|
||||
return client.once(event_type, (...args) => {
|
||||
execute(...args, client);
|
||||
});
|
||||
}
|
||||
return client.on(event_type, (...args) => {
|
||||
execute(...args, client);
|
||||
});
|
||||
}),
|
||||
);
|
||||
});
|
||||
};
|
17
src/index.js
17
src/index.js
|
@ -1,23 +1,30 @@
|
|||
import loadClient from './utils/client.js';
|
||||
import loadEvents from './events/loader.js';
|
||||
|
||||
const run = async () => {
|
||||
console.log('Starting Botanique...');
|
||||
|
||||
// Load .env if not in prod
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
const dotenv = await import('dotenv');
|
||||
dotenv.config({ path: './config/.env' });
|
||||
(await import('dotenv')).config({ path: './config/.env' });
|
||||
}
|
||||
|
||||
// Client Discord.JS
|
||||
const client = await loadClient().catch(() => {
|
||||
const client = await loadClient()
|
||||
.catch(() => {
|
||||
throw 'Client ❌';
|
||||
});
|
||||
if (client) {
|
||||
console.log('Client ✅');
|
||||
}
|
||||
|
||||
await loadEvents(client)
|
||||
.then(() => console.log('Events ✅'))
|
||||
.catch(() => {
|
||||
throw 'Events ❌';
|
||||
});
|
||||
|
||||
await client.login(client.config.token_discord);
|
||||
|
||||
console.log(`Botanique "${client.user.username}" ${client.config.version} started!`);
|
||||
};
|
||||
|
||||
run().catch(error => console.error(error));
|
||||
|
|
Loading…
Reference in a new issue