Skip to content

Commit

Permalink
Added check all/ uncheck all cheeckbox to StaticAnalysisTab
Browse files Browse the repository at this point in the history
renamed local vars to avoid warning
  • Loading branch information
LianaHus committed Oct 10, 2018
1 parent 9b0bfca commit abf5118
Showing 1 changed file with 51 additions and 6 deletions.
57 changes: 51 additions & 6 deletions src/app/staticanalysis/staticAnalysisView.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function staticAnalysisView (localRegistry) {
this.event = new EventManager()
this.view = null
this.runner = new StaticAnalysisRunner()
this.modulesView = renderModules(this.runner.modules())
this.modulesView = this.renderModules()
this.lastCompilationResult = null
this.lastCompilationSource = null
self._components = {}
Expand Down Expand Up @@ -53,7 +53,23 @@ staticAnalysisView.prototype.render = function () {
</div>
<div class="${css.buttons}">
<button class=${css.buttonRun} onclick=${function () { self.run() }} >Run</button>
<label class="${css.label}" for="autorunstaticanalysis"><input id="autorunstaticanalysis" type="checkbox" style="vertical-align:bottom" checked="true">Auto run</label>
<label class="${css.label}" for="autorunstaticanalysis">
<input id="autorunstaticanalysis"
type="checkbox"
style="vertical-align:bottom"
checked="true"
>
Auto run
</label>
<label class="${css.label}" for="checkallstaticanalysis">
<input id="checkallstaticanalysis"
type="checkbox"
onclick="${function (event) { self.checkAll(event) }}"
style="vertical-align:bottom"
checked="true"
>
Check/Uncheck all
</label>
</div>
<div class="${css.result}" "id='staticanalysisresult'></div>
</div>
Expand Down Expand Up @@ -118,10 +134,34 @@ staticAnalysisView.prototype.run = function () {
}
}

module.exports = staticAnalysisView
staticAnalysisView.prototype.checkAll = function (event) {
if (!this.view) {
return
}
var all = this.view.querySelectorAll('[name="staticanalysismodule"]')
var isAnySelected = false
for (var i = 0; i < all.length; i++) {
if (all[i].checked === true) {
isAnySelected = true
break
}
}
for (var j = 0; j < all.length; j++) {
all[j].checked = !isAnySelected
}
event.target.checked = !isAnySelected
}

function renderModules (modules) {
var groupedModules = utils.groupBy(preProcessModules(modules), 'categoryId')
staticAnalysisView.prototype.checkModule = function (event) {
var selectAll = this.view.querySelector('[id="checkallstaticanalysis" ]')
if (event.target.checked) {
selectAll.checked = true
}
}

staticAnalysisView.prototype.renderModules = function () {
var self = this
var groupedModules = utils.groupBy(preProcessModules(self.runner.modules()), 'categoryId')
return Object.keys(groupedModules).map((categoryId, i) => {
var category = groupedModules[categoryId]
var entriesDom = category.map((item, i) => {
Expand All @@ -131,7 +171,10 @@ function renderModules (modules) {
type="checkbox"
name="staticanalysismodule"
index=${item._index}
checked="true" style="vertical-align:bottom">
checked="true"
style="vertical-align:bottom"
onclick="${function (event) { self.checkModule(event) }}"
>
${item.name}
${item.description}
</label>
Expand All @@ -144,6 +187,8 @@ function renderModules (modules) {
})
}

module.exports = staticAnalysisView

function preProcessModules (arr) {
return arr.map((item, i) => {
item['_index'] = i
Expand Down

0 comments on commit abf5118

Please sign in to comment.