mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
a950e9d095
* create new components for query side panel * add reusable icon component that uses svg for icons * integrate with new osquery_fleet_schema.json data * update UI to work with osquery_fleet_schema.json * add remark-gfm to safely support direct urls in markdown * move fleet ace into markdown component so we can render code with ace editor * add testing for new query sidebar * remove incomplete tests for query sidepanel
141 lines
4.6 KiB
TypeScript
141 lines
4.6 KiB
TypeScript
import React, { createContext, useReducer, ReactNode } from "react";
|
|
import { find } from "lodash";
|
|
|
|
import { osqueryTables } from "utilities/osquery_tables";
|
|
import { DEFAULT_QUERY } from "utilities/constants";
|
|
import { DEFAULT_OSQUERY_TABLE, IOsQueryTable } from "interfaces/osquery_table";
|
|
|
|
type Props = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
type InitialStateType = {
|
|
selectedOsqueryTable: IOsQueryTable;
|
|
lastEditedQueryId: number | null;
|
|
lastEditedQueryName: string;
|
|
lastEditedQueryDescription: string;
|
|
lastEditedQueryBody: string;
|
|
lastEditedQueryObserverCanRun: boolean;
|
|
setLastEditedQueryId: (value: number) => void;
|
|
setLastEditedQueryName: (value: string) => void;
|
|
setLastEditedQueryDescription: (value: string) => void;
|
|
setLastEditedQueryBody: (value: string) => void;
|
|
setLastEditedQueryObserverCanRun: (value: boolean) => void;
|
|
setSelectedOsqueryTable: (tableName: string) => void;
|
|
};
|
|
|
|
const initialState = {
|
|
selectedOsqueryTable:
|
|
find(osqueryTables, { name: "users" }) || DEFAULT_OSQUERY_TABLE,
|
|
lastEditedQueryId: null,
|
|
lastEditedQueryName: DEFAULT_QUERY.name,
|
|
lastEditedQueryDescription: DEFAULT_QUERY.description,
|
|
lastEditedQueryBody: DEFAULT_QUERY.query,
|
|
lastEditedQueryObserverCanRun: DEFAULT_QUERY.observer_can_run,
|
|
setLastEditedQueryId: () => null,
|
|
setLastEditedQueryName: () => null,
|
|
setLastEditedQueryDescription: () => null,
|
|
setLastEditedQueryBody: () => null,
|
|
setLastEditedQueryObserverCanRun: () => null,
|
|
setSelectedOsqueryTable: () => null,
|
|
};
|
|
|
|
const actions = {
|
|
SET_SELECTED_OSQUERY_TABLE: "SET_SELECTED_OSQUERY_TABLE",
|
|
SET_LAST_EDITED_QUERY_INFO: "SET_LAST_EDITED_QUERY_INFO",
|
|
} as const;
|
|
|
|
const reducer = (state: InitialStateType, action: any) => {
|
|
switch (action.type) {
|
|
case actions.SET_SELECTED_OSQUERY_TABLE:
|
|
return {
|
|
...state,
|
|
selectedOsqueryTable:
|
|
find(osqueryTables, { name: action.tableName }) ||
|
|
DEFAULT_OSQUERY_TABLE,
|
|
};
|
|
case actions.SET_LAST_EDITED_QUERY_INFO:
|
|
return {
|
|
...state,
|
|
lastEditedQueryId:
|
|
typeof action.lastEditedQueryId === "undefined"
|
|
? state.lastEditedQueryId
|
|
: action.lastEditedQueryId,
|
|
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,
|
|
lastEditedQueryObserverCanRun:
|
|
typeof action.lastEditedQueryObserverCanRun === "undefined"
|
|
? state.lastEditedQueryObserverCanRun
|
|
: action.lastEditedQueryObserverCanRun,
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export const QueryContext = createContext<InitialStateType>(initialState);
|
|
|
|
const QueryProvider = ({ children }: Props) => {
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const value = {
|
|
selectedOsqueryTable: state.selectedOsqueryTable,
|
|
lastEditedQueryId: state.lastEditedQueryId,
|
|
lastEditedQueryName: state.lastEditedQueryName,
|
|
lastEditedQueryDescription: state.lastEditedQueryDescription,
|
|
lastEditedQueryBody: state.lastEditedQueryBody,
|
|
lastEditedQueryObserverCanRun: state.lastEditedQueryObserverCanRun,
|
|
setLastEditedQueryId: (lastEditedQueryId: number) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryId,
|
|
});
|
|
},
|
|
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,
|
|
});
|
|
},
|
|
setLastEditedQueryObserverCanRun: (
|
|
lastEditedQueryObserverCanRun: boolean
|
|
) => {
|
|
dispatch({
|
|
type: actions.SET_LAST_EDITED_QUERY_INFO,
|
|
lastEditedQueryObserverCanRun,
|
|
});
|
|
},
|
|
setSelectedOsqueryTable: (tableName: string) => {
|
|
dispatch({ type: actions.SET_SELECTED_OSQUERY_TABLE, tableName });
|
|
},
|
|
};
|
|
|
|
return (
|
|
<QueryContext.Provider value={value}>{children}</QueryContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default QueryProvider;
|