-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.js
63 lines (54 loc) · 1.37 KB
/
gatsby-node.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
60
61
62
63
const path = require('path');
const { languages } = require('./src/i18n/locales');
const redirects = [
['/bikes', 'https://urbica.github.io/bikes/'],
['/citibike', 'https://urbica.github.io/citibike/'],
['/hills', 'https://urbica.github.io/hills/'],
['/velo', 'https://urbica.github.io/velo/'],
];
exports.createPages = ({ actions }) => {
const { createRedirect } = actions;
redirects.forEach(([fromPath, toPath]) => {
createRedirect({
fromPath,
toPath,
isPermanent: true,
});
});
};
exports.onCreatePage = ({ page, actions }) => {
const { createPage, deletePage } = actions;
if (page.path.includes('404')) {
return Promise.resolve();
}
return new Promise((resolve) => {
const redirect = path.resolve('src/i18n/redirect.js');
const redirectPage = {
...page,
component: redirect,
context: {
languages,
locale: '',
routed: false,
redirectPage: page.path,
},
};
deletePage(page);
createPage(redirectPage);
languages.forEach(({ value }) => {
const localePage = {
...page,
originalPath: page.path,
path: `/${value}${page.path}`,
context: {
languages,
locale: value,
routed: true,
originalPath: page.path,
},
};
createPage(localePage);
});
resolve();
});
};