All files / lib/tree tree.component.ts

99.86% Statements 1434/1436
91.81% Branches 213/232
91.39% Functions 85/93
99.86% Lines 1434/1436

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 14371x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 155x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 59x 2x 2x 2x 2x     2x 59x 59x 59x 59x 63x 63x 1x  
/*******************************************************************************
 * Copyright bei
 * Entwicklungs- und Pflegeverbund für das gemeinsame Fachverfahren gefa
 *
 *******************************************************************************/
import {
  AfterContentChecked,
  AfterContentInit,
  AfterViewInit,
  ChangeDetectorRef,
  Component,
  ContentChild,
  Directive,
  ElementRef,
  EventEmitter,
  HostListener,
  Input,
  NgZone,
  OnChanges,
  OnDestroy,
  Output,
  QueryList,
  SimpleChanges,
  TemplateRef,
  ViewChild,
  ViewChildren,
} from '@angular/core';
 
import { subscribe } from '../utils/internal-utils';
import { isGecko, isWebkit } from '../utils/user-agent';
import {
  Callback,
  FocusableElementOwner,
  Item,
  ItemGroup,
  Key,
  StructuredControlState,
  TreeItem,
  WidgetKeySet,
} from '../utils/util.types';
import {
  createWidgetKeySet,
  isTreeItem,
  isTreeItemBasic,
  itemTrack,
} from '../utils/utilities';
 
import { BaseTreeComponent } from './base-tree.component';
 
const KEYBOARD_SCROLL_AMOUNT = 100;
const LOADING_TEXT_INIT_READ_DELAY = 2000;
const LOADING_TEXT_READ_INTERVAL = 10000;
 
interface RecursiveTreeItemTemplateContext<T> {
  $implicit: RecursiveTreeItem<T>[];
  level: number;
}
 
@Directive({
  selector: '[data-gc-tree-item]',
})
export class TreeItemDirective<
    T,
    I extends TreeItem<unknown> = RecursiveTreeItem<T>,
  >
  implements AfterContentInit, AfterContentChecked, OnDestroy
{
  @Input('data-gc-tree-item')
  public item!: I;
 
  @ContentChild('arrowContainer')
  private arrowContainer?: ElementRef<HTMLElement>;
 
  @ContentChild('menuButton')
  private menuButton?: ElementRef<HTMLElement>;
 
  public readonly nativeElement: HTMLElement;
 
  private prevMenuButton?: HTMLElement;
 
  private subscriptionCallbacks: Callback[] = [];
 
  constructor(
    element: ElementRef<HTMLElement>,
    private zone: NgZone,
  ) {
    this.nativeElement = element.nativeElement;
  }
 
  ngAfterContentChecked() {
    if (this.prevMenuButton !== this.menuButton?.nativeElement) {
      this.prevMenuButton = this.menuButton?.nativeElement;
      this.removeHoverListeners();
      this.initHoverListeners();
    }
  }
 
  ngAfterContentInit(): void {
    this.initHoverListeners();
  }
 
  ngOnDestroy(): void {
    this.removeHoverListeners();
  }
 
  public initHoverListeners(): void {
    this.zone.runOutsideAngular(() => {
      if (this.arrowContainer) {
        this.subscriptionCallbacks.push(
          subscribe(
            this.arrowContainer.nativeElement,
            'mouseover',
            this.mouseOverCallback.bind(this),
          ),
          subscribe(
            this.arrowContainer.nativeElement,
            'mouseout',
            this.mouseOutCallback.bind(this),
          ),
        );
      }
      if (this.menuButton) {
        this.subscriptionCallbacks.push(
          subscribe(
            this.menuButton.nativeElement,
            'mouseover',
            this.mouseOverCallback.bind(this),
          ),
          subscribe(
            this.menuButton.nativeElement,
            'mouseout',
            this.mouseOutCallback.bind(this),
          ),
        );
      }
    });
  }
 
  private removeHoverListeners(): void {
    if (this.subscriptionCallbacks.length > 0) {
      this.subscriptionCallbacks.forEach(cb => {
        cb();
      });
      this.subscriptionCallbacks = [];
    }
  }
 
  private mouseOverCallback(): void {
    this.nativeElement.classList.add('gc-hover-disabled');
  }
 
  private mouseOutCallback(): void {
    this.nativeElement.classList.remove('gc-hover-disabled');
  }
}
 
/**
 * A helper directive that sets tree group line deduction value (needed for proper NG0100 error handling)
 */
@Directive({
  selector: '[data-gc-tree-group]',
})
export class TreeGroupDirective<T> {
  @Input('data-gc-tree-group')
  public groupItem!: RecursiveTreeItem<T>;
}
 
/**
 * A directive allowing to tag template directives who get passed
 * an $implicit value who is that least of type T
 */
@Directive({
  selector: 'ng-template[data-gc-recursive-tree-item]',
})
export class RecursiveTreeItemTemplateDirective<T> {
  @Input('data-gc-recursive-tree-item')
  public typeToken!: T;
 
  constructor(
    public readonly template: TemplateRef<RecursiveTreeItemTemplateContext<T>>,
  ) {}
 
  /**
   * @ignore
   */
  static ngTemplateContextGuard<T>(
    _dir: RecursiveTreeItemTemplateDirective<T>,
    ctx: unknown,
  ): ctx is RecursiveTreeItemTemplateContext<T> {
    return true;
  }
}
 
