|
|
|
|
|
by reificator
2642 days ago
|
|
> If you have an use case A, create a handle_a flag. If you have a use case B create handle_b flag even if they do exactly the same thing as more than likely they do exactly the same thing only for now. A hard lesson to learn, and a hard rule to push for with others who have not yet learned. Imagine what our species could do if experience were directly and easily transferable... |
|
Same goes for functions, classes, React components, DB tables and everything else.
Just model it as close as possible to the real world. The world doesn't really change that often. What does is how we interpret and behave within it (logic/behaviour/appearance on top).
If you have a Label and Subheader in your app, create separate components for them. It doesn't matter that they look exactly the same now. Those are two separate things and I guarantee you more likely than not at some point they will differ.
My rule of thumb is: If it's something I can somehow name as an entity (especially in product and not tech talk) it deserves to be its own entity.