-
http://fulcro.fulcrologic.com/vsom-next.html
> Other Features
Fulcro attempts to include solutions for most of the common problems that business webapps are trying to solve: testing, i18n, and adv…
-
Hi,
````
lein new fulcro my-project # say yes for demo
cd my-project
# add :pseudo-names true :pretty-print true compiler options
lein uberjar
java -jar target/my_project.jar
open http://localh…
vixns updated
6 years ago
-
Below is the minimal case, based off of the shadow-cljs template.
https://github.com/levitanong/load-ok-repro
Relevant bits are in `client.cljs`, specifically line 22 and below.
-
A lot of the projects (and templates) include circle CI stuff in version 1 format, which they are discontinuing.
awkay updated
6 years ago
-
```clj
;; initial app-state
{...
:app/things []
}
;; after a load error
{...
:app/things {:ui/fetch-state {...}}
}
;; this messes things up because app/things is a join against an ide…
-
The factories in Fulcro require some internal bindings to work properly, which get lost when using
the function-as-a-child react pattern. We need a macro that sets up the bindings for these nested ch…
awkay updated
6 years ago
-
See https://github.com/fulcrologic/fulcro/issues/118 for code.
If you follow the instructions you should get a working app.
Run the client and server and open fulcro inspect.
Click the button…
-
It was suggested that we add an assertion to the dom rendering functions to give an error when `#js` is forgotten. That seemed reasonable, but I've always wondered if the `#js` requirement was worth t…
awkay updated
6 years ago
-
I'm looking at the B_UI_Exercises.cljs devcards and getting the following warnings:
![screen shot 2018-02-06 at 11 19 37 pm](https://user-images.githubusercontent.com/217094/35903494-44dfa692-0b94-…
-
I've found one major and one minor issue when working with forms.
Here's steps to reproduce:
1. Create a new fulcro project using `lein new fulcro`.
2. Open project.clj and change fulcro vers…