datasette / datasette-enrichments

Tools for running enrichments against data stored in Datasette
https://enrichments.datasette.io
Apache License 2.0
19 stars 0 forks source link

Preview mechanism #8

Open simonw opened 11 months ago

simonw commented 11 months ago

Some enrichments should offer a preview, where they simulate the effect of the enrichment against the first 100 columns and display the results without making any changes.

This could work using database transactions that get rolled back rather than committed, or it could use some custom mechanism for each enrichment.

Not sure the best way to abstract this - maybe it's to let each enrichment that offers a preview also bundle a preview template that gets included in the page when you click the "Preview" submit button (which only shows if the enrichment supports previews).