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.2-next.87ed879

10 months ago

7.0.2-next.aa2ed66

12 months ago

7.0.2-next.8bd5242

11 months ago

7.0.2-next.3d9ff24

8 months ago

7.0.2-next.19c2b86

12 months ago

7.0.2-next.b5bb6ef

8 months ago

7.0.2-next.5106865

8 months ago

7.0.2-next.e191096

10 months ago

7.0.2-next.7ee1582

12 months ago

7.0.2-next.9c20163

8 months ago

7.0.2-next.cf109b1

9 months ago

7.0.2-next.d2ba80e

9 months ago

7.0.2-next.b4041d6

8 months ago

7.0.2-next.c1fcec2

9 months ago

7.0.2-next.b302651

9 months ago

7.0.2-next.3b38d76

9 months ago

7.0.2-next.a1b506a

12 months ago

7.0.2-next.1fa448c

12 months ago

7.0.2-next.1ba68f6

7 months ago

7.0.2-next.c02e438

11 months ago

7.0.2-next.fb563e8

10 months ago

7.0.2-next.ae90958

7 months ago

7.0.2-next.147893c

8 months ago

7.0.2-next.b2f016e

9 months ago

7.0.2-next.28de397

12 months ago

7.0.2-next.0d9024f

7 months ago

7.0.2-next.119ad9c

11 months ago

7.0.2-next.adf9c85

12 months ago

7.0.2-next.4407e6d

8 months ago

7.0.2-next.3c60b44

8 months ago

7.0.2-next.ebf804c

12 months ago

7.0.2-next.2f6302d

12 months ago

7.0.2-next.c246384

9 months ago

7.0.2-next.e879702

10 months ago

7.0.2-next.abbe598

8 months ago

7.0.2-next.214f8ce

10 months ago

7.0.2-next.73fd2f1

9 months ago

7.0.2-next.48a1e26

11 months ago

7.0.2-next.30c654b

9 months ago

7.0.2-next.8508a07

7 months ago

7.0.2-next.689cfd8

11 months ago

7.0.2-next.9d424f1

7 months ago

7.0.2-next.9f69aae

9 months ago

7.0.2-next.cb6bf89

8 months ago

7.0.2-next.a7d24b1

11 months ago

7.0.2-next.cc47e19

10 months ago

7.0.2-next.db7c810

8 months ago

7.0.2-next.0260b3d

11 months ago

7.0.2-next.b8eca5f

8 months ago

7.0.2-next.79a4381

8 months ago

7.0.2-next.4ce2946

8 months ago

7.0.2-next.7a67b07

9 months ago

7.0.2-next.e18dc27

7 months ago

7.0.2-next.c7aaadd

7 months ago

7.0.2-next.81c1ccb

9 months ago

7.0.2-next.aa45009

12 months ago

7.0.2-next.6bd83f1

7 months ago

7.0.2-next.1ba8a04

9 months ago

7.0.2-next.d37e114

11 months ago

7.0.2-next.fe39124

11 months ago

7.0.2-next.10ed525

8 months ago

7.0.2-next.1fc0c36

9 months ago

7.0.2-next.b368392

11 months ago

7.0.2-next.a24f9ec

9 months ago

7.0.2-next.93565ea

12 months ago

7.0.2-next.2e0d7f5

12 months ago

7.0.2-next.6664087

7 months ago

7.0.2-next.5854fd3

9 months ago

7.0.2-next.4b27ae4

10 months ago

7.0.2-next.ef59b2e

11 months ago

7.0.2-next.e1295d1

7 months ago

7.0.1

1 year ago

7.0.0

1 year ago

6.0.3

2 years ago

6.0.2

2 years 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

3 years ago

3.2.4

3 years ago

4.0.0

3 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

4 years ago

2.2.2

3 years ago

3.0.0

3 years ago

2.2.0

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.3

4 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

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago