From 65073c1a7ea3ea4624a14a79d09e76552c7daec8 Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Fri, 2 Jul 2021 13:55:29 +0530 Subject: [PATCH] show only checkbox removed --- .../src/lib/remix-ui-static-analyser.tsx | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/libs/remix-ui/static-analyser/src/lib/remix-ui-static-analyser.tsx b/libs/remix-ui/static-analyser/src/lib/remix-ui-static-analyser.tsx index 8991ef218e..2e4f9ad09e 100644 --- a/libs/remix-ui/static-analyser/src/lib/remix-ui-static-analyser.tsx +++ b/libs/remix-ui/static-analyser/src/lib/remix-ui-static-analyser.tsx @@ -57,14 +57,10 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { const [autoRun, setAutoRun] = useState(true) const [slitherEnabled, setSlitherEnabled] = useState(false) const [showSlither, setShowSlither] = useState('hidden') - // Show checkbox to select to display only Slither Analysis - const [showSlitherResult, setShowSlitherResult] = useState('none') - const [slitherResultEnabled, setSlitherResultEnabled] = useState(false) const [categoryIndex, setCategoryIndex] = useState(groupedModuleIndex(groupedModules)) const warningContainer = React.useRef(null) const [warningState, setWarningState] = useState({}) - const [allWarnings, setAllWarnings] = useState({}) const [state, dispatch] = useReducer(analysisReducer, initialState) useEffect(() => { @@ -73,7 +69,6 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { useEffect(() => { setWarningState({}) - setAllWarnings({}) if (autoRun) { if (state.data !== null) { run(state.data, state.source, state.file) @@ -128,24 +123,9 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { } const groupedCategory = groupBy(resultArray, groupByKey) - setAllWarnings(groupedCategory) setWarningState(groupedCategory) } - const showWarningsByModule = (showOnlyModule: string) => { - let count = 0 - if (allWarnings[showOnlyModule]) { - const newWarningState = {} - newWarningState[showOnlyModule] = allWarnings[showOnlyModule] - setWarningState({ [showOnlyModule]: allWarnings[showOnlyModule] }) - count = allWarnings[showOnlyModule].length - } else if (showOnlyModule === 'all') { - setWarningState(allWarnings) - for (const e in allWarnings) count += allWarnings[e].length - } - props.event.trigger('staticAnaysisWarning', [count]) - } - const run = (lastCompilationResult, lastCompilationSource, currentFile) => { if (state.data !== null) { if (lastCompilationResult && (categoryIndex.length > 0 || slitherEnabled)) { @@ -262,11 +242,6 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { }) showWarnings(warningMessage, 'warningModuleName') props.event.trigger('staticAnaysisWarning', [warningCount]) - if (showSlitherResult === 'none') { - setShowSlitherResult('block') - } else if (showSlitherResult === 'block' && slitherResultEnabled) { - showWarningsByModule('Slither Analysis') - } } }).catch((error) => { console.log('Error found:', error) // This should be removed once testing done @@ -275,7 +250,6 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { }) }) } else { - setShowSlitherResult('none') showWarnings(warningMessage, 'warningModuleName') props.event.trigger('staticAnaysisWarning', [warningCount]) } @@ -323,16 +297,6 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { } } - const handleShowSlitherResultEnabled = () => { - if (slitherResultEnabled) { - setSlitherResultEnabled(false) - showWarningsByModule('all') - } else { - setSlitherResultEnabled(true) - showWarningsByModule('Slither Analysis') - } - } - const handleAutoRun = () => { if (autoRun) { setAutoRun(false)