Roshan Manuel

Results 38 comments of Roshan Manuel

For the display component aspect of this, I was wondering if we could strongly type the field mappings in blitz.config.ts ``` import {LabeledTextField} from "app/core/components/LabeledTextField" fieldComponents: { string: { name:...

Progress update 09/03/2021: Working on `support // template: ... in addition to /* template: ... */` Currently in generator.ts, we have a single `fieldTemplateRegExp`. My current solution is create a...

Today's progress update: Working on making the base Generator class define the `getTemplateValues` by unmarking it as an abstract function. Next steps were to identify the template values that are...

Progress update 09/12: When creating the object returned by `getTemplateValues` we rely on the options being passed in containing properties such as `extraArgs` and so on. Will need to add...

Progress update 09/13: Abstraction of `getTemplateValues` is complete. The base Generator class has a default implementation that children can override. Initially, these problems were present - One generator (model generator)...

Progress update 09/14/2020: Didn't have as much time to work on this today, but I haven't found the best solution for populating the `process.env.BLITZ_APP_DIR` variable before calling the `loadConfigAtRuntime` Doing...

Progress update 09/15/2021: Added the template to component map support in biltz.config.ts. This required updating the `NextConfig` type in the `nextjs\packages\next\server\config-shared.ts` file. The issue is whether this should be nested...

Need to rewrite the form-generator test. It runs locally but fails during CI, I'm assuming because the builder that gets the configuration uses `await loadConfigAtRuntime()` which doesn't work in CI,...

OK, the fix for issue https://github.com/blitz-js/legacy-framework/issues/302 should resolve the tasks regarding BLITZ_APP_DIR for this PR. Once that is closed, I can check them off here. 09/23: We pushed out a...

Thanks haha! Just noticed one of the CI failing tests was one I wrote, let me fix that. I noticed the failing Windows one but I think that test is...