-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.server.js
210 lines (196 loc) · 5.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// 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 axios = require("axios");
module.exports = function(api) {
// api.loadSource(async (actions) => {
// const { data } = await axios.get(
// `/contattos`
// );
// const collection = actions.addCollection({
// typeName: "Contatto",
// path: "/contatto/:id",
// });
// for (const contatto of data) {
// collection.addNode({
// id: contatto.id,
// path: "/contatto/" + contatto.id,
// nome: contatto.nome,
// cognome: contatto.cognome,
// email: contatto.email,
// cellulare: contatto.cellulare,
// professione: contatto.professione,
// chi_cerca: contatto.chi_cerca,
// foto: contatto.foto ? contatto.foto.url : null,
// partecipanti: contatto.partecipanti,
// });
// }
// });
// api.loadSource(async (actions) => {
// const { data } = await axios.get(`/eventos`);
// const collection = actions.addCollection({
// typeName: "Eventos",
// path: "/evento/:id",
// });
// for (const evento of data) {
// console.log("evento", evento);
// collection.addNode({
// id: evento.id,
// path: "/evento/" + evento.id,
// data: evento.data,
// titolo: evento.titolo,
// descrizione: evento.descrizione,
// online_offline: evento.online_offline,
// passato_futuro: evento.passato_futuro,
// location: evento.location,
// location_indirizzo: evento.location_indirizzo,
// sponsor_serata: evento.sponsor_serata,
// partecipanti: evento.partecipanti,
// });
// }
// });
api.createPages(async ({ graphql, createPage }) => {
// Use the Pages API here: https://gridsome.org/docs/pages-api/
const { data } = await graphql(`
{
evento {
eventos(where: { passato_futuro: "futuro" }) {
id
data
titolo
descrizione
sponsor_serata {
nome
cognome
foto {
url
}
}
online_offline
passato_futuro
location
location_indirizzo
slug
link_video
}
}
}
`);
const programma = data.evento.eventos;
programma.forEach((evento) => {
createPage({
path: `/programma/${evento.slug}/`,
component: "./src/templates/Programma.vue",
context: {
id: evento.id,
},
});
});
});
api.createPages(async ({ graphql, createPage }) => {
// Use the Pages API here: https://gridsome.org/docs/pages-api/
const { data } = await graphql(`
{
evento {
eventos(
where: { passato_futuro: "passato", online_offline: "online" }
) {
id
data
titolo
descrizione
sponsor_serata {
nome
cognome
foto {
url
}
}
online_offline
passato_futuro
location
location_indirizzo
slug
link_video
}
}
}
`);
const eventi = data.evento.eventos;
eventi.forEach((evento) => {
createPage({
path: `/evento/${evento.slug}`,
component: "./src/templates/Evento.vue",
context: {
id: evento.id,
},
});
});
});
api.createPages(async ({ graphql, createPage }) => {
// Use the Pages API here: https://gridsome.org/docs/pages-api/
const { data } = await graphql(`
{
testimonianza {
testimonianzas {
id
data
slug
video {
url
}
contatto {
nome
cognome
}
}
}
}
`);
const testimonianze = data.testimonianza.testimonianzas;
testimonianze.forEach((testimonianza) => {
createPage({
path: `/testimonianza/${testimonianza.slug}`,
component: "./src/templates/Testimonianza.vue",
context: {
id: testimonianza.id,
},
});
});
});
api.createPages(async ({ graphql, createPage }) => {
const { data } = await graphql(`
{
contatto {
contattos(where: { slug_null: false }) {
id
slug
nome
cognome
email
cellulare
professione
chi_cerca
foto {
url
}
sito_web
linkedin
}
}
}
`);
const membri = data.contatto.contattos;
membri.forEach((membro) => {
createPage({
path: `/membro/${membro.slug}`,
component: "./src/templates/Membro.vue",
context: {
id: membro.id,
},
});
});
});
};