Creating a Custom Component Generator
You can use bit templates
to see the available templates for generating components, aspects and environments.
bit templates
The output will look something like this:
The following template(s) are available with the command bit create:
teambit.generator/generator component-generator (create your own component generator)
...
You can also create your own generator using the bit create
command followed by the name you want to give your generator. In this example we will use the name component-templates
with the namespace of generator
.
bit create component-generator generator/component-templates
#
Configuring your Generator's EnvironmentEdit your workspace.jsonc
file and set your generator component to use the teambit.harmony/aspect
.
"teambit.workspace/variants": { "{generator/*}": { "teambit.harmony/aspect": {} },}
To check if your generator component is using the correct env you can run bit envs
or bit show generator/component-templates
#
Registering your GeneratorEdit your workspace.jsonc
file and add the component id, (scope name / component name) to teambit.generator/generator
. You also need to register the template. This should go at root level. The component id can be found in the aspect.ts
file. In this example we are using company.scope
you may already have a default scope name configured and therefore this should be used here.
"teambit.generator/generator": { "aspects": ["company.scope/generator/component-templates"]},"company.scope/generator/component-templates": {}
This registers your generator component aspect so that your templates will appear in the CLI when you run bit templates
.
bit templates
The output should now look something like this:
The following template(s) are available with the command bit create:
teambit.generator/generator component-generator (create your own component generator)
...
company.scope/generator/component-templates component1 (description for component1) component2 (description for component2)
#
Modifying your GeneratorThe *.main.runtime.ts
file contains an array of templates that you can modify and add to to create different templates and numerous files to be generated. Make sure you also modify the name and description of these templates as this will be shown in the CLI when you run bit templates
.
generator.registerComponentTemplate([ { name: 'my-react', description: 'description for my react custom component', generateFiles: (context: ComponentContext) => { return [ // index file { relativePath: 'index.ts', isMain: true, content: `export { ${context.namePascalCase} } from './${context.name}';export type { ${context.namePascalCase}Props } from './${context.name}';` },
// component file { relativePath: `${context.name}.tsx`, content: `import React from 'react';` },
// docs file { relativePath: `${context.name}.docs.mdx`, content: `docs content goes here` },
// composition file { relativePath: `${context.name}.composition.tsx`, content: `composition content goes here` },
// test file { relativePath: `${context.name}.spec.tsx`, content: `test content goes here` } // add more files here such as css/sass ]; } },
// component 2 { name: 'component2', description: 'description for component2', generateFiles: (context: ComponentContext) => { return [ // index file { relativePath: 'index.ts', isMain: true, content: `add content here` } // add more files ]; } } // add more components]);
#
Compiling the GeneratorMake sure you run bit compile
after any changes to your generator.
bit compile
#
Using your GeneratorUse your generator to create the component files. In our example we used the name component1 as our template name. We can use then bit create component1
followed by the name of the component we want to create, for example a button component.
bit create my-react button
This will create your button component and all its files and content from your my-react template.
#
Advantages of Creating a GeneratorBit gives you some basic templates that you can use without having to create your own. However you may want to define specific labels or want to construct your documentation in a specific way or add a different testing library or perhaps add a css/sass file to each component. By creating your own templates it gives you the freedom to add what you want and how you want it. You can then export this generator as a component so that other members of your team can use it in other workspaces/projects and therefore everyone will be creating components just how you want them to.
#
Exporting your GeneratorTag and export your generator component so you can use it in any other workspace. If you haven't already done so then setup a remote scope on Bit.dev with the correct scope where you want your generator component to be exported to.
Make sure the scope name is set correctly in the *.aspect.ts
file before tagging and exporting.
export const MyComponentsAspect = Aspect.create({ id: 'company.scope/generator/component-templates'});
bit tag --all --message="my custom generator"bit export
Once you have tagged and exported the component you can add it to the workspace.jsonc
file in the workspace/project where you want to use this generator. Bit will automatically install this for your
"teambit.generator/generator": { "aspects": ["company.scope/generator/component-templates"]},"company.scope/generator/component-templates": {}
You can then run bit templates
to see your available templates and start creating your components with bit create
.