Skip to content

Instantly share code, notes, and snippets.

@erikunha
Created April 28, 2022 20:38
Show Gist options
  • Save erikunha/59df1673ac72da83ed81b8f246a24437 to your computer and use it in GitHub Desktop.
Save erikunha/59df1673ac72da83ed81b8f246a24437 to your computer and use it in GitHub Desktop.
Nx reactfc generator
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();
});
});
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 = {};
import styled from 'styled-components';
export const <%= className %>Container = styled.div`
color: pink;
`;
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>
);
};
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
export * from './<%= fileName %>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment