-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
They way voxa handles different types of request is really confusing! #246
Comments
I don't like it, that would include state machine concepts (States) in request types that in reality are not part of the state machine execution, we never transition between states in AudioPlayer events or similar, in fact we couldn't even if we wanted cause those request types are out of session. If |
But i do like the idea of having something like "onRequest" which just handles whatever request type we throw at it |
Is the state machine concept strictly bound to being in a session? I recently worked on a skill using the audio player, and I wanted to handle the PlaybackController request when a user resume the audio using the touch screen controls on a echo show/spot. I couldn't reuse the code I user for the |
I think is more related to the way voxa handles a state machine intent request. it could be troublesome to manage those intents that don't return a speech or session attributes. At least we agreed on something we should have a handler perhaps named |
you could do something like function genericHandler(event, reply) {
// do something
}
app.onAudioPlayerSomething(genericHandler)
app.onAudioPlayerSomethingElse(genericHandler) I do think it's a great point that the directives should work on this handlers, at least the ones that make sense |
I like the idea of the voxaApp.onRequest('PlaybackController.NextCommandIssued', (voxaEvent) => {
// CODE
}); Though we should think more about the way to return the object, as most of them are not part of the state machine cycle |
Currently we handle different types of AlexaRequest.
but in order to use it, you need to know which are marked as
on${whateverRequestType}
or be treat as an intent likeCanFulFillIntentRequest
.My proposal to fix this issue is to treat all the other request as
onStates
except(OnrequestStarted, OnsessionEvents, etc. - lifecycle events). This change will alsofixes #242
Because there won't be a need to manually include new event request types. It doesn't matter the event, Voxa will just work!.
Thoughts? If you like my proposal give a thumbs up or down! You can also propose a new approach!
The text was updated successfully, but these errors were encountered: