|
|
@ -5,6 +5,7 @@ import Button from './Button/StaticAnalyserButton' // eslint-disable-line |
|
|
|
import remixLib from '@remix-project/remix-lib' |
|
|
|
import remixLib from '@remix-project/remix-lib' |
|
|
|
import _ from 'lodash' |
|
|
|
import _ from 'lodash' |
|
|
|
import { TreeView, TreeViewItem } from '@remix-ui/tree-view' // eslint-disable-line
|
|
|
|
import { TreeView, TreeViewItem } from '@remix-ui/tree-view' // eslint-disable-line
|
|
|
|
|
|
|
|
import { RemixUiCheckbox } from '@remix-ui/checkbox' // eslint-disable-line
|
|
|
|
import ErrorRenderer from './ErrorRenderer' // eslint-disable-line
|
|
|
|
import ErrorRenderer from './ErrorRenderer' // eslint-disable-line
|
|
|
|
const StaticAnalysisRunner = require('@remix-project/remix-analyzer').CodeAnalysis |
|
|
|
const StaticAnalysisRunner = require('@remix-project/remix-analyzer').CodeAnalysis |
|
|
|
const utils = remixLib.util |
|
|
|
const utils = remixLib.util |
|
|
@ -60,12 +61,12 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
} |
|
|
|
} |
|
|
|
return indexOfCategory |
|
|
|
return indexOfCategory |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const [autoRun, setAutoRun] = useState(true) |
|
|
|
const [categoryIndex, setCategoryIndex] = useState(groupedModuleIndex(groupedModules)) |
|
|
|
const [categoryIndex, setCategoryIndex] = useState(groupedModuleIndex(groupedModules)) |
|
|
|
|
|
|
|
|
|
|
|
const warningContainer = React.useRef(null) |
|
|
|
const warningContainer = React.useRef(null) |
|
|
|
const [runButtonState, setRunButtonState] = useState(true) |
|
|
|
const [runButtonState, setRunButtonState] = useState(true) |
|
|
|
const [autoRun, setAutoRun] = useState(false) |
|
|
|
|
|
|
|
const [result, setResult] = useState({ |
|
|
|
const [result, setResult] = useState({ |
|
|
|
lastCompilationResult: null, |
|
|
|
lastCompilationResult: null, |
|
|
|
lastCompilationSource: null, |
|
|
|
lastCompilationSource: null, |
|
|
@ -81,14 +82,12 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
const [warningState, setWarningState] = useState([]) |
|
|
|
const [warningState, setWarningState] = useState([]) |
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
useEffect(() => { |
|
|
|
|
|
|
|
|
|
|
|
if (autoRun) { |
|
|
|
if (autoRun) { |
|
|
|
const setCompilationResult = async (data, source, file) => { |
|
|
|
const setCompilationResult = async (data, source, file) => { |
|
|
|
await setResult({ lastCompilationResult: data, lastCompilationSource: source, currentFile: file }) |
|
|
|
await setResult({ lastCompilationResult: data, lastCompilationSource: source, currentFile: file }) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (props.analysisModule) { |
|
|
|
if (props.analysisModule) { |
|
|
|
|
|
|
|
|
|
|
|
props.analysisModule.on( |
|
|
|
props.analysisModule.on( |
|
|
|
'solidity', |
|
|
|
'solidity', |
|
|
|
'compilationFinished', |
|
|
|
'compilationFinished', |
|
|
@ -98,24 +97,18 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
if (categoryIndex.length > 0) { |
|
|
|
if (categoryIndex.length > 0) { |
|
|
|
run(data, source, file) |
|
|
|
run(data, source, file) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
) |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
|
|
|
|
setAutoRun(true) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return () => { } |
|
|
|
return () => { } |
|
|
|
}, [autoRun, categoryIndex]) |
|
|
|
}, [autoRun, categoryIndex]) |
|
|
|
|
|
|
|
|
|
|
|
const run = (lastCompilationResult, lastCompilationSource, currentFile) => { |
|
|
|
const run = (lastCompilationResult, lastCompilationSource, currentFile) => { |
|
|
|
// const highlightLocation = async (location, fileName) => {
|
|
|
|
if (autoRun) { |
|
|
|
// await props.analysisModule.call('editor', 'discardHighlight')
|
|
|
|
|
|
|
|
// await props.analysisModule.call('editor', 'highlight', location, fileName)
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
setResult({ lastCompilationResult, lastCompilationSource, currentFile }) |
|
|
|
setResult({ lastCompilationResult, lastCompilationSource, currentFile }) |
|
|
|
if (lastCompilationResult && categoryIndex.length) { |
|
|
|
if (lastCompilationResult && categoryIndex.length > 0) { |
|
|
|
setRunButtonState(false) |
|
|
|
setRunButtonState(false) |
|
|
|
let warningCount = 0 |
|
|
|
let warningCount = 0 |
|
|
|
const warningMessage = [] |
|
|
|
const warningMessage = [] |
|
|
@ -139,8 +132,8 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
let row = 0 |
|
|
|
let row = 0 |
|
|
|
let fileName = currentFile |
|
|
|
let fileName = currentFile |
|
|
|
if (item.location) { |
|
|
|
if (item.location) { |
|
|
|
var split = item.location.split(':') |
|
|
|
const split = item.location.split(':') |
|
|
|
var file = split[2] |
|
|
|
const file = split[2] |
|
|
|
location = { |
|
|
|
location = { |
|
|
|
start: parseInt(split[0]), |
|
|
|
start: parseInt(split[0]), |
|
|
|
length: parseInt(split[1]) |
|
|
|
length: parseInt(split[1]) |
|
|
@ -213,6 +206,7 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
props.event.trigger('staticAnaysisWarning', [-1]) |
|
|
|
props.event.trigger('staticAnaysisWarning', [-1]) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const handleCheckAllModules = (groupedModules) => { |
|
|
|
const handleCheckAllModules = (groupedModules) => { |
|
|
|
const index = groupedModuleIndex(groupedModules) |
|
|
|
const index = groupedModuleIndex(groupedModules) |
|
|
@ -223,9 +217,8 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
}) |
|
|
|
}) |
|
|
|
) |
|
|
|
) |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
setCategoryIndex(_.uniq([...categoryIndex])) |
|
|
|
setCategoryIndex(_.uniq([...categoryIndex, ...index])) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const handleCheckOrUncheckCategory = (category) => { |
|
|
|
const handleCheckOrUncheckCategory = (category) => { |
|
|
@ -261,7 +254,7 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
const categoryItem = (categoryId, item, i) => { |
|
|
|
const categoryItem = (categoryId, item, i) => { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div className="form-check" key={i}> |
|
|
|
<div className="form-check" key={i}> |
|
|
|
<CheckBox |
|
|
|
<RemixUiCheckbox |
|
|
|
categoryId={categoryId} |
|
|
|
categoryId={categoryId} |
|
|
|
id={`staticanalysismodule_${categoryId}_${i}`} |
|
|
|
id={`staticanalysismodule_${categoryId}_${i}`} |
|
|
|
inputType="checkbox" |
|
|
|
inputType="checkbox" |
|
|
@ -285,7 +278,7 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
<label |
|
|
|
<label |
|
|
|
htmlFor={`heading${categoryId}`} |
|
|
|
htmlFor={`heading${categoryId}`} |
|
|
|
style={{ cursor: 'pointer' }} |
|
|
|
style={{ cursor: 'pointer' }} |
|
|
|
className="pl-3 card-header h6 d-flex justify-content-between font-weight-bold border-left px-1 py-2 w-100" |
|
|
|
className="pl-3 card-header h6 d-flex justify-content-between font-weight-bold px-1 py-2 w-100" |
|
|
|
data-bs-toggle="collapse" |
|
|
|
data-bs-toggle="collapse" |
|
|
|
data-bs-expanded="false" |
|
|
|
data-bs-expanded="false" |
|
|
|
data-bs-controls={`heading${categoryId}`} |
|
|
|
data-bs-controls={`heading${categoryId}`} |
|
|
@ -294,10 +287,10 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
{category[0].categoryDisplayName} |
|
|
|
{category[0].categoryDisplayName} |
|
|
|
</label> |
|
|
|
</label> |
|
|
|
} |
|
|
|
} |
|
|
|
expand={true} |
|
|
|
expand={false} |
|
|
|
> |
|
|
|
> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<CheckBox onClick={() => handleCheckOrUncheckCategory(category)} id={categoryId} inputType="checkbox" label={`Select ${category[0].categoryDisplayName}`} name='checkCategoryEntry' checked={category.map(x => x._index.toString()).every(el => categoryIndex.includes(el))} /> |
|
|
|
<RemixUiCheckbox onClick={() => handleCheckOrUncheckCategory(category)} id={categoryId} inputType="checkbox" label={`Select ${category[0].categoryDisplayName}`} name='checkCategoryEntry' checked={category.map(x => x._index.toString()).every(el => categoryIndex.includes(el))} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div className="w-100 d-block px-2 my-1 entries collapse multi-collapse" id={`heading${categoryId}`}> |
|
|
|
<div className="w-100 d-block px-2 my-1 entries collapse multi-collapse" id={`heading${categoryId}`}> |
|
|
|
{category.map((item, i) => { |
|
|
|
{category.map((item, i) => { |
|
|
@ -314,11 +307,10 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div style={{ marginLeft: '10px', marginRight: '10px' }}> |
|
|
|
<div className="analysis_3ECCBV px-3 pb-1"> |
|
|
|
<div className="my-2 d-flex flex-column align-items-left"> |
|
|
|
<div className="my-2 d-flex flex-column align-items-left"> |
|
|
|
<div className="d-flex justify-content-between"> |
|
|
|
<div className="d-flex justify-content-between"> |
|
|
|
<div > |
|
|
|
<RemixUiCheckbox |
|
|
|
<CheckBox |
|
|
|
|
|
|
|
id="checkAllEntries" |
|
|
|
id="checkAllEntries" |
|
|
|
inputType="checkbox" |
|
|
|
inputType="checkbox" |
|
|
|
checked={Object.values(groupedModules).map((value: any) => { |
|
|
|
checked={Object.values(groupedModules).map((value: any) => { |
|
|
@ -329,16 +321,13 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
label="Select all" |
|
|
|
label="Select all" |
|
|
|
onClick={() => handleCheckAllModules(groupedModules)} |
|
|
|
onClick={() => handleCheckAllModules(groupedModules)} |
|
|
|
/> |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<RemixUiCheckbox |
|
|
|
<div className="" > |
|
|
|
|
|
|
|
<CheckBox |
|
|
|
|
|
|
|
id="autorunstaticanalysis" |
|
|
|
id="autorunstaticanalysis" |
|
|
|
inputType="checkbox" |
|
|
|
inputType="checkbox" |
|
|
|
onClick={handleAutoRun} |
|
|
|
onClick={handleAutoRun} |
|
|
|
checked={autoRun} |
|
|
|
checked={autoRun} |
|
|
|
label="Autorun" |
|
|
|
label="Autorun" |
|
|
|
/> |
|
|
|
/> |
|
|
|
</div> |
|
|
|
|
|
|
|
<Button buttonText="Run" onClick={() => run(result.lastCompilationResult, result.lastCompilationSource, result.currentFile)} disabled={runButtonState || categoryIndex.length === 0}/> |
|
|
|
<Button buttonText="Run" onClick={() => run(result.lastCompilationResult, result.lastCompilationSource, result.currentFile)} disabled={runButtonState || categoryIndex.length === 0}/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -368,7 +357,12 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { |
|
|
|
<> |
|
|
|
<> |
|
|
|
<span className="text-dark h6">{element[0]}</span> |
|
|
|
<span className="text-dark h6">{element[0]}</span> |
|
|
|
{element[1].map(x => ( |
|
|
|
{element[1].map(x => ( |
|
|
|
x.hasWarning ? (<ErrorRenderer message={x.msg} opt={x.options} warningErrors={ x.warningErrors}/>) : null |
|
|
|
x.hasWarning ? ( |
|
|
|
|
|
|
|
<div id={`staticAnalysisModule${element[1].warningModuleName}`}> |
|
|
|
|
|
|
|
<ErrorRenderer message={x.msg} opt={x.options} warningErrors={ x.warningErrors} editor={props.analysisModule}/> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
) : null |
|
|
|
))} |
|
|
|
))} |
|
|
|
</> |
|
|
|
</> |
|
|
|
))) |
|
|
|
))) |
|
|
|