@@ -117,6 +117,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
117
117
< HeaderCell value = "Hosts" isSortedDesc = { cellProps . column . isSortedDesc } />
118
118
) ,
119
119
accessor : "display_name" ,
120
+ id : "display_name" ,
120
121
Cell : ( cellProps : IHostTableStringCellProps ) => {
121
122
if (
122
123
// if the host is pending, we want to disable the link to host details
@@ -175,6 +176,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
175
176
/>
176
177
) ,
177
178
accessor : "hostname" ,
179
+ id : "hostname" ,
178
180
Cell : ( cellProps : IHostTableStringCellProps ) => (
179
181
< TextCell value = { cellProps . cell . value } />
180
182
) ,
@@ -188,6 +190,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
188
190
/>
189
191
) ,
190
192
accessor : "computer_name" ,
193
+ id : "computer_name" ,
191
194
Cell : ( cellProps : IHostTableStringCellProps ) => (
192
195
< TextCell value = { cellProps . cell . value } />
193
196
) ,
@@ -198,6 +201,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
198
201
< HeaderCell value = "Team" isSortedDesc = { cellProps . column . isSortedDesc } />
199
202
) ,
200
203
accessor : "team_name" ,
204
+ id : "team_name" ,
201
205
Cell : ( cellProps ) => (
202
206
< TextCell value = { cellProps . cell . value } formatter = { hostTeamName } />
203
207
) ,
@@ -228,6 +232,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
228
232
} ,
229
233
disableSortBy : true ,
230
234
accessor : "status" ,
235
+ id : "status" ,
231
236
Cell : ( cellProps : IHostTableStringCellProps ) => {
232
237
const value = cellProps . cell . value ;
233
238
const tooltip = {
@@ -241,6 +246,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
241
246
Header : "Issues" ,
242
247
disableSortBy : true ,
243
248
accessor : "issues" ,
249
+ id : "issues" ,
244
250
Cell : ( cellProps : IIssuesCellProps ) => (
245
251
< IssueCell
246
252
issues = { cellProps . row . original . issues }
@@ -257,6 +263,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
257
263
/>
258
264
) ,
259
265
accessor : "gigs_disk_space_available" ,
266
+ id : "gigs_disk_space_available" ,
260
267
Cell : ( cellProps : IHostTableNumberCellProps ) => {
261
268
const {
262
269
id,
@@ -286,6 +293,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
286
293
/>
287
294
) ,
288
295
accessor : "os_version" ,
296
+ id : "os_version" ,
289
297
Cell : ( cellProps : IHostTableStringCellProps ) => (
290
298
< TextCell value = { cellProps . cell . value } />
291
299
) ,
@@ -299,6 +307,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
299
307
/>
300
308
) ,
301
309
accessor : "osquery_version" ,
310
+ id : "osquery_version" ,
302
311
Cell : ( cellProps : IHostTableStringCellProps ) => (
303
312
< TextCell value = { cellProps . cell . value } />
304
313
) ,
@@ -308,6 +317,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
308
317
Header : "Used by" ,
309
318
disableSortBy : true ,
310
319
accessor : "device_mapping" ,
320
+ id : "device_mapping" ,
311
321
Cell : ( cellProps : IDeviceUserCellProps ) => {
312
322
const numUsers = cellProps . cell . value ?. length || 0 ;
313
323
const users = condenseDeviceUsers ( cellProps . cell . value || [ ] ) ;
@@ -350,6 +360,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
350
360
/>
351
361
) ,
352
362
accessor : "primary_ip" ,
363
+ id : "primary_ip" ,
353
364
Cell : ( cellProps : IHostTableStringCellProps ) => (
354
365
< TextCell value = { cellProps . cell . value } />
355
366
) ,
@@ -374,7 +385,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
374
385
} ,
375
386
disableSortBy : true ,
376
387
accessor : ( originalRow ) => originalRow . mdm . enrollment_status ,
377
- id : "mdm_enrollment_status " ,
388
+ id : "mdm.enrollment_status " ,
378
389
Cell : HostMdmStatusCell ,
379
390
} ,
380
391
{
@@ -397,7 +408,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
397
408
} ,
398
409
disableSortBy : true ,
399
410
accessor : ( originalRow ) => originalRow . mdm . server_url ,
400
- id : "mdm_server_url " ,
411
+ id : "mdm.server_url " ,
401
412
Cell : ( cellProps : IHostTableStringCellProps ) => {
402
413
if ( cellProps . row . original . platform === "chrome" ) {
403
414
return NotSupported ;
@@ -421,6 +432,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
421
432
/>
422
433
) ,
423
434
accessor : "public_ip" ,
435
+ id : "public_ip" ,
424
436
Cell : ( cellProps : IHostTableStringCellProps ) => {
425
437
return (
426
438
< TextCell value = { cellProps . cell . value ?? DEFAULT_EMPTY_CELL_VALUE } />
@@ -450,6 +462,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
450
462
) ;
451
463
} ,
452
464
accessor : "detail_updated_at" ,
465
+ id : "detail_updated_at" ,
453
466
Cell : ( cellProps : IHostTableStringCellProps ) => (
454
467
< TextCell
455
468
value = { { timeString : cellProps . cell . value } }
@@ -480,6 +493,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
480
493
) ;
481
494
} ,
482
495
accessor : "seen_time" ,
496
+ id : "seen_time" ,
483
497
Cell : ( cellProps : IHostTableStringCellProps ) => (
484
498
< TextCell
485
499
value = { { timeString : cellProps . cell . value } }
@@ -493,6 +507,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
493
507
< HeaderCell value = "UUID" isSortedDesc = { cellProps . column . isSortedDesc } />
494
508
) ,
495
509
accessor : "uuid" ,
510
+ id : "uuid" ,
496
511
Cell : ( cellProps : IHostTableStringCellProps ) => (
497
512
< TooltipTruncatedTextCell value = { cellProps . cell . value } />
498
513
) ,
@@ -506,6 +521,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
506
521
/>
507
522
) ,
508
523
accessor : "last_restarted_at" ,
524
+ id : "last_restarted_at" ,
509
525
Cell : ( cellProps : IHostTableStringCellProps ) => {
510
526
const { platform, last_restarted_at } = cellProps . row . original ;
511
527
@@ -527,6 +543,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
527
543
Header : "CPU" ,
528
544
disableSortBy : true ,
529
545
accessor : "cpu_type" ,
546
+ id : "cpu_type" ,
530
547
Cell : ( cellProps : IHostTableStringCellProps ) => (
531
548
< TextCell value = { cellProps . cell . value } />
532
549
) ,
@@ -537,6 +554,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
537
554
< HeaderCell value = "RAM" isSortedDesc = { cellProps . column . isSortedDesc } />
538
555
) ,
539
556
accessor : "memory" ,
557
+ id : "memory" ,
540
558
Cell : ( cellProps : IHostTableNumberCellProps ) => (
541
559
< TextCell value = { cellProps . cell . value } formatter = { humanHostMemory } />
542
560
) ,
@@ -550,6 +568,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
550
568
/>
551
569
) ,
552
570
accessor : "primary_mac" ,
571
+ id : "primary_mac" ,
553
572
Cell : ( cellProps : IHostTableStringCellProps ) => (
554
573
< TextCell value = { cellProps . cell . value } />
555
574
) ,
@@ -563,6 +582,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
563
582
/>
564
583
) ,
565
584
accessor : "hardware_serial" ,
585
+ id : "hardware_serial" ,
566
586
Cell : ( cellProps : IHostTableStringCellProps ) => (
567
587
< TextCell value = { cellProps . cell . value } />
568
588
) ,
@@ -576,6 +596,7 @@ const allHostTableHeaders: IHostTableColumnConfig[] = [
576
596
/>
577
597
) ,
578
598
accessor : "hardware_model" ,
599
+ id : "hardware_model" ,
579
600
Cell : ( cellProps : IHostTableStringCellProps ) => (
580
601
< TextCell value = { cellProps . cell . value } />
581
602
) ,
@@ -590,8 +611,8 @@ const defaultHiddenColumns = [
590
611
"public_ip" ,
591
612
"cpu_type" ,
592
613
// TODO: should those be mdm.<blah>?
593
- "mdm_server_url " ,
594
- "mdm_enrollment_status " ,
614
+ "mdm.server_url " ,
615
+ "mdm.enrollment_status " ,
595
616
"memory" ,
596
617
"uptime" ,
597
618
"uuid" ,
@@ -616,17 +637,17 @@ const generateAvailableTableHeaders = ({
616
637
// skip over column headers that are not shown in free observer tier
617
638
if ( isFreeTier && isOnlyObserver ) {
618
639
if (
619
- currentColumn . accessor === "team_name" ||
640
+ currentColumn . id === "team_name" ||
620
641
currentColumn . id === "selection"
621
642
) {
622
643
return columns ;
623
644
}
624
645
// skip over column headers that are not shown in free admin/maintainer
625
646
} else if ( isFreeTier ) {
626
647
if (
627
- currentColumn . accessor === "team_name" ||
628
- currentColumn . id === "mdm_server_url " ||
629
- currentColumn . id === "mdm_enrollment_status "
648
+ currentColumn . id === "team_name" ||
649
+ currentColumn . id === "mdm.server_url " ||
650
+ currentColumn . id === "mdm.enrollment_status "
630
651
) {
631
652
return columns ;
632
653
}
@@ -646,7 +667,6 @@ const generateAvailableTableHeaders = ({
646
667
647
668
/**
648
669
* Will generate a host table column configuration that a user currently sees.
649
- *
650
670
*/
651
671
const generateVisibleTableColumns = ( {
652
672
hiddenColumns,
@@ -660,7 +680,7 @@ const generateVisibleTableColumns = ({
660
680
// remove columns set as hidden by the user.
661
681
return generateAvailableTableHeaders ( { isFreeTier, isOnlyObserver } ) . filter (
662
682
( column ) => {
663
- return ! hiddenColumns . includes ( column . accessor as string ) ;
683
+ return ! hiddenColumns . includes ( column . id as string ) ;
664
684
}
665
685
) ;
666
686
} ;
0 commit comments