Hello everyone!
(sorry for messy formatting, on my phone)
So we are working as a small team (5 people (1 designer, 3-4 developers)) on a big product for a national company that targets consumers via this SaaS service.
I am leading the product design and have organized everything in big atomic design projects. Do we have 1 file for all atoms, 1 for all molecules etc. We then publish all those components in libraries, that the bigger files use. It’s quite convenient but are lacking a few things I’d like to work around better:
Upsides:
- Structure is easy to maintain, as each file has pages with each part for the system. Pages are named as context requires, so for example a search and filter bar might have that exact name in organisms, and possibly in molecules too. When you go to the main component, you almost always travel down to the next file.
I set it up like this to make it more readable with less noise, while reducing the amount of files in the project (total 5 files: atoms, molecules, organisms, templates, pages/flows
- Scaling up changes across many different templates is easy as the team library contain all components that are used.
Downsides:
-
Search isn’t optimal when finding components (as in frontend specific components) as they are buried in the files and can appear in separate places depending on how frontend want to implement them.
-
The file size in the small parts is quite big and performance is degrading the more work we do.
-
It’s not very efficient when updating a template, as you potentially have to start I atoms, and work your way up so matter what you want to change or update.
——
So my question is, how would you organize it? I’m thinking more files is a better way to go, but there are also many different components nested in multiple places (like buttons, specific components used for this particular project etc)
I want the system to be more approachable by the team, easier to navigate and understand, and lend itself to cocreation better. While we only have 1 designer on the team, the rest of the team won’t have hours of time where they find the opportunity to dice into everything, but I still want the whole idea of visiting and contributing the system easier and friendlier.
Thanks 🙂