-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathsetup.js
58 lines (45 loc) · 1.77 KB
/
setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const { join } = require('path')
const slash = require('slash')
const getFilePathForRoute = require('../../helpers/getFilePathForRoute')
const isRouteWithFallback = require('../../helpers/isRouteWithFallback')
const { logTitle } = require('../../helpers/logger')
const getPages = require('./pages')
// Copy pre-rendered SSG pages
const setup = async ({ functionsPath, publishPath }) => {
logTitle('🔥 Copying pre-rendered pages with getStaticProps and JSON data to', publishPath)
// Keep track of the functions that have been set up, so that we do not set up
// a function for the same file path twice
const filePathsDone = new Set()
const pages = await getPages()
const jobs = []
await Promise.all(
pages.map(async ({ route, dataRoute, srcRoute }) => {
// Copy pre-rendered HTML page
const htmlPath = getFilePathForRoute(route, 'html')
jobs.push({ type: 'static', inputPath: htmlPath, publishPath })
// Copy page's JSON data
const jsonPath = getFilePathForRoute(route, 'json')
jobs.push({
type: 'static',
inputPath: jsonPath,
outputPath: dataRoute,
publishPath,
})
// Set up the Netlify function (this is ONLY for preview mode)
const relativePath = getFilePathForRoute(srcRoute || route, 'js')
const filePath = slash(join('pages', relativePath))
// Skip if we have already set up a function for this file
if (filePathsDone.has(filePath)) {
return
}
filePathsDone.add(filePath)
// or if the source route has a fallback (handled by getStaticPropsWithFallback)
if (await isRouteWithFallback(srcRoute)) {
return
}
jobs.push({ type: 'function', filePath, functionsPath })
}),
)
return jobs
}
module.exports = setup