I'm interesting in creating a widget in Yesod with the following properties:
- By default, it renders simply as some text "Title"
- When moused-over, a small link "Edit this" appears on the upper-right corner
- If the user clicks on the link or mouses over it, the text is replaced with a text field/area with the text in it, for editing
- When the user presses ENTER, a REST request is made to the server to update the value; when the update is confirmed the form disappears and updated text is now present in the document
To a large degree, this is a strictly JS job which is mostly out of scope for Yesod. However, there is one important point: we'd like the form itself should be generated by Yesod using yesod-forms, and not wired up manually. But the situation here is a bit strange: normally forms are static, but here the form needs to be different depending on what the data is, and Yesod might need to ship a new form to the user after the REST update. Can Yesod do this? Additionally, what is the story, as far as validation is concerned?
yesod-formspackage by rendering the form to JSON and parsing a JSON result as the form result, but that adapter does afaik still have to be written. It'd probably be easier to just make a specialized AJAX adapter. – dflemstr Oct 29 '12 at 7:11