-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathapi.ts
29 lines (23 loc) · 1.02 KB
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { ajax } from 'rxjs/ajax'
import { IServer } from './modules/servers'
import { IMapping } from './modules/mappings'
const buildApiUrl = (server: IServer, path: string): string =>
`${server.url}${server.port ? `:${server.port}` : ''}/__admin${path}`
export const getMappings = (server: IServer) =>
ajax.getJSON(buildApiUrl(server, '/mappings'))
export const getMapping = (server: IServer, mappingId: string) =>
ajax.getJSON(buildApiUrl(server, `/mappings/${mappingId}`))
export const createMapping = (server: IServer, mapping: Partial<IMapping>) =>
ajax.post(
buildApiUrl(server, '/mappings'),
mapping,
{ 'Content-Type': 'application/json' }
)
export const updateMapping = (server: IServer, mapping: IMapping) =>
ajax.put(
buildApiUrl(server, `/mappings/${mapping.id}`),
mapping,
{ 'Content-Type': 'application/json' }
)
export const deleteMapping = (server: IServer, mappingId: string) =>
ajax.delete(buildApiUrl(server, `/mappings/${mappingId}`))