-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathControlTable.vue
More file actions
445 lines (397 loc) · 11.9 KB
/
ControlTable.vue
File metadata and controls
445 lines (397 loc) · 11.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<template>
<v-container fluid class="font-weight-bold">
<div
ref="controlTableTitle"
:class="
$vuetify.breakpoint.smAndDown
? 'control-table-title'
: 'pinned-header control-table-title'
"
:style="controlTableTitleStyle"
>
<!-- Toolbar -->
<v-row v-resize="onResize">
<v-row>
<v-col cols="12" md="3" class="pb-0">
<v-card-title class="pb-0">Results View Data</v-card-title>
</v-col>
<v-spacer />
<v-col cols="3" md="auto" class="text-right pb-0">
<ToggleDiv
:displayUnviewedControls.sync="displayUnviewedControls"
:syncTabs.sync="syncTabs"
:singleExpand.sync="singleExpand"
:expandAll.sync="expandAll"
/>
</v-col>
</v-row>
</v-row>
<!-- Header. This should mirror the structure of ControlRowHeader -->
<ResponsiveRowSwitch>
<template #status>
<ColumnHeader
text="Status"
:sort="sortStatus"
@input="set_sort('status', $event)"
/>
</template>
<template #set>
<ColumnHeader
text="Result Set"
:sort="sortSet"
@input="set_sort('set', $event)"
/>
</template>
<template #id>
<v-row class="pa-3">
<ColumnHeader
text="ID"
:sort="sortId"
@input="set_sort('id', $event)"
/>
<v-tooltip bottom>
<template #activator="{on, attrs}">
<v-icon
class="ml-0"
small
style="cursor: pointer"
v-bind="attrs"
v-on="on"
>mdi-information-outline</v-icon
>
</template>
<span>ID <br />(Legacy ID) </span>
</v-tooltip>
</v-row>
</template>
<template #title>
<ColumnHeader text="Title" sort="disabled" />
</template>
<template #severity>
<ColumnHeader
:text="'Severity'"
:sort="sortSeverity"
@input="set_sort('severity', $event)"
/>
</template>
<template #tags>
<ColumnHeader text="Guidance Mappings" sort="disabled" />
</template>
<template #runTime>
<ColumnHeader
text="Run Time"
:sort="sortRunTime"
@input="set_sort('runTime', $event)"
/>
</template>
<template #viewed>
<ColumnHeader
text="Controls Viewed"
sort="disabled"
:viewed-header="true"
:number-of-viewed-controls="numOfViewed"
:number-of-all-controls="raw_items.length"
/>
</template>
</ResponsiveRowSwitch>
</div>
<!-- Body -->
<v-lazy
v-for="item in items"
:key="item.key"
min-height="50"
transition="fade-transition"
>
<div :id="striptoChars(item.key)">
<ControlRowHeader
:class="$vuetify.breakpoint.smAndDown ? '' : 'pinned-header'"
:style="controlRowPinOffset"
:control="item.control"
:expanded="expanded.includes(item.key)"
:viewed-controls="viewedControlIds"
@toggle="toggle(item.key)"
@control-viewed="toggleControlViewed"
/>
<ControlRowDetails
v-if="expanded.includes(item.key)"
:control="item.control"
:tab="syncTabs ? syncTab : undefined"
@update:tab="updateTab"
/>
</div>
</v-lazy>
</v-container>
</template>
<script lang="ts">
import * as _ from 'lodash';
import Vue from 'vue';
import Component from 'vue-class-component';
import {Prop, Ref, Watch} from 'vue-property-decorator';
import {ContextualizedControl, severities} from 'inspecjs';
import ControlRowDetails from '@/components/cards/controltable/ControlRowDetails.vue';
import ControlRowHeader from '@/components/cards/controltable/ControlRowHeader.vue';
import ResponsiveRowSwitch from '@/components/cards/controltable/ResponsiveRowSwitch.vue';
import ColumnHeader, {Sort} from '@/components/generic/ColumnHeader.vue';
import ToggleDiv from '@/components/global/tags/ToggleDiv.vue';
import {Filter, FilteredDataModule} from '@/store/data_filters';
import {HeightsModule} from '@/store/heights';
import {getControlRunTime} from '@/utilities/delta_util';
import {control_unique_key} from '@/utilities/format_util';
// Tracks the visibility of an HDF control
interface ListElt {
// A unique id to be used as a key.
key: string;
filename: string;
// Computed values for status and severity, for sorting
status_val: number;
severity_val: number;
control: ContextualizedControl;
}
@Component({
components: {
ControlRowHeader,
ControlRowDetails,
ColumnHeader,
ResponsiveRowSwitch,
ToggleDiv
}
})
export default class ControlTable extends Vue {
@Ref('controlTableTitle') readonly controlTableTitle!: Element;
@Prop({type: Object, required: true}) readonly filter!: Filter;
// Whether to allow multiple expansions
singleExpand = true;
// If the currently selected tab should sync
syncTabs = false;
syncTab = 'tab-test';
// List of currently expanded options. If unique id is in here, it is expanded
expanded: string[] = [];
// Sorts
sortId: Sort = 'none';
sortStatus: Sort = 'none';
sortSet: Sort = 'none';
sortSeverity: Sort = 'none';
sortRunTime: Sort = 'none';
// Used for viewed/unviewed controls.
viewedControlIds: string[] = [];
displayUnviewedControls = true;
@Watch('singleExpand')
onSingleExpandChange(newVal: boolean) {
this.handleToggleSingleExpand(newVal);
}
get numOfViewed() {
return this.raw_items.filter((elem) =>
this.viewedControlIds.includes(elem.key)
).length;
}
toggleControlViewed(control: ContextualizedControl) {
const key = control_unique_key(control);
const alreadyViewed = this.viewedControlIds.indexOf(key);
// If the control hasn't been marked as viewed yet, mark it as viewed.
if (alreadyViewed === -1) {
this.viewedControlIds.push(key);
}
// Else, remove it from the view controls array.
else {
this.viewedControlIds.splice(alreadyViewed, 1);
}
}
mounted() {
this.onResize();
}
onResize() {
// Allow the page to settle before checking the controlTableHeader height
// (this is what $nextTick is supposed to do but it's firing too quickly)
setTimeout(() => {
HeightsModule.setControlTableHeaderHeight(
this.controlTableTitle?.clientHeight
);
}, 2000);
}
/** Callback to handle setting a new sort */
set_sort(column: string, newSort: Sort) {
this.sortId = 'none';
this.sortSet = 'none';
this.sortStatus = 'none';
this.sortSeverity = 'none';
this.sortRunTime = 'none';
switch (column) {
case 'id':
this.sortId = newSort;
break;
case 'status':
this.sortStatus = newSort;
break;
case 'set':
this.sortSet = newSort;
break;
case 'severity':
this.sortSeverity = newSort;
break;
case 'runTime':
this.sortRunTime = newSort;
break;
}
}
get expandAll() {
return this.expanded.length === this.items.length;
}
set expandAll(value: boolean) {
if (value) {
this.singleExpand = false;
this.expanded = this.items.map((items) => items.key);
} else {
this.expanded = [];
}
}
get controlTableTitleStyle() {
return {top: `${HeightsModule.topbarHeight}px`};
}
get controlRowPinOffset() {
// There is ~10px of padding being added which makes the ControlRowHeader look out of place
return {top: `${this.topOfPage - 10}px`};
}
// The top of the page, relative to the topbar and the title bar
get topOfPage() {
return HeightsModule.topbarHeight + HeightsModule.controlTableHeaderHeight;
}
/** Closes all open controls when single-expand is re-enabled */
async handleToggleSingleExpand(singleExpand: boolean): Promise<void> {
if (singleExpand) {
this.expandAll = false;
}
}
async updateTab(tab: string) {
this.syncTab = tab;
}
/** Toggles the given expansion of a control details panel */
toggle(key: string) {
if (this.singleExpand) {
// Check if key already there
const had = this.expanded.includes(key);
// Clear
this.expanded = [];
// If key is new, add it
if (!had) {
this.expanded.push(key);
this.jump_to_key(key);
}
} else {
// Add or remove it from the set, as appropriate. Shortcut this by only adding if delete fails
const i = this.expanded.indexOf(key);
if (i < 0) {
this.expanded.push(key);
this.jump_to_key(key);
} else {
this.expanded.splice(i, 1);
}
}
}
jump_to_key(key: string) {
if (!this.$vuetify.breakpoint.smAndDown) {
this.$nextTick(() => {
this.$vuetify.goTo(`#${this.striptoChars(key)}`, {
offset: this.topOfPage,
duration: 300
});
});
}
}
striptoChars(key: string) {
return key.replace(/[^a-z0-9]/gi, '');
}
/** Return items as key, value pairs */
get raw_items(): ListElt[] {
return FilteredDataModule.controls(this.filter).map((d) => {
const key = control_unique_key(d);
// File, hdf wrapper
return {
key,
control: d,
status_val: [
'Passed',
'Not Applicable',
'No Data',
'Not Reviewed',
'Profile Error',
'Failed'
].indexOf(d.root.hdf.status),
severity_val: severities.indexOf(d.root.hdf.severity),
filename: _.get(
d,
'sourcedFrom.sourcedFrom.from_file.filename'
) as unknown as string
};
});
}
/** Return items sorted and filters out viewed controls */
get items(): ListElt[] {
// Controls ascending/descending
let factor = 1;
// Whether or not we need to sort
let sort = true;
// Our comparator function
let cmp: (a: ListElt, b: ListElt) => number;
let items = this.raw_items;
if (this.sortId === 'ascending' || this.sortId === 'descending') {
cmp = (a: ListElt, b: ListElt) =>
a.control.data.id.localeCompare(b.control.data.id);
if (this.sortId === 'ascending') {
factor = -1;
}
} else if (
this.sortStatus === 'ascending' ||
this.sortStatus === 'descending'
) {
cmp = (a: ListElt, b: ListElt) => a.status_val - b.status_val;
if (this.sortStatus === 'ascending') {
factor = -1;
}
} else if (
this.sortSeverity === 'ascending' ||
this.sortSeverity === 'descending'
) {
cmp = (a: ListElt, b: ListElt) => a.severity_val - b.severity_val;
if (this.sortSeverity === 'ascending') {
factor = -1;
}
} else if (this.sortSet === 'ascending' || this.sortSet === 'descending') {
cmp = (a: ListElt, b: ListElt) => a.filename.localeCompare(b.filename);
if (this.sortSet === 'ascending') {
factor = -1;
}
} else if (
this.sortRunTime === 'ascending' ||
this.sortRunTime === 'descending'
) {
cmp = (a: ListElt, b: ListElt) =>
getControlRunTime(b.control) - getControlRunTime(a.control);
if (this.sortRunTime === 'ascending') {
factor = -1;
}
} else {
sort = false;
}
// Displays only unviewed controls.
if (this.displayUnviewedControls) {
items = items.filter((val) => !this.viewedControlIds.includes(val.key));
}
if (sort === true) {
items = items.sort((a, b) => cmp(a, b) * factor);
}
return items;
}
}
</script>
<style scoped>
.pinned-header {
position: sticky;
z-index: 2;
padding-top: 2px;
padding-bottom: 2px;
}
.control-table-title {
background-color: var(--v-secondary-lighten1);
z-index: 10;
}
</style>