| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import axios from 'axios';
- import { baseApi } from './baseApi';
- /**
- * Generic api call format
- * @param {string} token - Bearer token.
- * @param {Object} params - Query params.
- * @param {Object} pathParams - Path params.
- * @param {(err: Object, res: Object) => void} callback - Callback function.
- */
- const checkAuth = baseApi('GET', '/api/auth/check');
- const registerUser = baseApi<{
- email: string,
- password: string
- }>('POST', '/api/users');
- const logInUser = baseApi<{
- email: string,
- password: string
- }>('POST', '/api/login');
- const logOutUser = baseApi('POST', '/api/logout');
- const getUser = baseApi<{}, { id: number }>('GET', pathParams => {
- return `/api/users/${pathParams.id}`;
- });
- const updateUser = baseApi<{
- rawKubeConfig?: string,
- allowedContexts?: string[]
- }, { id: number }>('PUT', pathParams => {
- return `/api/users/${pathParams.id}`;
- });
- const getContexts = baseApi<{}, { id: number }>('GET', pathParams => {
- return `/api/users/${pathParams.id}/contexts`;
- });
- // Bundle export to allow default api import (api.<method> is more readable)
- export default {
- checkAuth,
- registerUser,
- logInUser,
- logOutUser,
- getUser,
- updateUser,
- getContexts,
- }
|