admin(ui): add missing API requests

This commit is contained in:
Matthew Penner 2021-01-06 16:38:39 -07:00
parent 63daa7b14f
commit b45592466e
29 changed files with 253 additions and 10 deletions

View file

@ -1,12 +1,12 @@
import http from '@/api/http';
import { Location } from '@/api/admin/locations/getLocations';
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
export default (short: string, long?: string): Promise<Location> => {
return new Promise((resolve, reject) => {
http.post('/api/application/locations', {
short, long,
})
.then(({ data }) => resolve(data.attributes))
.then(({ data }) => resolve(rawDataToLocation(data)))
.catch(reject);
});
};

View file

@ -0,0 +1,9 @@
import http from '@/api/http';
export default (id: number): Promise<void> => {
return new Promise((resolve, reject) => {
http.delete(`/api/application/locations/${id}`)
.then(() => resolve())
.catch(reject);
});
};

View file

@ -0,0 +1,10 @@
import http from '@/api/http';
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
export default (id: number): Promise<Location> => {
return new Promise((resolve, reject) => {
http.get(`/api/application/locations/${id}`)
.then(({ data }) => resolve(rawDataToLocation(data)))
.catch(reject);
});
};