Replies: 2 comments
-
Thank you so much for this feature suggestion, this is awesome and I believe that we need to implement it! |
Beta Was this translation helpful? Give feedback.
0 replies
-
It is now implemented and eased the frame development very much! Thanks for the suggestion! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Current Situation
Currently, the Frog.image Context only exposes
req
,res
, andvar
objects. It does not receive other data such aspreviousState
orframeData
that theFrog.frame
Context
object receives.Problem
This limitation means for image generation, developers need to:
image
route via URL parametersThese steps are often redundant, as the necessary operations have typically already been performed in the corresponding
frame
handler.Proposed Solution
Expose the same data in the
Frog.image
Context that is available in theFrog.frame
Context. Specifically, include:previousState
frameData
Frog.frame
Beta Was this translation helpful? Give feedback.
All reactions