Fork me on GitHub
#fulcro
<
2017-12-07
>
thheller00:12:13

:mutation-merge did what I needed for now 😉

tony.kay00:12:36

@thheller 2.0 also has mutation joins. It’s in the new dev guide

tony.kay00:12:49

Fulcro guarantees reads follow writes, so you can do a mutation and read…the new merge join gets to access to the normalization story easily

cjmurphy02:12:09

[(gs/> :.table-header "div") {:font-weight  "normal"
                              :text-align   "left"
                              :padding      "5px 4px"
                              :border-right border}
 [:&.flex {:flex 1}]
 [(gs/& gs/last-child) {:border-right "0"}]]

cjmurphy02:12:28

@wilkerlucio Thanks. Your explanations from yesterday spot on for me. I see that :&.flex can be broken down so that :&. means "if the previous selector (always contained within a vector in garden) has the class (that's what the dot is for)". And the previous selector is: 'all the div tags that are directly under any tag that has the class table-header'. And (gs/& gs/last-child) is using garden combinators as that's the only way to have two conditions AND-ed together. Effectively the last div element directly under a .table-header gets a right border of size 0.

wilkerlucio02:12:54

exactly, happy to hear you got that cleared 🙂

tony.kay03:12:38

Fulcro 2.0.0-beta5 on clojars. Devguide updates complete, and a few defsc tweaks

tony.kay03:12:16

I renamed the server interaction chapters, so if anyone sees broken links please let me know (or PR a fix 🙂 )

tony.kay03:12:16

Fulcro-spec 2.0.0-beta3 also uploaded

tony.kay06:12:31

New lein template on clojars: lein new fulcro app or lein new fulcro app v1…former generates 2.0 app, latter 1.x

tony.kay19:12:25

TodoMVC updated. I rewrote some bits of it that weren’t very clean. It’s a better app now I think. The mutations are much more clear

tony.kay21:12:59

Websockets Demo update to 2.x

tony.kay22:12:09

fulcro-sql 0.3.0 released. Fixed documentation errors on readme, adn removed dep on Om Next

tony.kay22:12:06

Fulcro-css 2.0.0-beta1 released…I forgot to run the tests….so a beta2 might follow it 🙂

tony.kay22:12:42

all tests pass. This removes the Om Next dependency from it

tony.kay22:12:55

YouTube videos are next on my list…finally! Release details always take soooo long, esp documentation