summaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/structures/GuildOnboardingPrompt.js
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-09-02 19:12:47 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-09-02 19:12:47 -0400
commite4450c8417624b71d779cb4f41692538f9165e10 (patch)
treeb70826542223ecdf8a7a259f61b0a1abb8a217d8 /node_modules/discord.js/src/structures/GuildOnboardingPrompt.js
downloadsowbot3-e4450c8417624b71d779cb4f41692538f9165e10.tar.gz
sowbot3-e4450c8417624b71d779cb4f41692538f9165e10.tar.bz2
sowbot3-e4450c8417624b71d779cb4f41692538f9165e10.zip
first commit
Diffstat (limited to 'node_modules/discord.js/src/structures/GuildOnboardingPrompt.js')
-rw-r--r--node_modules/discord.js/src/structures/GuildOnboardingPrompt.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/node_modules/discord.js/src/structures/GuildOnboardingPrompt.js b/node_modules/discord.js/src/structures/GuildOnboardingPrompt.js
new file mode 100644
index 0000000..4de3f5d
--- /dev/null
+++ b/node_modules/discord.js/src/structures/GuildOnboardingPrompt.js
@@ -0,0 +1,78 @@
+'use strict';
+
+const { Collection } = require('@discordjs/collection');
+const Base = require('./Base');
+const { GuildOnboardingPromptOption } = require('./GuildOnboardingPromptOption');
+
+/**
+ * Represents the data of a prompt of a guilds onboarding.
+ * @extends {Base}
+ */
+class GuildOnboardingPrompt extends Base {
+ constructor(client, data, guildId) {
+ super(client);
+
+ /**
+ * The id of the guild this onboarding prompt is from
+ * @type {Snowflake}
+ */
+ this.guildId = guildId;
+
+ /**
+ * The id of the prompt
+ * @type {Snowflake}
+ */
+ this.id = data.id;
+
+ /**
+ * The options available within the prompt
+ * @type {Collection<Snowflake, GuildOnboardingPromptOption>}
+ */
+ this.options = data.options.reduce(
+ (options, option) => options.set(option.id, new GuildOnboardingPromptOption(client, option, guildId)),
+ new Collection(),
+ );
+
+ /**
+ * The title of the prompt
+ * @type {string}
+ */
+ this.title = data.title;
+
+ /**
+ * Whether users are limited to selecting one option for the prompt
+ * @type {boolean}
+ */
+ this.singleSelect = data.single_select;
+
+ /**
+ * Whether the prompt is required before a user completes the onboarding flow
+ * @type {boolean}
+ */
+ this.required = data.required;
+
+ /**
+ * Whether the prompt is present in the onboarding flow.
+ * If `false`, the prompt will only appear in the Channels & Roles tab
+ * @type {boolean}
+ */
+ this.inOnboarding = data.in_onboarding;
+
+ /**
+ * The type of the prompt
+ * @type {GuildOnboardingPromptType}
+ */
+ this.type = data.type;
+ }
+
+ /**
+ * The guild this onboarding prompt is from
+ * @type {Guild}
+ * @readonly
+ */
+ get guild() {
+ return this.client.guilds.cache.get(this.guildId);
+ }
+}
+
+exports.GuildOnboardingPrompt = GuildOnboardingPrompt;