cryptgeon/client/src/lib/api.ts

38 lines
737 B
TypeScript

import axios from 'axios'
const base = axios.create({ baseURL: 'http://localhost:5000' })
export type Note = {
contents: string
password: boolean
views?: number
expiration?: number
}
export type NoteInfo = Pick<Note, 'password'>
export type NotePublic = Pick<Note, 'contents'>
export async function create(note: Note) {
const { data } = await base({
url: '/notes/',
method: 'post',
data: note,
})
return data as { id: string }
}
export async function get(id: string) {
const { data } = await base({
url: `/notes/${id}`,
method: 'delete',
})
return data as NotePublic
}
export async function info(id: string) {
const { data } = await base({
url: `/notes/${id}`,
method: 'get',
})
return data as NoteInfo
}