mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
99 lines
2.4 KiB
TypeScript
99 lines
2.4 KiB
TypeScript
import type { JSONEncodable } from '@discordjs/util';
|
|
import type { APIMessageComponentEmoji, APISelectMenuOption } from 'discord-api-types/v10';
|
|
import {
|
|
defaultValidator,
|
|
emojiValidator,
|
|
labelValueDescriptionValidator,
|
|
validateRequiredSelectMenuOptionParameters,
|
|
} from '../Assertions.js';
|
|
|
|
/**
|
|
* A builder that creates API-compatible JSON data for string select menu options.
|
|
*/
|
|
export class StringSelectMenuOptionBuilder implements JSONEncodable<APISelectMenuOption> {
|
|
/**
|
|
* Creates a new string select menu option from API data.
|
|
*
|
|
* @param data - The API data to create this string select menu option with
|
|
* @example
|
|
* Creating a string select menu option from an API data object:
|
|
* ```ts
|
|
* const selectMenuOption = new SelectMenuOptionBuilder({
|
|
* label: 'catchy label',
|
|
* value: '1',
|
|
* });
|
|
* ```
|
|
* @example
|
|
* Creating a string select menu option using setters and API data:
|
|
* ```ts
|
|
* const selectMenuOption = new SelectMenuOptionBuilder({
|
|
* default: true,
|
|
* value: '1',
|
|
* })
|
|
* .setLabel('woah');
|
|
* ```
|
|
*/
|
|
public constructor(public data: Partial<APISelectMenuOption> = {}) {}
|
|
|
|
/**
|
|
* Sets the label for this option.
|
|
*
|
|
* @param label - The label to use
|
|
*/
|
|
public setLabel(label: string) {
|
|
this.data.label = labelValueDescriptionValidator.parse(label);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Sets the value for this option.
|
|
*
|
|
* @param value - The value to use
|
|
*/
|
|
public setValue(value: string) {
|
|
this.data.value = labelValueDescriptionValidator.parse(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Sets the description for this option.
|
|
*
|
|
* @param description - The description to use
|
|
*/
|
|
public setDescription(description: string) {
|
|
this.data.description = labelValueDescriptionValidator.parse(description);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Sets whether this option is selected by default.
|
|
*
|
|
* @param isDefault - Whether this option is selected by default
|
|
*/
|
|
public setDefault(isDefault = true) {
|
|
this.data.default = defaultValidator.parse(isDefault);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Sets the emoji to display for this option.
|
|
*
|
|
* @param emoji - The emoji to use
|
|
*/
|
|
public setEmoji(emoji: APIMessageComponentEmoji) {
|
|
this.data.emoji = emojiValidator.parse(emoji);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc BaseSelectMenuBuilder.toJSON}
|
|
*/
|
|
public toJSON(): APISelectMenuOption {
|
|
validateRequiredSelectMenuOptionParameters(this.data.label, this.data.value);
|
|
|
|
return {
|
|
...this.data,
|
|
} as APISelectMenuOption;
|
|
}
|
|
}
|