2022-01-20 10:40:53 +01:00
|
|
|
export const buildViewEndpoints = API => ({
|
|
|
|
/**
|
|
|
|
* Fetches all rows in a view.
|
|
|
|
*/
|
|
|
|
fetchViewData: async ({ name, field, groupBy, calculation }) => {
|
|
|
|
const params = new URLSearchParams()
|
|
|
|
if (calculation) {
|
|
|
|
params.set("field", field)
|
|
|
|
params.set("calculation", calculation)
|
|
|
|
}
|
|
|
|
if (groupBy) {
|
|
|
|
params.set("group", groupBy ? "true" : "false")
|
|
|
|
}
|
|
|
|
const QUERY_VIEW_URL = field
|
|
|
|
? `/api/views/${name}?${params}`
|
|
|
|
: `/api/views/${name}`
|
|
|
|
return await API.get({ url: QUERY_VIEW_URL })
|
|
|
|
},
|
2022-01-24 11:44:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Exports a view for download
|
|
|
|
* @param viewName the view to export
|
|
|
|
* @param format the format to download
|
|
|
|
*/
|
|
|
|
exportView: async ({ viewName, format }) => {
|
|
|
|
const safeViewName = encodeURIComponent(viewName)
|
|
|
|
return await API.get({
|
|
|
|
url: `/api/views/export?view=${safeViewName}&format=${format}`,
|
|
|
|
parseResponse: async response => {
|
|
|
|
return await response.text()
|
|
|
|
},
|
|
|
|
})
|
|
|
|
},
|
2022-01-20 10:40:53 +01:00
|
|
|
})
|