type RecursiveTreeItem<T> = TreeItem<RecursiveTreeItem<T>> & {
  parent: RecursiveTreeItem<T> | undefined;
  value: T | undefined;
  emptyChildrenItem?: RecursiveTreeItem<T>;
};
 
/** A group of tree items. */
export type TreeItemGroup<T> = ItemGroup<T>;
 
/** Tree item actions. */
export type TreeItemAction<T> =
  | NonNullable<TreeItem<T>['actions']>[number]
  | { specialAction: typeof MIDDLE_CLICK_ACTION_KEY };
 
/** Type of text highlighting for tree items. */
export interface TreeItemTextHighlight {
  highlight: string;
  prop: ReadonlySet<'label' | 'sublabel'>;
}
 
/** Key of the item used link click action event.  */
export const MIDDLE_CLICK_ACTION_KEY: unique symbol = Symbol('middle-click');
 
/**
 * Tree is used for representing links of hierarchically organized web pages.
 */
@Component({
  selector: 'gc-tree',
  templateUrl: './tree.component.html',
  styleUrls: ['../utils/styles/reset-list.css', './tree.component.css'],
})
export class TreeComponent<T>
  extends BaseTreeComponent<T, TreeItem<T>, RecursiveTreeItem<T>>
  implements OnChanges, AfterViewInit, OnDestroy, FocusableElementOwner
{
  /** Label to associate with the tree. */
  @Input()
  public label = '';
 
  /**
   * Keys of items that will be rendered as inactive tree items.
   */
  @Input()
  public inactiveItems: ReadonlySet<string> = new Set();
 
  /**
   * Keys of items that will be highlighted as new tree items.
   * Note that this is intended to add a (temporary) highlight for recently added
   * entries, to mark an entry which is currently in the process of being created and
   * thus incomplete use a regular `TreeItem` with suitable information.
   */
  @Input()
  public newItems: ReadonlySet<string> = new Set();
 
  /**
   * Optional icon provider to use for rendering icons next to entries.
   */
  @Input()
  public iconProvider?: TemplateRef<unknown>;
 
  /**
   * Optional icon provider to use for rendering icons next inside the badges.
   */
  @Input()
  public badgeIconProvider?: TemplateRef<unknown>;
 
  /**
   * show the entry count
   * @deprecated - property no longer needs to be an input and will be removed in future as such. (will remain a static property)
   */
  @Input()
  public showEntryCount = true;
 
  /** Show the button that collapses/expands all tree items. */
  @Input()
  public showCollapseAllButton = false;
 
  /** Used to display a confirmation-banner on top of the tree. */
  @Input()
  public confirmationBannerTemplate: TemplateRef<unknown> | null = null;
 
  /**
   * Enables setting of the value only when the Promise resolves with value "true".
   */
  @Input()
  public permitValueChange?: (v: T) => Promise<boolean> | boolean;
 
  /**
   * Changes the state of the tree.
   * Possible optional states are:
   * - loading: indicates that the tree is in a loading state.
   * - search: indicates that the tree is in an ongoing search context/state.
   */
  @Input()
  public state: StructuredControlState = {
    loading: false,
    search: false,
  };
 
  /**
   * Informs about the change of the selected item.
   */
  @Output()
  public readonly valueChange: EventEmitter<T | undefined> = new EventEmitter<
    T | undefined
  >();
 
  /**
   * Fires upon selection of an action of a tree item.
   * Possible outputs:
   * - *actions* set on a TreeItem
   * - *middle click* action
   */
  @Output()
  public readonly onAction: EventEmitter<{
    data: T;
    action: TreeItemAction<T>;
  }> = new EventEmitter<{
    data: T;
    action: TreeItemAction<T>;
  }>();
 
  /**
   * Event emitted when an open gesture is detected on the item (eg pressing return)
   */
  @Output()
  public readonly onOpenItem: EventEmitter<T> = new EventEmitter<T>();
 
  /**
   * @ignore
   */
  @ViewChildren(TreeItemDirective)
  private listItems?: QueryList<TreeItemDirective<T>>;
 
  /** @ignore */
  @ViewChild('canvas')
  private canvas?: ElementRef<HTMLCanvasElement>;
 
  /** @ignore */
  @ViewChild('nodeCanvas')
  private nodeCanvas?: ElementRef<HTMLElement>;
 
  /** @ignore */
  @ViewChild('loadingIconEl', { read: ElementRef<HTMLElement> })
  private loadingIcon?: ElementRef<HTMLElement>;
 
  /** Text to highlight in the items' label and/or sublabel */
  @Input()
  public get highlightString(): string | TreeItemTextHighlight {
    return this._highlightString;
  }
 
  public set highlightString(value: string | TreeItemTextHighlight) {
    if (typeof value === 'string') {
      this._highlightStringInternal = {
        highlight: value,
        prop: new Set<'label' | 'sublabel'>(['label']),
      };
    } else {
      this._highlightStringInternal = value;
    }
    this._highlightString = value;
  }
 
  /**
   * Menu action items that should be rendered as disabled.
   */
  @Input()
  public get disabledMenuActions(): ReadonlySet<string> {
    return this._disabledMenuActions;
  }
 
  public set disabledMenuActions(value: ReadonlySet<string>) {
    this._disabledMenuActions = value;
    this._int_disabledMenuActions = new Set([
      ...value,
      this._defaultActions[0].key,
    ]);
  }
 
  /** @ignore */
  @ViewChild('rootTree')
  public set rootTreeElement(value: ElementRef<HTMLElement> | undefined) {
    if (this.scrollSubscription) {
      this.scrollSubscription();
      this.scrollSubscription = undefined;
    }
 
    if (value) {
      this.scrollSubscription = this.zone.runOutsideAngular(() => {
        return subscribe(value.nativeElement, 'scroll', () =>
          this.refreshLineCanvas(true),
        );
      });
    }
    this._rootTreeElement = value;
  }
 
  public get rootTreeElement() {
    return this._rootTreeElement;
  }
 
  /** @ignore */
  protected get emptyListText(): string {
    if (this.state.search) {
      return 'Kein Treffer für diese Such- und Filterkriterien gefunden.';
    }
    return 'Keine Einträge vorhanden';
  }
 
  /** @ignore */
  protected get loadingElementId(): string {
    return this._widgetKeys.baseKey + '-loading';
  }
 
  /** @ignore */
  protected get stateText(): string {
    if (this.state.loading && this.state.search) {
      return this.LOADING_SEARCH_MESSAGE;
    }
    if (this.state.loading) {
      return this.TREE_IS_LOADING_MESSAGE;
    }
    return '';
  }
 
  /** @ignore */
  protected readonly _widgetKeys: WidgetKeySet = createWidgetKeySet('gc-tree');
 
  /** @ignore */
  protected _focusedItem?: RecursiveTreeItem<T>;
 
  /** @ignore */
  protected _contextMenuOffset = 0;
 
  /** @ignore */
  protected _allExpanded = false;
 
  /** @ignore */
  protected _allCollapsedBtnIsNarrow = false;
 
  /** @ignore */
  protected readonly _defaultActions = [
    {
      key: this._widgetKeys.widgetKey + '-tree-default',
      label: 'Keine Aktion verfügbar',
    },
  ];
 
  /** @ignore */
  protected _int_disabledMenuActions: ReadonlySet<string> = new Set([
    this._defaultActions[0].key,
  ]);
 
  /** @ignore */
  protected _contextMenuItems: readonly Item[] = this._defaultActions;
 
  /** @ignore */
  protected _isNarrow = false;
 
  /** @ignore */
  protected _secondaryTextUnderLabel = false;
 
  /** @ignore */
  protected _contextMenuOwner?: ElementRef<HTMLElement>;
 
  /** @ignore */
  protected _contextMenuLabelledBy?: string;
 
  /** @ignore */
  protected readonly typeToken!: T; // required to get the generic type into the directive context, see https://github.com/angular/angular/issues/28731
 
  /** @ignore */
  protected lastFocusedItem?: RecursiveTreeItem<T>;
 
  /** @ignore */
  protected _highlightStringInternal: TreeItemTextHighlight = {
    highlight: '',
    prop: new Set(),
  };
 
  /** @ignore */
  protected TREE_IS_LOADING_MESSAGE = 'Baumstruktur wird geladen';
 
  /** @ignore */
  protected LOADING_SEARCH_MESSAGE = 'Ergebnisse werden geladen';
 
  /** @ignore */
  protected visibleLoadingText = true;
 
  /** @ignore */
  protected _tooltipOwner?: ElementRef<HTMLElement>;
 
  /** @ignore */
  private _disabledMenuActions: ReadonlySet<string> = new Set();
 
  /**
   * @ignore
   */
  private resizeObserver!: ResizeObserver;
 
  /**
   * @ignore
   */
  private deepestItem?: RecursiveTreeItem<T>;
 
  /** @ignore */
  private _highlightString: string | TreeItemTextHighlight = '';
 
  /** @ignore */
  private canvasCtx: CanvasRenderingContext2D | null = null;
 
  /** @ignore */
  private expansionTimeout?: ReturnType<typeof setTimeout>;
 
  /** @ignore */
  private textReadingTimers: {
    timeout?: ReturnType<typeof setTimeout>;
    interval?: ReturnType<typeof setInterval>;
  } = {};
 
  /** @ignore */
  private _rootTreeElement?: ElementRef<HTMLElement>;
 
  private scrollSubscription?: Callback;
 
  private canvasDrawingDelta = 0; // A delta applied on firefox to draw lines on a half pixel
 
  constructor(
    private host: ElementRef<HTMLElement>,
    private zone: NgZone,
    private cdr: ChangeDetectorRef,
  ) {
    super(true);
    this.canvasDrawingDelta = isGecko() ? 0.5 : 0;
  }
 
  /**
   * @ignore
   */
  @HostListener('keydown', ['$event'])
  protected async onKeyDown(event: KeyboardEvent): Promise<void> {
    const key = event.key;
    const focusedItem = this._focusedItem;
    if (focusedItem) {
      if (
        event.shiftKey &&
        (key === 'ArrowUp' ||
          key === 'ArrowDown' ||
          key === 'ArrowLeft' ||
          key === 'ArrowRight')
      ) {
        this.handleKeyboardScroll(key);
        event.preventDefault();
      } else {
        switch (key) {
          case 'Enter':
            event.preventDefault();
            await this.handleSubmitButtons(focusedItem, true);
            break;
          case ' ':
            event.preventDefault();
            await this.handleSubmitButtons(focusedItem, false);
            break;
          case 'Tab':
            super.handleItemKeyEvent(event, focusedItem);
            break;
          default:
            super.handleItemKeyEvent(event, focusedItem);
        }
      }
 
      this.determineContextMenuOwner(focusedItem, 'keyboard');
    }
  }
 
  /** @ignore */
  override ngAfterViewInit(): void {
    super.ngAfterViewInit();
    this.zone.runOutsideAngular(() => {
      this.resizeObserver = new ResizeObserver(
        this.resizeObserverCallback.bind(this),
      );
      this.resizeObserver.observe(this.host.nativeElement);
    });
  }
 
  /**
   * @ignore
   */
  public override ngOnDestroy(): void {
    super.ngOnDestroy();
    this.resizeObserver.disconnect();
    clearTimeout(this.textReadingTimers.timeout);
    clearInterval(this.textReadingTimers.interval);
  }
 
  /** @ignore */
  public override ngOnChanges(changes: SimpleChanges): void {
    super.ngOnChanges(changes);
 
    if ('items' in changes || 'itemAdapter' in changes) {
      this.cdr.detectChanges();
      this.updateAllExpandedState();
      this.zone.runOutsideAngular(() => {
        this.computeTextUnderLabelMode();
        setTimeout(() => {
          this.refreshLineCanvas(false);
        });
      });
    }
 
    if ('state' in changes) {
      this.updateTextReadingTimers();
      setTimeout(() => {
        this._tooltipOwner = this.loadingIcon;
      });
    }
  }
 
  /** @ignore */
  public focusChild(): boolean {
    if (this._items[0]) {
      this.getNativeElementForItem(this._items[0]).focus();
      return true;
    }
    return false;
  }
 
  /** Expands the tree item and all of its parents. */
  public override expandItem(key: Key): void {
    super.expandItem(key);
  }
 
  /** Focuses on an item. */
  public focusItem(value: T): void {
    const key = value !== undefined ? this.convert(value).key : undefined;
    if (key !== undefined) {
      const recursiveTreeItem = this.getItemByKey(key);
      if (recursiveTreeItem) {
        this._focusItem(recursiveTreeItem);
      }
    }
  }
 
  /** @ignore */
  protected override isBaseItem(x: unknown): x is TreeItem<T> {
    return isTreeItem(x);
  }
 
  /** @ignore */
  protected override createGroupItem(
    base: RecursiveTreeItem<T>,
  ): RecursiveTreeItem<T> {
    const emptyItem = {
      key: base.key + '-empty',
      label: '',
      parent: base,
      value: undefined,
    };
    return {
      ...base,
      children: base.children?.length === 0 ? [emptyItem] : base.children,
      emptyChildrenItem: base.children?.length === 0 ? emptyItem : undefined,
    };
  }
 
  /** @ignore */
  protected override createItem(
    value: T,
    converted: TreeItem<T>,
    parent: RecursiveTreeItem<T> | undefined,
    children: RecursiveTreeItem<T>[] | undefined,
  ): RecursiveTreeItem<T> {
    return { ...converted, parent, children, value };
  }
 
  /** @ignore */
  protected _focusItem(item: RecursiveTreeItem<T>): void {
    const element = this.getNativeElementForItem(item);
    element.focus();
  }
 
  /**
   * @ignore
   */
  protected _isParentNode(item: RecursiveTreeItem<T>): boolean {
    return item.children != undefined && item.children.length > 0;
  }
 
  /**
   * @ignore
   */
  protected async _onItemClick(
    event: MouseEvent,
    el: HTMLElement,
    item: RecursiveTreeItem<T>,
  ): Promise<void> {
    const doChange = () => {
      event.preventDefault();
      event.stopPropagation();
 
      this._selectedItemKey = item.key;
      this.valueChange.emit(this.value);
      el.focus();
    };
 
    if (event.button === 0) {
      await this.doPermittedChange(item, doChange);
    }
  }
 
  /** @ignore */
  protected _onItemAuxClick(
    event: MouseEvent,
    item: RecursiveTreeItem<T>,
  ): void {
    const isMiddleButton = event.button === 1;
    if (item.value && isMiddleButton) {
      this.onAction.emit({
        data: item.value,
        action: { specialAction: MIDDLE_CLICK_ACTION_KEY },
      });
    }
  }
 
  /** @ignore */
  protected _onItemDblClick(): void {
    this.onOpenItem.emit(this.value);
  }
 
  /** @ignore */
  protected _onMenuAction(treeItem: RecursiveTreeItem<T>, action: Item) {
    const value = treeItem.value;
    if (value !== undefined) {
      this.onAction.emit({ data: value, action });
    } else {
      console.error('failed to lookup tree data for item', treeItem);
    }
  }
 
  /**
   * @ignore
   */
  protected _onFocus(item: RecursiveTreeItem<T>): void {
    this._focusedItem = item;
    this.lastFocusedItem = item;
  }
 
  /**
   * @ignore
   */
  protected _onContextMenuAction(action: Item): void {
    if (this.lastFocusedItem) {
      if (this.lastFocusedItem.value) {
        this.onAction.emit({ data: this.lastFocusedItem.value, action });
      } else {
        console.error('missing value in lastFocusedItem', this.lastFocusedItem);
      }
    }
  }
 
  /**
   * @ignore
   */
  protected _onArrowClick(
    event: MouseEvent,
    targetEl: HTMLElement,
    item: RecursiveTreeItem<T>,
  ): void {
    event.preventDefault();
    event.stopPropagation();
    targetEl.focus();
 
    if (!this.isEndNode(item)) {
      this.toggleExpandedState(item);
    }
  }
 
  /**
   * @ignore
   */
  protected _onPointerDown(
    event: MouseEvent,
    item: RecursiveTreeItem<T>,
  ): void {
    if (event.button === 2) {
      this.determineContextMenuOwner(item, 'mouse');
    }
  }
 
  /** @ignore */
  protected _onAllCollapsedButtonAction(): void {
    this._allExpanded = !this._allExpanded;
    const expanded = this._allExpanded;
 
    this.setExpandedStateForAllItems(this._allExpanded);
    if (!expanded) {
      this._focusedItem = undefined;
      this.lastFocusedItem = undefined;
    }
    this.computeTextUnderLabelMode();
  }
 
  /** @ignore */
  protected override setExpandedState(
    items: RecursiveTreeItem<T> | readonly RecursiveTreeItem<T>[],
    expanded: boolean,
  ) {
    super.setExpandedState(items, expanded);
    this.computeTextUnderLabelMode();
    this.updateAllExpandedState();
    this.cdr.detectChanges();
 
    this.zone.runOutsideAngular(() => {
      this.refreshLineCanvas(false);
    });
  }
 
  /**
   * @ignore
   */
  protected _isSelectedItem(item: RecursiveTreeItem<T>): boolean {
    return this._selectedItemKey === item.key;
  }
 
  /**
   * @ignore
   */
  protected _shouldHaveInitialFocus(item: RecursiveTreeItem<T>): boolean {
    const firstItemKey = this._items[0]?.key;
    return this.lastFocusedItem === undefined && firstItemKey === item.key;
  }
 
  /** @ignore */
  protected _getCategoryItemsCount(categoryKey: Key): number {
    return this.categoryItemCount.get(categoryKey) ?? 0;
  }
 
  /** @ignore */
  protected _onTreeCategoryClick(item: RecursiveTreeItem<T>): void {
    this.toggleExpandedState(item);
  }
 
  /**
   * @ignore
   */
  protected _itemTrackBy(_index: number, item: Item): string {
    return itemTrack(item);
  }
 
  /** @ignore */
  protected getTreeItemGroupId(item: Item): string {
    return this._widgetKeys.baseKey + '-group-' + item.key;
  }
 
  /** @ignore */
  protected treeItemId(key: Key): string {
    return this._widgetKeys.widgetKey + '-i-' + key;
  }
 
  /** @ignore */
  protected treeItemPrimaryLabelId(key: Key): string {
    return this._widgetKeys.widgetKey + '-il-' + key;
  }
 
  /** @ignore */
  protected override scrollToSelectedItem(): void {
    if (!this.rootTreeElement) {
      return;
    }
    const selectedItem = this.listItems?.find(
      i => i.item.key === this._selectedItemKey,
    );
    const scrollContainerHeight =
      this.rootTreeElement.nativeElement.getBoundingClientRect().height;
    const rootTreeHeight =
      this.rootTreeElement.nativeElement.firstElementChild?.getBoundingClientRect()
        .height;
    const isScrollable = scrollContainerHeight !== rootTreeHeight;
 
    if (selectedItem && isScrollable) {
      selectedItem.nativeElement.scrollIntoView({
        block: 'nearest',
        inline: 'nearest',
      });
    }
  }
 
  /** @ignore */
  protected isHorizontalLineVisible(item: RecursiveTreeItem<T>): boolean {
    return (
      item.parent !== undefined &&
      this.isExpanded(item.parent) &&
      !this.isTreeItemGroupKey(item.parent.key)
    );
  }
 
  /** @ignore */
  protected isVerticalLineVisible(item: RecursiveTreeItem<T>): boolean {
    const foundItem = this.listItems?.find(i => i.item.key === item.key);
    const isBasicItemAmongGroupedItems =
      this._items.some(i => this.isTreeItemGroupKey(i.key)) &&
      isTreeItemBasic(item) &&
      this._items.some(i => i.key === item.key);
    const isExpandedWithChildren =
      foundItem?.nativeElement !== undefined &&
      foundItem.item.children !== undefined &&
      this.isExpanded(foundItem.item);
 
    return (
      isExpandedWithChildren &&
      !this.isTreeItemGroupKey(item.key) &&
      !isBasicItemAmongGroupedItems
    );
  }
 
  /**
   * @ignore
   */
  private determineContextMenuOwner(
    item: RecursiveTreeItem<T>,
    source: 'mouse' | 'keyboard',
  ): void {
    this._contextMenuItems =
      item.actions && item.actions.length > 0
        ? item.actions
        : this._defaultActions;
    const liElement = this.getNativeElementForItem(item);
 
    this.setCorrectContextMenuOffset(source, liElement);
    this._contextMenuOwner = new ElementRef(liElement);
    this._contextMenuLabelledBy = this.treeItemPrimaryLabelId(item.key);
  }
 
  /**
   * @ignore
   */
  private setCorrectContextMenuOffset(
    source: 'mouse' | 'keyboard',
    htmlElement: HTMLElement,
  ): void {
    if (source === 'keyboard') {
      this._contextMenuOffset =
        32 - htmlElement.getBoundingClientRect().height / 2;
    } else {
      this._contextMenuOffset = 0;
    }
  }
 
  /** @ignore */
  private handleKeyboardScroll(
    key: 'ArrowUp' | 'ArrowDown' | 'ArrowLeft' | 'ArrowRight',
  ): void {
    if (!this.rootTreeElement) {
      return;
    }
    switch (key) {
      case 'ArrowDown':
        this.rootTreeElement.nativeElement.scrollBy({
          top: KEYBOARD_SCROLL_AMOUNT,
          behavior: 'smooth',
        });
        break;
      case 'ArrowUp':
        this.rootTreeElement.nativeElement.scrollBy({
          top: -KEYBOARD_SCROLL_AMOUNT,
          behavior: 'smooth',
        });
        break;
      case 'ArrowRight':
        this.rootTreeElement.nativeElement.scrollBy({
          left: KEYBOARD_SCROLL_AMOUNT,
          behavior: 'smooth',
        });
        break;
      case 'ArrowLeft':
        this.rootTreeElement.nativeElement.scrollBy({
          left: -KEYBOARD_SCROLL_AMOUNT,
          behavior: 'smooth',
        });
        break;
    }
  }
 
  /** @ignore */
  private updateAllExpandedState(): void {
    const flattenChildren = (
      items: readonly RecursiveTreeItem<T>[],
    ): readonly RecursiveTreeItem<T>[] =>
      items.reduce<readonly RecursiveTreeItem<T>[]>(
        (acc, val) => [
          ...acc,
          val,
          ...(val.children ? flattenChildren(val.children) : []),
        ],
        [],
      );
    const flatItems = flattenChildren(this._items);
    this._allExpanded = flatItems
      .filter(i => !this.isEndNode(i))
      .every(i => this.isExpanded(i));
  }
 
  /** @ignore */
  private async handleSubmitButtons(
    focusedItem: RecursiveTreeItem<T>,
    isOpenAction: boolean,
  ): Promise<void> {
    const doChange = () => {
      // regular item -> select and optionally open
      this._selectedItemKey = focusedItem.key;
      const newValue = this.value;
      this.valueChange.emit(newValue);
      if (isOpenAction) {
        this.onOpenItem.emit(newValue);
      }
    };
 
    // check whether the action is performed on a group category element, in which case no selection is performed
    if (
      focusedItem.parent === undefined &&
      this.isTreeItemGroupKey(focusedItem.key)
    ) {
      this._onTreeCategoryClick(focusedItem);
    } else {
      await this.doPermittedChange(focusedItem, doChange);
    }
  }
 
  /**
   * @ignore
   */
  private resizeObserverCallback(): void {
    const width = this.host.nativeElement.getBoundingClientRect().width;
 
    this.toggleNarrowMode(width);
    this.toggleNarrowAllCollapsedBtnMode(width);
 
    if (this.deepestItem) {
      this.toggleSecondaryTextUnderLabelMode(this.deepestItem);
    }
 
    this.refreshLineCanvas(false);
  }
 
  /** @ignore */
  private toggleNarrowAllCollapsedBtnMode(width: number): void {
    this._allCollapsedBtnIsNarrow = width < 400;
  }
 
  /**
   * @ignore
   */
  private computeTextUnderLabelMode(): void {
    this.determineDeepestItem();
 
    if (this.deepestItem) {
      this.toggleSecondaryTextUnderLabelMode(this.deepestItem);
    }
  }
 
  /** @ignore */
  private determineDeepestItem() {
    interface CurrDeepestItem {
      item: RecursiveTreeItem<T>;
      itemLevel: number;
 
      currentAriaLevel: number;
    }
 
    if (this._items.length > 0) {
      const effectiveLevel = (
        item: RecursiveTreeItem<T>,
        ariaLevel: number,
      ): number => {
        return item.visualLevel && item.visualLevel > ariaLevel
          ? item.visualLevel
          : ariaLevel;
      };
 
      const findDeepest = (
        currDeepestItem: CurrDeepestItem,
        item: RecursiveTreeItem<T>,
      ): CurrDeepestItem => {
        const currLevel = effectiveLevel(
          item,
          currDeepestItem.currentAriaLevel,
        );
 
        let deepestItem = currDeepestItem;
        if (currLevel > currDeepestItem.itemLevel) {
          deepestItem = {
            item,
            itemLevel: currLevel,
            currentAriaLevel: currDeepestItem.currentAriaLevel,
          };
        }
 
        if (item.children && this.isExpanded(item)) {
          deepestItem = item.children.reduce(findDeepest, {
            ...deepestItem,
            currentAriaLevel: currDeepestItem.currentAriaLevel + 1,
          });
        }
 
        return {
          ...deepestItem,
          currentAriaLevel: currDeepestItem.currentAriaLevel,
        };
      };
 
      const initialItem = this._items[0];
      const deepestItem = this._items.reduce(findDeepest, {
        item: initialItem,
        itemLevel: effectiveLevel(initialItem, 1),
        currentAriaLevel: 1,
      });
      this.deepestItem = deepestItem.item;
    } else {
      this.deepestItem = undefined;
    }
  }
 
  /**
   * @ignore
   */
  private toggleSecondaryTextUnderLabelMode(el: RecursiveTreeItem<T>): void {
    if (this.state.loading) {
      return;
    }
 
    if (this.expansionTimeout !== undefined) {
      window.clearTimeout(this.expansionTimeout);
    }
 
    // wait for expansion
    this.expansionTimeout = setTimeout(() => {
      const treeItemEl = this.getNativeElementForItem(el);
      const elWidth = treeItemEl.getBoundingClientRect().width;
      const prevVal = this._secondaryTextUnderLabel;
      const newVal = elWidth < 640;
      if (prevVal !== newVal) {
        if (!NgZone.isInAngularZone()) {
          this.zone.run(() => {
            this._secondaryTextUnderLabel = newVal;
          });
        } else {
          this._secondaryTextUnderLabel = newVal;
        }
      }
    });
  }
 
  /**
   * @ignore
   */
  private toggleNarrowMode(width: number): void {
    const prevVal = this._isNarrow;
    const newVal = width < 512;
 
    if (prevVal !== newVal) {
      this.zone.run(() => {
        this._isNarrow = newVal;
      });
    }
  }
 
  /** @ignore */
  private getNativeElementForItem(item: RecursiveTreeItem<T>): HTMLElement {
    const element = document.getElementById(this.treeItemId(item.key));
    if (!element) {
      throw new Error(`failed to find HTML element for item ${item.key}`);
    } else {
      return element;
    }
  }
 
  /** @ignore */
  private async doPermittedChange(
    item: RecursiveTreeItem<T>,
    doChange: () => void,
  ) {
    if (
      this.permitValueChange !== undefined &&
      item.value &&
      this.value !== item.value
    ) {
      const permit = this.permitValueChange(item.value);
 
      if (typeof permit !== 'boolean') {
        // permit is of type Promise<boolean>
 
        const proceed = await permit;
        if (proceed) {
          doChange();
        }
      } else if (permit) {
        // permit is of type boolean
        doChange();
      }
    } else {
      doChange();
    }
  }
 
  private maxDomItem() {
    if (isGecko()) {
      return 3000;
    } else if (isWebkit()) {
      return 4000;
    }
    return 8000;
  }
 
  /** @ignore */
  private refreshLineCanvas(repositionOnly: boolean): void {
    NgZone.assertNotInAngularZone();
 
    if (
      this.canvas &&
      this.canvasCtx !== this.canvas.nativeElement.getContext('2d')
    ) {
      this.canvasCtx = this.canvas.nativeElement.getContext('2d');
    }
 
    if (
      !this.rootTreeElement ||
      !this.canvas ||
      !this.canvasCtx ||
      !this.nodeCanvas
    ) {
      return;
    }
 
    const treeEl = this.rootTreeElement.nativeElement;
    this.canvas.nativeElement.width = treeEl.offsetWidth;
    this.canvas.nativeElement.height = treeEl.clientHeight;
 
    if ((this.listItems?.length ?? 0) > this.maxDomItem()) {
      const color = matchMedia('(forced-colors: active)').matches
        ? 'CanvasText'
        : getComputedStyle(document.body).getPropertyValue('--gc-grau-dunkel');
 
      this.canvasCtx.clearRect(
        0,
        0,
        this.canvas.nativeElement.width,
        this.canvas.nativeElement.height,
      );
      this.canvasCtx.lineWidth = 2;
      this.canvasCtx.strokeStyle = color;
      this.computeCanvasLines(this.canvasCtx);
      this.nodeCanvas.nativeElement.innerHTML = '';
    } else {
      this.canvasCtx.clearRect(
        0,
        0,
        this.canvas.nativeElement.width,
        this.canvas.nativeElement.height,
      );
      if (!repositionOnly) {
        this.computeDomCanvasLines(this.nodeCanvas.nativeElement);
      }
    }
  }
 
  /** @ignore */
  private computeDomCanvasLines(nodeContainer: HTMLElement) {
    const color = 'var(--gc-grau-dunkel)';
    let dom = '';
    this.listItems?.forEach(i => {
      dom += this.computeHorizontalDomLine(i, color);
      dom += this.computeVerticalDomLine(i, color);
    });
    nodeContainer.innerHTML = dom;
  }
 
  /** @ignore */
  private computeHorizontalDomLine(
    i: TreeItemDirective<T, RecursiveTreeItem<T>>,
    color: string,
  ): string {
    if (this.isHorizontalLineVisible(i.item)) {
      const left = this.getHorizontalLineLeft(i);
      const top = this.getHorizontalLineTopPos(i);
      const width =
        this.getHorizontalLineWidth(i) - this.getHorizontalLineLeft(i);
 
      return `<div style="position: absolute; left: ${left.toFixed(0)}px; top: ${top.toFixed(0)}px; width: ${width.toFixed(0)}px; border-top: 2px solid ${color};"></div>`;
    }
    return '';
  }
 
  /** @ignore */
  private computeVerticalDomLine(
    i: TreeItemDirective<T, RecursiveTreeItem<T>>,
    color: string,
  ): string {
    if (this.isVerticalLineVisible(i.item)) {
      const top = this.getVerticalLineTopPos(i);
      const left = this.getVerticalLineLeftPos(i);
      const height =
        this.getVerticalLineHeight(i) - this.getVerticalLineTopPos(i);
 
      return `<div style="position: absolute; left: ${left.toFixed(0)}px; top: ${top.toFixed(0)}px; width: 2px; height: ${height.toFixed(0)}px; border-color: ${color}; border-width: 0 0 2px 2px; border-style: solid; width: 13px; border-radius: 0 0 0 4px;"></div>`;
    }
    return '';
  }
 
  /** @ignore */
  private computeCanvasLines(canvasCtx: CanvasRenderingContext2D): void {
    this.listItems?.forEach(i => {
      this.computeHorizontalLine(i, canvasCtx);
      this.computeVerticalLine(i, canvasCtx);
    });
  }
 
  /** @ignore */
  private computeHorizontalLine(
    i: TreeItemDirective<T, RecursiveTreeItem<T>>,
    canvasCtx: CanvasRenderingContext2D,
  ) {
    if (this.isHorizontalLineVisible(i.item) && this.rootTreeElement) {
      const deltaX = this.rootTreeElement.nativeElement.scrollLeft;
      const deltaY = this.rootTreeElement.nativeElement.scrollTop;
      const y = this.getHorizontalLineTopPos(i) - deltaY;
      // Skip lines not needed
      if (y > -20 && y < this.rootTreeElement.nativeElement.clientHeight + 20) {
        canvasCtx.beginPath();
        canvasCtx.moveTo(this.getHorizontalLineLeft(i) - deltaX, y);
        canvasCtx.lineTo(this.getHorizontalLineWidth(i) - deltaX, y);
        canvasCtx.stroke();
      }
    }
  }
 
  /** @ignore */
  private getHorizontalLineTopPos(item: TreeItemDirective<T>): number {
    const el = item.nativeElement;
    return el.offsetTop + 32;
  }
 
  /** @ignore */
  private getHorizontalLineLeft(item: TreeItemDirective<T>): number {
    const parent = item.item.parent;
    const parentChildren = item.item.parent?.children;
    const parentEl = this.listItems?.find(
      i => parent?.key === i.item.key,
    )?.nativeElement;
    const lastNodeInset =
      parentChildren &&
      parentChildren[parentChildren.length - 1].key === item.item.key
        ? 12
        : 0;
 
    // lastNodeInset is used to provide space for a better curvature of the vertical line
    return parentEl ? parentEl.offsetLeft + 32 + lastNodeInset : 4;
  }
 
  /** @ignore */
  private getHorizontalLineWidth(item: TreeItemDirective<T>): number {
    const el = item.nativeElement;
    return el.offsetLeft;
  }
 
  /** @ignore */
  private getVerticalLineLeftPos(item: TreeItemDirective<T>): number {
    const el = item.nativeElement;
    return el.offsetLeft + 32;
  }
 
  /** @ignore */
  private getVerticalLineTopPos(item: TreeItemDirective<T>): number {
    const el = item.nativeElement;
    return el.offsetTop + el.getBoundingClientRect().height;
  }
 
  /** @ignore */
  private getVerticalLineHeight(item: TreeItemDirective<T>): number {
    const children = item.item.children;
 
    if (children && children.length > 0) {
      const lastChild = children[children.length - 1];
      const lastChildEl = this.listItems?.find(
        i => lastChild.key === i.item.key,
      )?.nativeElement;
      if (lastChildEl) {
        return lastChildEl.offsetTop + 32;
      }
    }
    return 0;
  }
 
  /** @ignore */
  private computeVerticalLine(
    i: TreeItemDirective<T, RecursiveTreeItem<T>>,
    canvasCtx: CanvasRenderingContext2D,
  ) {
    if (this.isVerticalLineVisible(i.item) && this.rootTreeElement) {
      const deltaX = this.rootTreeElement.nativeElement.scrollLeft;
      const deltaY = this.rootTreeElement.nativeElement.scrollTop;
 
      const x =
        this.getVerticalLineLeftPos(i) - deltaX - this.canvasDrawingDelta;
      const y =
        this.getVerticalLineHeight(i) - deltaY + this.canvasDrawingDelta;
 
      if (y > -20) {
        canvasCtx.beginPath();
        canvasCtx.moveTo(
          x,
          this.getVerticalLineTopPos(i) - deltaY < 0
            ? 0
            : this.getVerticalLineTopPos(i) - deltaY,
        );
        // 4px === border radius (curvature)
        canvasCtx.arcTo(x, this.getVerticalLineHeight(i) - deltaY, x + 4, y, 4);
        // 13px allows enough space for a proper curvature to happen
        canvasCtx.lineTo(x + 13, y);
        canvasCtx.stroke();
      }
    }
  }
 
  /** @ignore */
  private updateTextReadingTimers() {
    if (this.state.loading) {
      this.textReadingTimers.timeout = setTimeout(() => {
        this.visibleLoadingText = false;
        this.visibleLoadingText = true;
 
        this.textReadingTimers.interval = setInterval(() => {
          this.visibleLoadingText = false;
          this.visibleLoadingText = true;
        }, LOADING_TEXT_READ_INTERVAL);
      }, LOADING_TEXT_INIT_READ_DELAY);
    } else {
      clearTimeout(this.textReadingTimers.timeout);
      clearInterval(this.textReadingTimers.interval);
    }
  }
}