i'm using this function and need to pass it an Aeson Value
:
{ logLevel : vega.Debug }
this is supposed to refer to an enum in a javascript package that the binding doesn't export.
afaict i'm supposed to use Data.Aeson.QQ.Simple
for this, but everything i try that compiles puts quotes around "vega.Debug"
, which i can't have.
[aesonQQ| { logLevel : "vega.Debug" } |]
what am i missing? is there a way to use encode for this?
In general, Aeson
Value
s represent JSON objects only, so they don’t support embedded JavaScript expressions, or any other extensions.If this API only accepts
Value
s, you’re stuck. I think the best solution is to just duplicate the integer value ofvega.Debug
and serialise that.Otherwise, a straightforward solution is to make a modified version of
toHtmlWith
that accepts a more flexible input type, such as a string:Then you can call
encodeToLazyText
on your own Aeson values, or include arbitraryText
strings as needed.If you really want to avoid duplicating the page contents, then you could also call the existing
toHtmlWith
with aValue
containing a special delimiter that you control, such asString "<user1441998>vega.Debug</user1441998>"
, and then use that delimiter to postprocess the result:As yet another hack, you could make a
ToJSON
instance for your type that implementstoEncoding
but nottoJSON
, and have the encoded value be a JavaScript expression (i.e. invalid JSON). You would want to maketoJSON
raise an error so you don’t use it inadvertently.If you want to generate JavaScript code in general, I would have a look at
language-javascript
. Instead of producing aValue
, produce aJSExpression
and then use one of the pretty-printing functions likerenderToText
to render it. Here’s a sketch of the structure of a possible solution:Your expression would have the form:
The
JSAnnot
type would also allow you to include comments in the generated result. Bear in mind that thelanguage-javascript
pretty-printing is likely less well optimised than Aeson’s JSON serialisation.