29 lines
631 B
TypeScript
29 lines
631 B
TypeScript
import { NOTIFICATION_API } from 'utils/constants'
|
|
|
|
export type Notification = {
|
|
content: string
|
|
createdAt: string
|
|
seen: boolean
|
|
title: string
|
|
id: number
|
|
}
|
|
|
|
export const fetchNotifications = async (
|
|
wallet: string,
|
|
token: string,
|
|
mangoAccount: string,
|
|
) => {
|
|
const data = await fetch(`${NOTIFICATION_API}notifications`, {
|
|
headers: {
|
|
authorization: token,
|
|
publickey: wallet,
|
|
'mango-account': mangoAccount,
|
|
},
|
|
})
|
|
const body = await data.json()
|
|
if (body.error) {
|
|
throw { error: body.error, status: data.status }
|
|
}
|
|
return (body as Notification[]).sort((a, b) => b.id - a.id)
|
|
}
|