Daniel Skarda
Daniel Skarda
I would like to clarify (and maybe enhance) formatting of simple functions. According to current standard, following example is bad ``` clojure (defn foobar [x] (-> x foo bar baz))...
Default austin repl page did not support custom scripts and html. The patch adds two new options, so you can write: ``` clojure (austin-exec :inject-html "Hello, world!" :inject-scripts ["resources/js/my-favourite-lib/src/foobar.js"]) ```...
Example code: ``` (ns foo.bar (:require [goog])) (js/console.log (goog/Uri. js/window.location.href)) ``` When you change foo.bar namespace, figwheel triggers reloading of foo.bar. Reload also refreshes `goog` namespace which has been already...
The patch changes `form/handle-user-ui-props` - use merge/merge-component to normalize data - takes subforms into account Closes #84.
There are two ways how form initializes user ui props: - during form creation in function `form/default-state` - after successful load in `:event/loaded` handler using function `form/handle-user-ui-props` The first case...
New bug was introduced by changes in reload logic in 1.0.4 (I guess in 5485e25bfa6c44cdf0e9d7cb106584915cec0616). The problem is: 1) cljsbuild once starts 2) cljsbuild.compiler/reload-clojure hungrily loads all (!) .clj files...
When adding validation to subform's attributes I found strange behaviors: - I was able to save forms with invalid subforms (fulcro-rad-demo) - After clicking Save nothing happened, because backend db...
I experimented with "cascading entity pickers". Chosing one picker value loads other picker options, like Invoice line items in Fulcro RAD demo. In demo changing category (eg Toys), calls `picker-options/load-options!`...
During implementation of recursive insert in #28 I found several edge cases in dired-subtree-previous/next-sibling, which does not work as expected. These issues also make dired-subtree-with-subtree unusable. - empty directories. Expanding...