Transform custom id of components into http routes
You can use a feature from this base named Custom Id Params to reply to any component or modal dynamically, see:
First let's create a user context command:
Note that the customId of all buttons is similar, they both follow a pattern. They are similar to API http routes.
With this we can create a Responder that expects any button component that follows this pattern in the customId.
It must start with manage/user and then it must have one more two segments separated by /, where the first will be the user id and the second will be an action.
Then we can define this pattern and any button where the customId follows it will be responded to by the defined function. You can get the parameters in the function's second argument.
You can use this feature with any type of Responder, but don't forget that discord has a 100 character limit on customIds.