mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
384c987389
* clean up routes and useless components * component clean up * removed redux from routes * rename file * moved useDeepEffect hook with others * removed redux, fleet, app_constants dirs; added types to utilities * style cleanup * typo fix * removed unused ts-ignore comments * removed redux packages!!! * formatting * fixed typing for simple search function * updated frontend readme
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
import sendRequest from "services";
|
|
|
|
import endpoints from "utilities/endpoints";
|
|
import { IEditScheduledQuery } from "interfaces/scheduled_query";
|
|
import helpers from "utilities/helpers";
|
|
|
|
export default {
|
|
create: (formData: any) => {
|
|
const { GLOBAL_SCHEDULE } = endpoints;
|
|
|
|
const {
|
|
interval,
|
|
logging_type: loggingType,
|
|
platform,
|
|
query_id: queryID,
|
|
shard,
|
|
version,
|
|
} = formData;
|
|
|
|
const removed = loggingType === "differential";
|
|
const snapshot = loggingType === "snapshot";
|
|
|
|
const params = {
|
|
interval: Number(interval),
|
|
platform,
|
|
query_id: Number(queryID),
|
|
removed,
|
|
snapshot,
|
|
shard: Number(shard),
|
|
version,
|
|
};
|
|
|
|
return sendRequest("POST", GLOBAL_SCHEDULE, params);
|
|
},
|
|
destroy: ({ id }: { id: number }) => {
|
|
const { GLOBAL_SCHEDULE } = endpoints;
|
|
const path = `${GLOBAL_SCHEDULE}/${id}`;
|
|
|
|
return sendRequest("DELETE", path);
|
|
},
|
|
loadAll: () => {
|
|
const { GLOBAL_SCHEDULE } = endpoints;
|
|
const path = GLOBAL_SCHEDULE;
|
|
|
|
return sendRequest("GET", path);
|
|
},
|
|
update: (
|
|
globalScheduledQuery: IEditScheduledQuery,
|
|
updatedAttributes: any
|
|
) => {
|
|
const { GLOBAL_SCHEDULE } = endpoints;
|
|
const path = `${GLOBAL_SCHEDULE}/${globalScheduledQuery.id}`;
|
|
const params = helpers.formatScheduledQueryForServer(updatedAttributes);
|
|
|
|
return sendRequest("PATCH", path, params);
|
|
},
|
|
};
|