Let users override the default generator templates from their own code.
/cc @Burnsy
So after having a quick conversation with rob, about how I was feeling that I felt like I was going faster by using the generators but then I was slowed down because I needed to customize the generators to fit the layout, customized table css etc.
Then I remembered the concept in gatsby called shadowing.
How I think shadowing the generators could work;
I think it could work quite well as the customization would truly allow you to speed up as the layout would completely match what you need them for without having too much customization.
Also, Could you want to have multiple frontend generator files? 1 for login 2 for dashboard etc.
It'd be cool if it was possible to yarn add community generators.
At work, for example, in our React app, for every page (FooPage.tsx) we have a sass-file (FooPage.scss). It'd be really useful to be able to write a generator package that when generating a new page also generated an empty sass file and added the corresponding import to *Page.tsx. This generator package would then be published to our org on npm and easily installed in all of our (hypothetical) RW projects.
Most helpful comment
So after having a quick conversation with rob, about how I was feeling that I felt like I was going faster by using the generators but then I was slowed down because I needed to customize the generators to fit the layout, customized table css etc.
Then I remembered the concept in gatsby called shadowing.
How I think shadowing the generators could work;
I think it could work quite well as the customization would truly allow you to speed up as the layout would completely match what you need them for without having too much customization.
Also, Could you want to have multiple frontend generator files? 1 for login 2 for dashboard etc.