-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.server.js
59 lines (51 loc) · 1.51 KB
/
gridsome.server.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
59
// Server API makes it possible to hook into various parts of Gridsome
// on server-side and add custom data to the GraphQL data layer.
// Learn more: https://gridsome.org/docs/server-api/
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
const fs = require('fs');
const yaml = require('js-yaml');
const fileContents = fs.readFileSync('./src/data/library.yaml', 'utf8');
const stats = yaml.load(fileContents);
// console.log(JSON.stringify(stats, null, 2))
module.exports = (api) => {
api.loadSource(async actions => {
const collection = actions.addCollection({
typeName: 'Statistics'
})
for (const stat of stats.library) {
collection.addNode(stat);
}
})
api.createPages(async ({ graphql, createPage }) => {
const { data } = await graphql(`{
prismicio {
events: allEvents {
edges {
node {
title
short
meta: _meta {
lang
uid
lastPublicationDate
}
created
}
}
}
}
}`)
const eventsPathPrefix = require('./src/mixins/eventLink').eventLink
data.prismicio.events.edges.forEach(({ node }) => {
createPage({
path: `${ eventsPathPrefix(node.meta.lang, node.meta.uid) }`,
component: './src/templates/Event.vue',
context: {
uid: node.meta.uid,
lang: node.meta.lang
}
})
})
})
};