diff --git a/src/components/Body.tsx b/src/components/Body.tsx index c829553..241b7f7 100644 --- a/src/components/Body.tsx +++ b/src/components/Body.tsx @@ -5,15 +5,34 @@ import { Stack } from "@fluentui/react"; function Body() { const [dataList, setDataList]: any[] = useState([]); + const [originalList, setoriginalList]: any[] = useState([]); const apiAddress: string = process.env.REACT_APP_API_ADDRESS as string; useEffect(() => { - (async () => { - const res = await fetch("http://" + apiAddress + "/api/v1/reports"); - const json = await res.json(); - setDataList(json); - })(); - }); + fetch("http://" + apiAddress + "/api/v1/reports") + .then((res) => { + res.json().then((data) => { + setoriginalList(data); + setDataList(data); + }); + }) + .catch((err) => { + console.log(err); + }); + }, []); + + const onSearch = (value: string | undefined) => { + if (!value) { + setDataList([...originalList]); + } else { + setDataList( + originalList.filter((dataItem: any) => { + const itemName = dataItem.serverName.toLowerCase(); + return itemName.includes(value); + }) + ); + } + }; return ( - + diff --git a/src/components/DataTable.tsx b/src/components/DataTable.tsx index cae871e..16deb27 100644 --- a/src/components/DataTable.tsx +++ b/src/components/DataTable.tsx @@ -1,34 +1,41 @@ import { DetailsList, IGroup, SelectionMode, Stack } from "@fluentui/react"; +import { useEffect, useState } from "react"; interface Props { vulnData: any[]; } export const DataTable: React.FC = (props) => { - const itemsForRender = new Array(); + const [groupState, setGroupState] = useState(new Array()); + const [itemToRenderState, setItemToRenderState] = useState(Array()); - const groups = new Array(); - props.vulnData.forEach((server) => { - let index: number = 0; + useEffect(() => { + const itemsForRender = new Array(); + const groups = new Array(); + props.vulnData.forEach((server) => { + let index: number = 0; - if (itemsForRender.length > 0) { - index = itemsForRender.length - 1; - } else { - index = itemsForRender.length; - } - - server.vulnerableFiles.forEach((file: any) => { - itemsForRender.push({ vulnerableFiles: file.fileName }); + if (itemsForRender.length > 0) { + index = itemsForRender.length; + } else { + index = itemsForRender.length; + } + server.vulnerableFiles.forEach((file: any) => { + itemsForRender.push({ vulnerableFiles: file.fileName }); + }); + groups.push({ + key: server.serverName, + name: server.serverName, + level: 0, + count: server.vulnerableFiles.length, + startIndex: index, + isCollapsed: true, + }); }); - groups.push({ - key: server.serverName, - name: server.serverName, - level: 0, - count: server.vulnerableFiles.length, - startIndex: index, - }); - }); + setGroupState(groups); + setItemToRenderState(itemsForRender); + }, [props.vulnData]); return ( = (props) => { style={{ minWidth: "100%", backgroundColor: "white" }} > - - - <> - + + + <> + - - - + + + - - <> - - - + + <> + + ); } diff --git a/src/components/Search.tsx b/src/components/Search.tsx index 9074725..288972b 100644 --- a/src/components/Search.tsx +++ b/src/components/Search.tsx @@ -1,11 +1,15 @@ import { SearchBox } from "@fluentui/react/lib/SearchBox"; -const Search = () => { +interface ISearchProps { + onSearch: (value: string | undefined) => void; +} + +const Search = (props: ISearchProps) => { return ( console.log("value is " + newValue)} + onChange={(elem, newValue) => props.onSearch(newValue)} /> ); };