fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
tony.kay 2020-12-29T00:07:32.372800Z

Yes @jatkin, that’s about the idea. This is a case where the ui tree can vary slightly in shape from the query (them matching exactly is a simplification for new user understanding)

JAtkins 2020-12-29T00:09:25.373200Z

Cool, that works.

tony.kay 2020-12-29T00:10:09.373400Z

you also have access to comp/children, so you can get the notation of:

(ui-wrapper-whatever sub-wrapper
  (ui-some-component child))

tony.kay 2020-12-29T00:10:44.373900Z

non-computed factories send extra things as children

tony.kay 2020-12-29T00:12:54.374300Z

https://book.fulcrologic.com/#_children

tony.kay 2020-12-29T01:07:45.374500Z

Right, it is a little bit of a misnomer, but it is really hard to come up with good names. The vast majority of components you write in Fulcro will have queries, and therefore state in the database. Technically pre-hooks such components always have access to component-local state, so you can say that the name is actually completely accurate for the time period in which it was named. If you don’t need any kind of state, then what you want is a function. However, now that hooks are here it is possible you might want to define a component that is just a function (presumably for side effects), and while there is usually some kind of state involved it is technically possible to make a thing that has no concept of state…but using defsc for hooks also implies that you are going to use a query for that case…otherwise why not just write a function?

tony.kay 2020-12-29T01:10:38.375200Z

Has anyone tried the new guardrails async mode? If so, did you notice a runtime dev speed improvement?

tony.kay 2020-12-29T01:10:50.375500Z

(only helps clj, unfortunately)

Jakub Holý 2020-12-29T15:03:30.382Z

I would very much appreciate if you could provide your feedback on https://github.com/holyjak/blog.jakubholy.net/blob/master/content/asc/posts/2021/fulcro-divergent-ui-data.asc, which talks about: > Fulcro’s stateful components serve normally both as elements of the UI and to define the data model, i.e. data entities with their unique IDs and attributes. And that is what you want 95% of the time. But what if your UI and data model needs diverge? > We will take a look at what different kinds of divergence between the UI and data entities you might encounter and how to solve them. I am primarily interested in: 1. Is everything correct? 2. Have i forgotten some cases? 3. Any [better] examples / code samples to add? 4. Is it understandable to people "new" to Fulcro? 🙏

Tyler Nisonoff 2020-12-29T15:33:22.382400Z

This is wonderful!

Tyler Nisonoff 2020-12-29T15:36:27.382600Z

One thought: I think I would have groked it slightly quicker if the query / idents for PersonView / PersonDetails were shown in “A Data-only component” and similarly PersonIdentification in the last section — you implied that PersonIdentification queries for person/name person/email in the explanation after, but would be nice to see that in the queries of the components But also want to emphasize that I think its is a great blog post 🙂

👍 1
tony.kay 2020-12-29T15:36:43.382800Z

I’m adding comments via https://web.hypothes.is/ @holyjak

❤️ 1
Jakub Holý 2020-12-29T15:39:42.383400Z

I have never heard about ☝️. I suppose you will share a link to your comments eventually, or how does it work?

tony.kay 2020-12-29T15:40:51.383600Z

I made the comments public. You install the extension and just go to the page.

tony.kay 2020-12-29T15:41:23.383800Z

it’s super handy for giving feedback about arbitrary web content

Jakub Holý 2020-12-29T15:43:21.384200Z

Awesome, thanks!

tvaughan 2020-12-29T15:59:09.385Z

> Have i forgotten some cases? Let's say you have two data-only components that only differ in their query namespaces, e.g. pdf/name and pdf/size versus png/name and png/size, and you want to render these the same, e.g. (div (h2 name) (h4 size)). Comments about the naming convention aside, would this fit?

Jakub Holý 2020-12-29T16:24:07.386Z

@tvaughan Thanks! Perhaps. Could you elaborate more the problem you have encountered? Why data-only components in this case? And are you looking at how to avoid having to manually defsc for each of the file types or what? Thanks!

tvaughan 2020-12-29T16:32:23.386200Z

I was thinking of abstracting away the body of the defsc, i.e. have each defsc call a shared function that returns (div (h2 name) (h4 size)). Would this be the right approach, or is there an alternative I haven't thought of?

