You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
575 B
24 lines
575 B
export async function getPosts(id) {
|
|
const BASE_URL = 'https://raymon.dev'
|
|
const BASE_ENDPOINT = '/api/posts'
|
|
const URL = BASE_URL + BASE_ENDPOINT + (id ? `/${id}` : '?sort=-1')
|
|
|
|
let posts = []
|
|
|
|
return await fetch(URL)
|
|
.then(res => res.json())
|
|
.then(res => {
|
|
if (id !== undefined) {
|
|
if (res === undefined) {
|
|
throw Error("Response body empty")
|
|
}
|
|
return [res]
|
|
}
|
|
else {
|
|
return res
|
|
}
|
|
})
|
|
.catch(err => {
|
|
console.log(`Error: ${err}`)
|
|
})
|
|
}
|
|
|