Created
April 28, 2022 20:38
-
-
Save erikunha/59df1673ac72da83ed81b8f246a24437 to your computer and use it in GitHub Desktop.
Nx reactfc generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { render } from '@testing-library/react'; | |
import { <%= className %> } from './<%= fileName %>'; | |
describe('<<%= className %>/>', () => { | |
it('should render successfully', () => { | |
const { baseElement } = render(<<%= className %> />); | |
expect(baseElement).toBeTruthy(); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Story, Meta } from '@storybook/react'; | |
import { <%= className %>, <%= className %>Props } from './<%= fileName %>'; | |
export default { | |
component: <%= className %>, | |
title: '<%= className %>', | |
} as Meta; | |
const Template: Story<<%= className %>Props> = (args) => <<%= className %> {...args} />; | |
export const Primary = Template.bind({}); | |
Primary.args = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from 'styled-components'; | |
export const <%= className %>Container = styled.div` | |
color: pink; | |
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { <%= className %>Container } from './<%= fileName %>.styled'; | |
/* eslint-disable-next-line */ | |
export interface <%= className %>Props {} | |
export const <%= className %> = (props: <%= className %>Props) => { | |
return ( | |
<<%= className %>Container> | |
<h1>Welcome to <%= className %>!</h1> | |
</<%= className %>Container> | |
); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
formatFiles, | |
generateFiles, | |
joinPathFragments, | |
Tree, | |
readProjectConfiguration, | |
names, | |
} from '@nrwl/devkit'; | |
interface ReactFCSchemaOptions { | |
name: string; | |
project: string; | |
path: string; | |
} | |
export default async function (tree: Tree, schema: ReactFCSchemaOptions) { | |
const projectConfig = readProjectConfiguration(tree, schema.project); | |
const namesFromSchema = names(schema.name); | |
generateFiles( | |
tree, | |
joinPathFragments(__dirname, './templates'), | |
`${projectConfig.root}/${schema.path}/${namesFromSchema.fileName}`, | |
{ | |
tmpl: '', | |
...namesFromSchema, | |
}, | |
); | |
await formatFiles(tree); | |
} | |
// TODO: Add docs to the geberators section on README.md file | |
// npx nx workspace-generator reactfc --name=NewComponent --project=checkout --path=/components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export * from './<%= fileName %>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment