-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathsetup.js
40 lines (30 loc) · 1.09 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
const { join } = require('path')
const slash = require('slash')
const getFilePathForRoute = require('../../helpers/getFilePathForRoute')
const { logTitle } = require('../../helpers/logger')
const getPages = require('./pages')
// Create a Netlify Function for every page with getStaticProps and revalidate
const setup = async (functionsPath) => {
logTitle(
'💫 Setting up pages with getStaticProps and revalidation interval',
'as Netlify Functions in',
functionsPath,
)
// 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()
// Create Netlify Function for every page
const jobs = []
pages.forEach(({ route, srcRoute }) => {
const relativePath = getFilePathForRoute(srcRoute || route, 'js')
const filePath = slash(join('pages', relativePath))
if (filePathsDone.has(filePath)) {
return
}
filePathsDone.add(filePath)
jobs.push({ type: 'function', filePath, functionsPath })
})
return jobs
}
module.exports = setup