reveal

Docs: https://vlaaad.github.io/reveal/ Source: https://github.com/vlaaad/reveal
vlaaad 2020-08-01T21:44:33.161600Z

I released 0.1.0-ea26, you might experience some breakage: • removed old -main entry points: vlaaad.reveal.repl/-main and vlaaad.reveal.prepl/-main : use vlaaad.reveal/-main entry point • changed arg parsing in vlaaad.reveal/-main to match new clj release candidate arg parsing (i.e. it's just edn/read-string). This might affect you if you use remote prepl with host specified. Previously it could be specified as 127.0.0.1 , now it has to be quoted as string: "127.0.0.1" • renamed prepl to io-prepl to match clojure.core.server prepl naming

seancorfield 2020-08-01T23:47:09.164200Z

@vlaaad I'm playing with Reveal properly for the first time and I'm a bit confused about how the datafy/nav support is supposed to work. If I use next.jdbc to produce a result set, each of those rows are datafiable and, when datafied, they are navigable. However, it seems like I have to explicitly call (clojure.datafy/datafy *v) on a value to get Reveal to offer the nav option, and I've not be able to access this from a table view.

seancorfield 2020-08-01T23:55:58.164800Z

Ah, maybe datafy/nav is only supported from the data view, not the table view?