Fork me on GitHub
#fulcro
<
2024-02-05
>
markgdawson18:02:13

I'm curious if people tend to use nubank/workspaces? Or is there a better way to build up components/interfaces. I'm just starting building real apps in fulcro and trying to get a feel for an effective workflow. I'm planning a datomic/pathom backend. Any workflow tips would be welcome! Do people use devcards/workspaces, or build in-place merging sample data into the client DB? Does anyone have a workflow they feel is particularly quick/effective for building up interfaces? For now I'm using fulcro without the RAD library, while I get used to it.

Jakub Holý (HolyJak)20:02:31

My applications are sufficiently complex to warrant UI tests, so I just try things with mock data as I develop them. However, if I had a component with multiple state or such. I’d certainly look into workspaces.

markgdawson20:02:08

Thanks @U0522TWDA! So do you make use of merge-component to get data into the client DB? Or do you tend to just work on the whole application all at once and not bother with building component-by-component?

Jakub Holý (HolyJak)20:02:41

It depends 🙂 Mostly, I did what fulcro-rad-demo does and insert some data into the DB and use that.

🙂 1