const { SlashCommandBuilder } = require('@discordjs/builders'); const { config } = require('dotenv'); const fn = require('../functions.js'); const indexer = require('../CustomModules/Indexer.js'); module.exports = { data: new SlashCommandBuilder() .setName('gifs') .setDescription('Get a list of currently saved GIFs.'), execute(interaction) { if (!interaction.client.gifs) { interaction.reply('For some reason I don\'t have access to the collection of gifs. Sorry about that!'); return; } let iStorage = interaction.client.iStorage.get(interaction.id); let indexedGifs = indexer(interaction.client.gifs, 0); indexedGifs.gifsString = new String(); iStorage.page = 0; for (const gif of indexedGifs.thisPage) { indexedGifs.gifsString += `[${gif.name}.gif](${gif.url})\n`; } const commandData = { command: "/gifs", author: interaction.member.displayName }; interaction.reply(fn.embeds.gifs(commandData, indexedGifs)); } };