7.0.1 β€’ Published 7 months ago

@sapphire/plugin-subcommands v7.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Sapphire Logo

@sapphire/plugin-subcommands

Plugin for @sapphire/framework so your commands can have subcommands.

GitHub codecov npm bundle size npm Depfu

Description

Subcommands are a way to split 1 command into multiple. This can in particular be very useful for configuration commands with subcommands such as set, reset and remove.

Features

  • Fully ready for TypeScript!
  • Includes ESM ready entrypoint
  • Type generics for easy extension in TypeScript
  • Input/Output mapping

Installation

yarn add @sapphire/plugin-subcommands

Usage

With TypeScript:

import { SubCommandPluginCommand } from '@sapphire/plugin-subcommands';
import { ApplyOptions } from '@sapphire/decorators';
import type { Args } from '@sapphire/framework';
import type { Message } from 'discord.js';

// Using ApplyOptions decorator makes it easy to configure
@ApplyOptions<SubCommandPluginCommand.Options>({
	subCommands: ['add', 'remove', 'list', 'reset', { input: 'show', default: true }]
})
// Extend `SubCommandPluginCommand` instead of `Command`
export class UserCommand extends SubCommandPluginCommand {
	// Do not include a `run` method, each method name should match with the subcommand names
	public async add(message: Message, args: Args) {}

	public async remove(message: Message, args: Args) {}

	public async list(message: Message, args: Args) {}

	public async reset(message: Message, args: Args) {}

	public async show(message: Message, args: Args) {}
}

With JavaScript:

const { SubCommandPluginCommand } = require('@sapphire/plugin-subcommands');

// Extend `SubCommandPluginCommand` instead of `Command`
export class UserCommand extends SubCommandPluginCommand {

	constructor(context, options) {
		super(context, {
				...options,
				subCommands: ['add', 'remove', 'list', 'reset', { input: 'show', default: true }]
			}
		)
	}

	// Do not include a `run` method, each method name should match with the subcommand names
	public async add(message, args) {}

	public async remove(message, args) {}

	public async list(message, args) {}

	public async reset(message, args) {}

	public async show(message, args) {}
}

SubCommands Documentation

For the full @sapphire/plugin-subcommands documentation please refer to the TypeDoc generated documentation.

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, Paypal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

7.0.1-next.d512e6d

7 months ago

7.0.2-next.a0edebf

7 months ago

7.0.1-next.b4f1701

7 months ago

7.0.1-next.b2086e1

7 months ago

7.0.1-next.80d26ac

7 months ago

7.0.2-next.21d90cf

7 months ago

7.0.2-next.c75b7c2

7 months ago

7.0.1-next.e0e4d74

7 months ago

7.0.1

7 months ago

7.0.1-next.6b9d139

7 months ago

7.0.1-next.5395ccc

7 months ago

7.0.2-next.0782cfd

7 months ago

7.0.1-next.d9dd30c

7 months ago

7.0.1-next.12ccd3c

7 months ago

7.0.1-next.6a148bb

8 months ago

7.0.1-next.d2c9aaa

8 months ago

7.0.1-next.ccf3dc1

7 months ago

7.0.1-next.5aa5898

8 months ago

7.0.1-next.518ac87

8 months ago

7.0.1-next.9e3ae6f

8 months ago

7.0.1-next.8128717

8 months ago

7.0.1-next.a1d7d5e

8 months ago

7.0.1-next.fa73a83

8 months ago

7.0.1-next.96ac961

9 months ago

7.0.1-next.51af5e9

9 months ago

7.0.1-next.f177359

9 months ago

7.0.1-next.22ae85d

8 months ago

7.0.1-next.352f2cd

8 months ago

7.0.1-next.5ea63b2

8 months ago

7.0.1-next.9b36bae

9 months ago

7.0.1-next.1c40781

9 months ago

7.0.1-next.e6fdc84

9 months ago

7.0.1-next.f730be1

9 months ago

7.0.1-next.f61b06f

9 months ago

7.0.1-next.f8b2f60

9 months ago

7.0.1-next.8de2057

9 months ago

7.0.1-next.821ff70

9 months ago

7.0.1-next.30e71f4

9 months ago

7.0.1-next.56b0ad1

9 months ago

7.0.1-next.fb8af18

9 months ago

7.0.1-next.8b575e9

10 months ago

7.0.1-next.e37f2d0

10 months ago

7.0.1-next.18d56e9

10 months ago

7.0.1-next.7ba75bc

10 months ago

7.0.1-next.1054b61

10 months ago

6.0.4-next.78dd025

11 months ago

6.0.4-next.1299f99

10 months ago

7.0.1-next.49b6ce2

10 months ago

7.0.1-next.fc8c5ba

10 months ago

6.0.4-next.d6024cd

11 months ago

7.0.1-next.3b2c2df

10 months ago

6.0.4-next.a34a933

11 months ago

7.0.0-next.6e7a5bf

10 months ago

7.0.1-next.f5fa1f7

10 months ago

6.0.4-next.26d4b68

11 months ago

6.0.4-next.d27dc1c

12 months ago

6.0.4-next.03b2a90

12 months ago

7.0.1-next.677d87e

10 months ago

7.0.1-next.73cea33

10 months ago

6.0.4-next.41e299d

11 months ago

6.0.4-next.ce675e0

11 months ago

7.0.1-next.c2464a5

10 months ago

6.0.4-next.fc8e636

11 months ago

6.0.4-next.7829696

11 months ago

7.0.1-next.280d498

10 months ago

6.0.4-next.d0e2d67

12 months ago

7.0.1-next.73121df

10 months ago

7.0.1-next.9f1cef4

10 months ago

7.0.0

10 months ago

7.0.1-next.5193167

10 months ago

7.0.1-next.834b446

10 months ago

7.0.1-next.e30dbc1

10 months ago

6.0.4-next.301a15d

11 months ago

6.0.4-next.08a81b1

12 months ago

6.0.3

1 year ago

6.0.2

1 year ago

6.0.1

2 years ago

6.0.0

2 years ago

4.0.2

2 years ago

5.0.0

2 years ago

5.1.0

2 years ago

4.3.0

2 years ago

4.2.2

2 years ago

4.2.1

2 years ago

4.2.0

2 years ago

4.1.0

2 years ago

4.1.1

2 years ago

4.0.1

2 years ago

3.2.4

3 years ago

4.0.0

2 years ago

3.2.2

3 years ago

3.2.3

3 years ago

3.2.1

3 years ago

3.2.0

3 years ago

3.1.1

3 years ago

3.1.0

3 years ago

2.2.1

3 years ago

2.2.2

3 years ago

3.0.0

3 years ago

2.2.0

3 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.3

3 years ago

2.1.0

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago