mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
154 lines
5.0 KiB
TypeScript
154 lines
5.0 KiB
TypeScript
import React, { createContext, useReducer, ReactNode } from "react";
|
|
import { find } from "lodash";
|
|
|
|
// @ts-ignore
|
|
import { osqueryTables } from "utilities/osquery_tables";
|
|
import { DEFAULT_POLICY } from "utilities/constants";
|
|
import { IOsqueryTable } from "interfaces/osquery_table";
|
|
import { IQueryPlatform } from "interfaces/query";
|
|
|
|
type Props = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
type InitialStateType = {
|
|
lastEditedQueryName: string;
|
|
lastEditedQueryDescription: string;
|
|
lastEditedQueryBody: string;
|
|
lastEditedQueryResolution: string;
|
|
lastEditedQueryPlatform: IQueryPlatform;
|
|
setLastEditedQueryName: (value: string) => void;
|
|
setLastEditedQueryDescription: (value: string) => void;
|
|
setLastEditedQueryBody: (value: string) => void;
|
|
setLastEditedQueryResolution: (value: string) => void;
|
|
setLastEditedQueryPlatform: (value: IQueryPlatform) => void;
|
|
policyTeamId: number;
|
|
setPolicyTeamId: (id: number) => void;
|
|
selectedOsqueryTable: IOsqueryTable;
|
|
setSelectedOsqueryTable: (tableName: string) => void;
|
|
};
|
|
|
|
const initialState = {
|
|
lastEditedQueryName: "",
|
|
lastEditedQueryDescription: DEFAULT_POLICY.description,
|
|
lastEditedQueryBody: "",
|
|
lastEditedQueryResolution: "",
|
|
lastEditedQueryPlatform: DEFAULT_POLICY.platform,
|
|
setLastEditedQueryName: () => null,
|
|
setLastEditedQueryDescription: () => null,
|
|
setLastEditedQueryBody: () => null,
|
|
setLastEditedQueryResolution: () => null,
|
|
setLastEditedQueryPlatform: () => null,
|
|
policyTeamId: 0,
|
|
setPolicyTeamId: () => null,
|
|
selectedOsqueryTable: find(osqueryTables, { name: "users" }),
|
|
setSelectedOsqueryTable: () => null,
|
|
};
|
|
|
|
const actions = {
|
|
SET_LAST_EDITED_QUERY_INFO: "SET_LAST_EDITED_QUERY_INFO",
|
|
SET_POLICY_TEAM_ID: "SET_POLICY_TEAM_ID",
|
|
SET_SELECTED_OSQUERY_TABLE: "SET_SELECTED_OSQUERY_TABLE",
|
|
};
|
|
|
|
const reducer = (state: any, action: any) => {
|
|
switch (action.type) {
|
|
case actions.SET_POLICY_TEAM_ID:
|
|
return {
|
|
...state,
|
|
policyTeamId: action.id,
|
|
};
|
|
case actions.SET_SELECTED_OSQUERY_TABLE:
|
|
return {
|
|
...state,
|
|
selectedOsqueryTable: find(osqueryTables, { name: action.tableName }),
|
|
};
|
|
case actions.SET_LAST_EDITED_QUERY_INFO:
|
|
return {
|
|
...state,
|
|
lastEditedQueryName:
|
|
typeof action.lastEditedQueryName === "undefined"
|
|
? state.lastEditedQueryName
|
|
: action.lastEditedQueryName,
|
|
lastEditedQueryDescription:
|
|
typeof action.lastEditedQueryDescription === "undefined"
|
|
? state.lastEditedQueryDescription
|
|
: action.lastEditedQueryDescription,
|
|
lastEditedQueryBody:
|
|
typeof action.lastEditedQueryBody === "undefined"
|
|
? state.lastEditedQueryBody
|
|
: action.lastEditedQueryBody,
|
|
lastEditedQueryResolution:
|
|
typeof action.lastEditedQueryResolution === "undefined"
|
|
? state.lastEditedQueryResolution
|
|
: action.lastEditedQueryResolution,
|
|
lastEditedQueryPlatform:
|
|
typeof action.lastEditedQueryPlatform === "undefined"
|
|
? state.lastEditedQueryPlatform
|
|
: action.lastEditedQueryPlatform,
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export const PolicyContext = createContext<InitialStateType>(initialState);
|
|
|
|
const PolicyProvider = ({ children }: Props): JSX.Element => {
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const value = {
|
|
lastEditedQueryName: state.lastEditedQueryName,
|
|
lastEditedQueryDescription: state.lastEditedQueryDescription,
|
|
lastEditedQueryBody: state.lastEditedQueryBody,
|
|
lastEditedQueryResolution: state.lastEditedQueryResolution,
|
|
lastEditedQueryPlatform: state.lastEditedQueryPlatform,
|
|
setLastEditedQueryName: (lastEditedQueryName: string) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryName,
|
|
});
|
|
},
|
|
setLastEditedQueryDescription: (lastEditedQueryDescription: string) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryDescription,
|
|
});
|
|
},
|
|
setLastEditedQueryBody: (lastEditedQueryBody: string) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryBody,
|
|
});
|
|
},
|
|
setLastEditedQueryResolution: (lastEditedQueryResolution: string) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryResolution,
|
|
});
|
|
},
|
|
setLastEditedQueryPlatform: (
|
|
lastEditedQueryPlatform: IQueryPlatform | null | undefined
|
|
) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryPlatform,
|
|
});
|
|
},
|
|
policyTeamId: state.policyTeamId,
|
|
setPolicyTeamId: (id: number) => {
|
|
dispatch({ type: actions.SET_POLICY_TEAM_ID, id });
|
|
},
|
|
selectedOsqueryTable: state.selectedOsqueryTable,
|
|
setSelectedOsqueryTable: (tableName: string) => {
|
|
dispatch({ type: actions.SET_SELECTED_OSQUERY_TABLE, tableName });
|
|
},
|
|
};
|
|
|
|
return (
|
|
<PolicyContext.Provider value={value}>{children}</PolicyContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default PolicyProvider;
|