This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathqueries.ts
329 lines (303 loc) · 7.92 KB
/
queries.ts
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
import {
AllPostsResponse,
GeocodeResponse,
Post,
PostResponse,
Weather,
WeatherResponse
} from '@/lib/types'
/**
* Server-side function to fetch the weather forecast.
*
* @see https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating
*/
export async function getForecast(location: string): Promise<Weather | null> {
try {
// If no location is provided, throw an error.
if (!location) {
throw new Error('No location provided')
}
// Fetch the geolocation data.
const geocodeResponse = await fetch(
`https://maps.googleapis.com/maps/api/geocode/json?address=${location}&key=${process.env.GOOGLE_MAPS_API_KEY}`,
{
next: {
revalidate: 86400 // Cache the geolocation response for 24 hours.
}
}
)
if (!geocodeResponse.ok) {
throw new Error('Failed to fetch location coordinates')
}
const geocode = (await geocodeResponse.json()) as GeocodeResponse
// Get the first address, latitude, and longitude.
const address = geocode?.results[0]?.formatted_address
const lat = geocode?.results[0]?.geometry?.location?.lat
const lng = geocode?.results[0]?.geometry?.location?.lng
if (!address || !lat || !lng) {
throw new Error('Failed to fetch location coordinates')
}
// Fetch the weather forecast.
const weatherResponse = await fetch(
`https://api.weatherapi.com/v1/forecast.json?key=${process.env.WEATHERAPI_KEY}&q=${lat},${lng}`,
{
next: {
revalidate: 300 // Cache the weather forecast response for 5 minutes.
}
}
)
if (!weatherResponse.ok) {
throw new Error('Failed to fetch weather forecast')
}
const data = (await weatherResponse.json()) as WeatherResponse
if (!data) {
throw new Error('Weather forecast not found')
}
return {
data,
address
}
} catch (error) {
console.error(error)
return null
}
}
/**
* Server-side function to fetch all blog posts.
*
* @see https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating
*/
export async function getAllPosts(): Promise<Post[] | null> {
try {
const response = await fetch(`${process.env.NEXT_PUBLIC_WORDPRESS_URL}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
next: {
revalidate: 3600 // Cache all posts response for 1 hour.
},
body: JSON.stringify({
query: `
query GetAllPosts {
posts(where: {status: PUBLISH}) {
edges {
node {
commentCount
databaseId
title(format: RENDERED)
slug
excerpt(format: RENDERED)
featuredImage {
node {
altText
mediaDetails {
sizes(include: MEDIUM) {
height
width
sourceUrl
}
}
}
}
}
}
}
}
`
})
})
if (!response.ok) {
throw new Error(response.statusText)
}
const {data} = (await response.json()) as AllPostsResponse
if (!data) {
throw new Error('Posts not found')
}
return data.posts.edges.map((post) => post.node)
} catch (error) {
console.error(error)
return null
}
}
/**
* Server-side function to fetch a single blog post.
*
* @see https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating
*/
export async function getPost(slug: string): Promise<Post | null> {
try {
const response = await fetch(`${process.env.NEXT_PUBLIC_WORDPRESS_URL}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
next: {
revalidate: 3600 // Cache the blog post response for 5 minutes.
},
body: JSON.stringify({
query: `
query GetPost($slug: ID!) {
post(id: $slug, idType: SLUG) {
title(format: RENDERED)
databaseId
date
featuredImage {
node {
altText
mediaDetails {
sizes(include: MEDIUM) {
height
width
sourceUrl
}
}
}
}
author {
node {
name
avatar {
url
}
}
}
tags {
edges {
node {
databaseId
name
}
}
}
categories {
edges {
node {
databaseId
name
}
}
}
seo {
metaDesc
title
}
content(format: RENDERED)
comments(first: 50, where: {order: ASC, status: "APPROVE"}) {
edges {
node {
databaseId
date
author {
node {
name
email
avatar {
url
}
}
}
content(format: RENDERED)
}
}
}
}
}
`,
variables: {
slug: slug
}
})
})
if (!response.ok) {
throw new Error(response.statusText)
}
const {data} = (await response.json()) as PostResponse
if (data === null) {
throw new Error('Post not found!')
}
return data.post
} catch (error) {
console.error(error)
return null
}
}
/**
* Create a comment mutation.
*/
export async function createComment(comment: {
name: string
email: string
website: string
comment: string
postID: number
}) {
try {
const response = await fetch(`${process.env.NEXT_PUBLIC_WORDPRESS_URL}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
query: `
mutation CREATE_COMMENT(
$authorEmail: String!
$authorName: String!
$authorUrl: String
$comment: String!
$postID: Int!
) {
createComment(
input: {
author: $authorName
authorEmail: $authorEmail
authorUrl: $authorUrl
commentOn: $postID
content: $comment
}
) {
success
comment {
author {
node {
avatar {
url
}
email
name
url
}
}
content(format: RENDERED)
date
}
}
}
`,
variables: {
authorEmail: comment.email,
authorName: comment.name,
authorUrl: comment.website,
comment: comment.comment,
postID: comment.postID
}
})
})
if (!response.ok) {
throw new Error(response.statusText)
}
const status = await response.json()
if (status.errors) {
return {
success: false,
message: status.errors[0].message
}
}
return {
success: true,
message: status.data
}
} catch (error) {
console.error(error)
}
}