Discord-InterChat/InterChat

View on GitHub
src/commands/slash/Information/help.ts

Summary

Maintainability
A
0 mins
Test Coverage
import BaseCommand from '#main/core/BaseCommand.js';
import { Pagination } from '#main/modules/Pagination.js';
import Constants, { emojis } from '#utils/Constants.js';
import { stripIndents } from 'common-tags';
import { ChatInputCommandInteraction, EmbedBuilder } from 'discord.js';

export default class Help extends BaseCommand {
  readonly data = {
    name: 'help',
    description: '💡 Shows the help menu for InterChat.',
  };

  async execute(interaction: ChatInputCommandInteraction) {
    const baseEmbed = new EmbedBuilder()
      .setColor(Constants.Colors.invisible)
      .setThumbnail(interaction.client.user.displayAvatarURL());

    const page1 = EmbedBuilder.from(baseEmbed)
      .setTitle('Welcome to InterChat!')
      .setDescription(
        stripIndents`
        With InterChat you can have real-time conversations between different servers—just invite InterChat, create a special chat space or join one, and let the exiting journey begin!

        This simple guide will show you how to set up InterChat and start enjoying the benefits of cross-server communication.
    `,
      );
    const page2 = EmbedBuilder.from(baseEmbed)
      .setTitle('Quick Setup')
      .setThumbnail('https://i.imgur.com/0GPapkN.png')
      .addFields(
        {
          name: 'Step 1: Browse Hubs',
          value:
            'Type </hub browse:1107639810014847049> to discover existing public InterChat communities. Find topics that interest you!',
          inline: true,
        },
        {
          name: 'Step 2: Join a Hub',
          value:
            'Once you find a hub you like, simply type </hub join:1107639810014847049>. To avoid clutter, keep a separate channel for InterChat messages. You\'ll be connected to the hub instantly.',
          inline: true,
        },
        {
          name: 'Step 3: All set!',
          value:
            'To chat with people from other servers, simply type in the channel you just used to join the hub. You\'ll be able to see messages from other servers and send your own.',
          inline: true,
        },
        {
          // empty field to make the embed look better
          name: '\u200b',
          value:
            'It\'s as simple as that! You\'re now ready to start chatting with people from other servers. 🎉',
        },
      );

    const page3 = EmbedBuilder.from(baseEmbed)
      .setTitle('Useful Commands')
      .setThumbnail('https://i.imgur.com/MrhM6yN.png').setDescription(stripIndents`
      Here are some essential commands to help you get started:

      - </hub join:1107639810014847049>・Join a public or private hub using its name or invite.
      - </hub browse:1107639810014847049>・Find public hubs and join them.
      - </hub create:1107639810014847049>・Make your own hub and invite others to join.
      - </hub edit:1107639810014847049> Edit your hub configuration.
      - </connection:1170719616872501300>・Manage your connections. You can choose an embed color, edit hub icons, switch to a compact mode and more.

      ${emojis.info} You can view other commands aside from these by typing  /.
    `);

    const page4 = EmbedBuilder.from(baseEmbed).setTitle('Final Notes').setDescription(stripIndents`
    You\'re all set! You can now chat with people from other servers in real-time. For more detailed information and advanced features, refer to the official  [InterChat guide](${Constants.Links.Docs}). Have fun! 🎉
    
    For any questions, suggestions or feedback, join the [support server](${Constants.Links.SupportInvite}) or [vote for InterChat](https://top.gg/bot/769921109209907241/vote).
    `);

    const paginator = new Pagination().addPages([
      { embeds: [page1] },
      { embeds: [page2] },
      { embeds: [page3] },
      { embeds: [page4] },
    ]);

    await paginator.run(interaction);
  }
}