80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { xfetch } from '~/composables/useXfetch'
|
|
|
|
const mainUrl = '/api/v1/encounter'
|
|
|
|
export async function getEncounters(params: any = null) {
|
|
try {
|
|
let url = mainUrl
|
|
if (params && typeof params === 'object' && Object.keys(params).length > 0) {
|
|
const searchParams = new URLSearchParams()
|
|
for (const key in params) {
|
|
if (params[key] !== null && params[key] !== undefined && params[key] !== '') {
|
|
searchParams.append(key, params[key])
|
|
}
|
|
}
|
|
const queryString = searchParams.toString()
|
|
if (queryString) url += `?${queryString}`
|
|
}
|
|
const resp = await xfetch(url, 'GET')
|
|
const result: any = {}
|
|
result.success = resp.success
|
|
result.body = (resp.body as Record<string, any>) || {}
|
|
return result
|
|
} catch (error) {
|
|
console.error('Error fetching encounters:', error)
|
|
throw new Error('Failed to fetch encounters')
|
|
}
|
|
}
|
|
|
|
export async function getEncounterDetail(id: string | number) {
|
|
try {
|
|
const resp = await xfetch(`${mainUrl}/${id}`, 'GET')
|
|
const result: any = {}
|
|
result.success = resp.success
|
|
result.body = (resp.body as Record<string, any>) || {}
|
|
return result
|
|
} catch (error) {
|
|
console.error('Error fetching encounter detail:', error)
|
|
throw new Error('Failed to fetch encounter detail')
|
|
}
|
|
}
|
|
|
|
export async function postEncounter(data: any) {
|
|
try {
|
|
const resp = await xfetch(mainUrl, 'POST', data)
|
|
const result: any = {}
|
|
result.success = resp.success
|
|
result.body = (resp.body as Record<string, any>) || {}
|
|
return result
|
|
} catch (error) {
|
|
console.error('Error creating encounter:', error)
|
|
throw new Error('Failed to create encounter')
|
|
}
|
|
}
|
|
|
|
export async function patchEncounter(id: string | number, data: any) {
|
|
try {
|
|
const resp = await xfetch(`${mainUrl}/${id}`, 'PATCH', data)
|
|
const result: any = {}
|
|
result.success = resp.success
|
|
result.body = (resp.body as Record<string, any>) || {}
|
|
return result
|
|
} catch (error) {
|
|
console.error('Error updating encounter:', error)
|
|
throw new Error('Failed to update encounter')
|
|
}
|
|
}
|
|
|
|
export async function removeEncounter(id: string | number) {
|
|
try {
|
|
const resp = await xfetch(`${mainUrl}/${id}`, 'DELETE')
|
|
const result: any = {}
|
|
result.success = resp.success
|
|
result.body = (resp.body as Record<string, any>) || {}
|
|
return result
|
|
} catch (error) {
|
|
console.error('Error deleting encounter:', error)
|
|
throw new Error('Failed to delete encounter')
|
|
}
|
|
}
|