Sapphire - Imagine a Framework

SIA

Sapphire - Imagine a Framework

Welcome to the Ruby Discord server! Finally split off from the Sapphire bot.

Join

sapphire-support

discordjs-support

old-sapphire-support

old-discordjs-support

old-application-commands-and-interactions

refreshing all the application commands

how can i refresh every application command with sapphire? as in overwrite every single one when i launch the bot?

Global error listener

How would I make a listener that checks for any slash command error and returns a reply?
Solution:
```ts @ApplyOptions<Listener.Options>({ name: "CoreChatInputCommandError", event: "chatInputCommandError" })...

run other commands inside other commands

im trying to run the "fix" command inside the "register" command but i cant figure out how to. i typed out what im attempting to basically do inside the register command but it obviously doesn't exist.
No description

filtering custom id via name

was wondering if i could just filter via the name property instead of using the parse method
Solution:
you need to check for customId of interaction, I don't think there are the other way to do that
No description

Issue when following along the Listener guide page

I directly copied the exact code from the below guide page on Listeners. I don't know how to fix this and not sure what to do. https://www.sapphirejs.dev/docs/Guide/listeners/creating-your-own-listeners...
Solution:
run method is missing
No description

Property 'utilities' does not exist in type 'Container'

it's just my day of getting back to coding after about a year in corporate work and I've been scratching my head for hours now why it cannot utilize @sapphire/plugin-utilities-store on the types. I don't know if using bun caused this issue, or I may have forgotten something. I tried injecting db to the container, it works. I just don't know for utilities (and probably other internal injections by other native sapphire packages). Thanks....
Solution:
Did you check out the readme? It's pretty thorough. https://sapphirejs.dev/docs/Documentation/api-plugins/@sapphire/plugin-utilities-store/ If yes then please describe excarly what problem you're facing....

LazyPaginatedMessage explanation

So, I have 500k users in database and I use prisma. I want to make economy leaderboard with LazyPaginatedMessage but can’t understand how it works and there are no examples for it I wanted to kinda have method with currentPage parameter, and that will be used to fetch data everytime on page change, right? So I can use “skip” in prisma query...
Solution:
As opposed to regular Paginated message it will only execute the page render of the previous, current, and next page. The result is also cached.

MAYBE a bug with subcommands

/
Solution:
oh, going through src I figured that event's name must be PluginMessageSubcommandNoMatch

oauth guide

might be a pretty dumb question, however, is there any version of oauth guide that is just so plain, a mind like mine can comprehend? I just for some reason need an example to see how it should work, if there is any. Anything helps. Tried plugin-api's documentation but for some reason I can't make anything work.
Solution:
yes you're describing the basic principle of OAUTH2. Like I just said, it works in 1 and 1 way only.

What am I supposed to trust, the basic slash command registering? Or the Wiki's Commands section?

Stuff under Creating a basic slash command seems to be heavily outdated, it says the type is Command.Registry in some parts, but vscode is never actually auto completing to that. Instead it auto completes to ApplicationCommandRegistery type, and Awaitable stuff as the return of registerApplicationCommands, it started to be totally different approach here, then I saw fetchReply is also outdated, and the new one, which is withResponse is no where similar to be usable in isMessageInstance, is it ba...

disable specific commands from registering on startup

hi, so i'm not completely sure how to implement this, but i have a config with all the command names, with an option to enable or disable them. how would i go about actually implementing this so that it doesn't register the command on the registry at all if the command was set to disabled? thanks...
Solution:
This should be built into Sapphire :Thonk: just set enabled: false on the command options

Required Client Permission mismatch with role

One of my commands requires various authorizations and, among other things, Connect. So I pass this array ```js const RequiredBotPermissions = [ PermissionFlagsBits.Connect, PermissionFlagsBits.CreatePublicThreads,...

application commands

I used default guild ids but still getting global commands in console
Solution:
nvm fixeed

Can't see blue color in terminal

I copied the code from logger plugin and made some changes to add an "actor" property for my convenience. If I pick Pterodactyl as the actor, it should display in the console with a red color. If I pick Discord, it should have a blue color. Pterodactyl appears as red color just fine, but Discord doesn't seem to have any color at all. Here's the code: https://github.com/mallusrgreatv2/disactyl/blob/logger/src/lib/logger/LoggerLevel.ts#L60 I also added a console.log directly using blueBright() from colorette, and that seems to work fine....
Solution:
This problem isn't really related to Sapphire because this is 100% your code and your own plugin. Since you're essentially making your own logger plugin, even something like the console.whatever is in your own code: https://github.com/mallusrgreatv2/disactyl/blob/52e62d2f5d864bad409d63954cbb69a195999994/src/lib/logger/Logger.ts#L88. You'll have to fix this on your own since it's so very specific to your own desires for the logger. As for the location of the file, that's fine. It's pretty much free style, only it's recommended to not put it in root because that trips up GitHub's license detection....
No description

Plugin API

So Im willing to start doing a little experimentation with websites and calling the endpoints. Ill just be concise: Is Plugin API a thing thats supposed to expose endpoints you can call from your websites? Same goes to oauth, can it handle more than one oauth? Also can I create any endpoint or are there any limitations. Sorry, as much as I know sapphire well, I never played on the website league...
Solution:
yes, yes and yes

Command option - Array of users

Hi, i'm working on a slash command for my bot which will allow a user to create a loot-split for the group they're playing with. I need to be able to create an option (argument) for my command which will take multiple users, but I cannot see how. Is this possible? 🙂

Failed to overwrite global application commands: Command name is invalid

Hello! I am having an incredibly frustrating time adding a new slash command to my bot. The command is fairly straight forward however when I try to start the bot I get the error in the title. I cannot for the life of me seem to work out why it should throw this error and was hoping to find some helpful advice here! ```
unhinged@1.0.0 start node dist/index.js...
Solution:
I found the issue, its not only command names that need to be lowercase, its also argument names or option names too
No description

use wildcard paths on InteractionHandlerStore#registerPath

Hi, are we able use wildcard paths while registering a new path for a store? or is their away to do this without writing a helper for that for example:
this.stores.get('listeners').registerPath(join(this.rootData.root, './handlers/events')).registerPath(join(this.rootData.root, "./integrations/**/*"));
this.stores.get('listeners').registerPath(join(this.rootData.root, './handlers/events')).registerPath(join(this.rootData.root, "./integrations/**/*"));
...
Next