tony.kay 2020-12-29T18:05:52.387200Z

@tvaughan Yes of course. It’s all just function calls anyway. If there’s a common layout/formatting concern there is no problem at all putting that in a function, or even a component without query if you want shouldComponentUpdate optimizations.

tvaughan 2020-12-29T18:06:22.387400Z

Good to know. Thanks @tony.kay

Jakub Holý 2020-12-29T21:14:25.387600Z

Tony: I have stolen your m/returning auth/Session example 🙂 https://github.com/holyjak/blog.jakubholy.net/commit/e6991515c57f2d44f2ae5aff90c4a4cbd6e3b039

genekim 2020-12-29T21:47:11.392900Z

Really great article, @holyjak —  Last night, I finally watched the 5+ remaining hours of @tony.kay Fulcro 3 videos at 1.25x speed, with the hopes of the big picture sinking in via osmosis. :). I went to sleep exhausted, but hopeful that clarity will eventually emerge later this week. 😁. (Eager to sit down in front of IDE and see if I can actually build something using what I've learned!) @holyjak — I love the work you're doing helping describe the critical Fulcro concepts!

❤️ 1
tony.kay 2020-12-29T22:00:04.393Z

that’s fine 🙂

Michael W 2020-12-29T22:32:46.393500Z

Towards the beginning when you talk about defining the data entity, could you expand on static ident and dynamic ident, what they are, what they do, and possibly when it's appropriate to use them?

Michael W 2020-12-29T22:37:14.393700Z

That's the only thing I was confused about in the entire article, thanks for the excellent content.

phronmophobic 2020-12-29T22:51:07.396900Z

Achievement Unlocked! I made a simple todo app for desktop and terminal using fulcro. It's not going to win any awards, but I think it's a good start. The code is available https://github.com/phronmophobic/membrane-fulcro. Thanks for everyone's help, especially @tony.kay! It's still a little rough around the edges, but if anyone is interested in trying, feel free to ping me and I'm happy to answer any questions.

👏 1
🤯 3
🎉 3
Jakub Holý 2020-12-30T09:07:10.411900Z

I would like to add it to Awesome Fulcro if you are OK with it, see https://github.com/holyjak/awesome-fulcro/pull/4/files

phronmophobic 2020-12-30T19:24:50.431300Z

Absolutely!

phronmophobic 2020-12-30T19:26:18.431500Z

you may have to update the tag line: > the most awesome webapp framework the Earth has ever seen. fulcro can do more than make web apps 😉!

😻 1
phronmophobic 2020-12-29T22:52:24.398400Z

phronmophobic 2020-12-29T22:52:30.398700Z

❤️ 5
Jakub Holý 2020-12-29T23:08:35.399Z

Hi, thanks! What I call a dynamic ident is one based on the props so (fn [] [:person/id (:person/id props)]) or, in the template form, simply :person/id

tony.kay 2020-12-29T23:12:53.401200Z

I absolutely love the terminal version. I cut my coding teeth in C w/Curses in HP-UX and Solaris in the late 80's/early 90's. Played a ton of nethack in the wee hours, and while it seems a bit silly to use a terminal for UI these days, I still love it.

❤️ 1
phronmophobic 2020-12-29T23:15:29.401400Z

At some point, I'd like to implement something like this, https://github.com/sindresorhus/terminal-image, for membrane even though it's completely impractical. Also, I only learned recently that terminal actually supports mouse input.

tony.kay 2020-12-29T23:18:58.401800Z

long gone are the days of the single-color cyan terminal running at 19200 baud (via local wires)

tony.kay 2020-12-29T23:22:10.402Z

1
tony.kay 2020-12-29T23:22:15.402400Z

oh yeah

Michael W 2020-12-29T23:26:09.402700Z

gotta love the null modem cable

tony.kay 2020-12-29T23:46:27.402900Z

complete digression, at one point I wrote an ncurses implementation of mine sweeper. The recursive clearing algorithm that opens up the board when you click where there are no mines is kind of fun to write, and if you set your terminal to 1200 baud with stty you could watch it move the cursor around and change the text. Modern terminals ignore the device setting, so not as much fun.

tony.kay 2020-12-29T23:46:51.403100Z

you have to resort to manual “sleep” calls

😁 1