Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 1330105

Browse files
feat: wizard to generate pages in newly created projects
The wizard produced in a generator project now can prompt developers through the process of creating new pages Fixes #16
1 parent 679910b commit 1330105

File tree

7 files changed

+110
-18
lines changed

7 files changed

+110
-18
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@
105105
],
106106
"coverageThreshold": {
107107
"global": {
108-
"branches": 0,
109-
"functions": 20,
110-
"lines": 9,
111-
"statements": 9.2
108+
"branches": 1.5,
109+
"functions": 22.5,
110+
"lines": 11,
111+
"statements": 11
112112
}
113113
},
114114
"testPathIgnorePatterns": [

templates/default/config/plop/plopfiles/default.js

+46-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
module.exports = plop => {
22
const templates = '../templates'
3+
4+
// Looks for '/' in the path and returns
5+
// relative ../ of the same number
6+
plop.addHelper('relativeSegments', (path) => {
7+
const count = (path.match(/\//g) || []).length
8+
const relPath = new Array(count).fill('../', 0, count).join('')
9+
// eslint-disable-next-line no-console
10+
console.debug(`${count} segments found in path`)
11+
// eslint-disable-next-line no-console
12+
console.debug(`prefixing with ${relPath}`)
13+
return relPath
14+
})
15+
316
plop.setGenerator('component', {
417
description: 'Create a component',
518
// User input prompts provided as arguments to the template
@@ -46,7 +59,38 @@ module.exports = plop => {
4659
type: 'add',
4760
path: 'src/components/{{atomicType}}s/{{properCase componentName}}/{{properCase componentName}}.test.jsx',
4861
templateFile: `${templates}/components/{{atomicType}}/{{properCase atomicType}}.test.jsx.hbs`,
49-
},
62+
}
5063
],
5164
});
52-
};
65+
plop.setGenerator('page', {
66+
description: 'Create a new page',
67+
prompts: [
68+
{
69+
type: 'input',
70+
name: 'pageName',
71+
message: 'SEO-friendly page title? (do not include app name)',
72+
placeholder: 'My Example Page'
73+
},
74+
{
75+
type: 'input',
76+
name: 'pagePath',
77+
message: 'URL to page? (Start from the first slash and leave off http://example.com and index.html)',
78+
placeholder: 'example/my-example-page'
79+
}
80+
],
81+
actions: [
82+
// Add the page template
83+
{
84+
type: 'add',
85+
path: 'src/pages/{{lowerCase pagePath}}/index.jsx',
86+
templateFile: `${templates}/pages/index.jsx.hbs`,
87+
},
88+
// Add the unit test file
89+
{
90+
type: 'add',
91+
path: 'src/__tests__/pages/{{lowerCase pagePath}}/index.test.jsx',
92+
templateFile: `${templates}/pages/index.test.jsx.hbs`,
93+
}
94+
]
95+
})
96+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import config from './default'
2+
3+
const mockPlop = {}
4+
const mockHelpers = {}
5+
mockPlop.setGenerator = jest.fn()
6+
mockPlop.addHelper = jest.fn((name, fn) => {
7+
mockHelpers[name] = fn
8+
})
9+
10+
describe('plopfile:default', () => {
11+
afterEach(() => {
12+
mockPlop.setGenerator.mockClear()
13+
mockPlop.addHelper.mockClear()
14+
});
15+
it('provides the default plop configuration', () => {
16+
config(mockPlop)
17+
expect(mockPlop.setGenerator.mock.calls.length).toEqual(2)
18+
expect(mockPlop.setGenerator.mock.calls[0]).toMatchSnapshot()
19+
})
20+
describe('helpers.relativeSegments()', () => {
21+
it('generates a relative path with depth matching provided depth', () => {
22+
config(mockPlop)
23+
expect(mockPlop.setGenerator.mock.calls.length).toEqual(2)
24+
expect(mockHelpers.relativeSegments('my/example/page')).toEqual('../../')
25+
expect(mockHelpers.relativeSegments('page')).toEqual('')
26+
})
27+
})
28+
})

templates/default/config/plop/plopfiles/defaut.test.js

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react'
2+
import Link from 'next/link'
3+
import GlobalHead from '{{relativeSegments pagePath}}../../components/organisms/GlobalHead'
4+
5+
const {{properCase pageName}} = () => {
6+
return (
7+
<>
8+
<GlobalHead title="{{pageName}} - page-plop" />
9+
<p>Boilerplate content for {{pageName}}</p>
10+
<p>
11+
Try navigating to
12+
13+
<Link href="/">the homepage</Link>
14+
15+
and observe the URL changing
16+
</p>
17+
</>
18+
)
19+
}
20+
21+
export default {{properCase pageName}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react'
2+
import renderer from 'react-test-renderer'
3+
import {{properCase pageName}} from '{{relativeSegments pagePath}}../../../pages/{{pagePath}}'
4+
5+
describe('Pages:{{properCase pageName}}', () => {
6+
it('renders the {{pageName}} page', () => {
7+
const component = renderer.create(<{{properCase pageName}} />)
8+
const tree = component.toJSON()
9+
expect(tree).toMatchSnapshot()
10+
})
11+
})

0 commit comments

Comments
 (0)