|
| 1 | +<ng-template #BigSwitch let-component='component'> |
| 2 | + <ng-container [ngSwitch]="component"> |
| 3 | + |
| 4 | + <ng-container *ngSwitchCase="'calculator'"> |
| 5 | + <ng-container *ngIf="multiviewConfiguration.calculator"> |
| 6 | + <div cdkDrag> |
| 7 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 8 | + <view-calculator> |
| 9 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 10 | + <i class="fas fa-arrows-alt"></i> |
| 11 | + </button> |
| 12 | + </view-calculator> |
| 13 | + </div> |
| 14 | + </ng-container> |
| 15 | + </ng-container> |
| 16 | + |
| 17 | + <ng-container *ngSwitchCase="'pipeline'"> |
| 18 | + <ng-container *ngIf="multiviewConfiguration.pipeline"> |
| 19 | + <div cdkDrag> |
| 20 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 21 | + <view-pipeline> |
| 22 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 23 | + <i class="fas fa-arrows-alt"></i> |
| 24 | + </button> |
| 25 | + </view-pipeline> |
| 26 | + </div> |
| 27 | + </ng-container> |
| 28 | + </ng-container> |
| 29 | + |
| 30 | + <ng-container *ngSwitchCase="'registers'"> |
| 31 | + <ng-container *ngIf="multiviewConfiguration.registers"> |
| 32 | + <div cdkDrag> |
| 33 | + <div class="example-custom-placeholder-registers" *cdkDragPlaceholder></div> |
| 34 | + <view-registers> |
| 35 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 36 | + <i class="fas fa-arrows-alt"></i> |
| 37 | + </button> |
| 38 | + </view-registers> |
| 39 | + </div> |
| 40 | + </ng-container> |
| 41 | + </ng-container> |
| 42 | + |
| 43 | + <ng-container *ngSwitchCase="'statistics'"> |
| 44 | + <ng-container *ngIf="multiviewConfiguration.statistics"> |
| 45 | + <div cdkDrag> |
| 46 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 47 | + <view-statistics> |
| 48 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 49 | + <i class="fas fa-arrows-alt"></i> |
| 50 | + </button> |
| 51 | + </view-statistics> |
| 52 | + </div> |
| 53 | + </ng-container> |
| 54 | + </ng-container> |
| 55 | + |
| 56 | + <ng-container *ngSwitchCase="'cycle_clock_diagram'"> |
| 57 | + <ng-container *ngIf="multiviewConfiguration.cycle_clock_diagram"> |
| 58 | + <div cdkDrag> |
| 59 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 60 | + <view-cycle-clock-diagram> |
| 61 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 62 | + <i class="fas fa-arrows-alt"></i> |
| 63 | + </button> |
| 64 | + </view-cycle-clock-diagram> |
| 65 | + </div> |
| 66 | + </ng-container> |
| 67 | + </ng-container> |
| 68 | + |
| 69 | + <ng-container *ngSwitchCase="'memory'"> |
| 70 | + <ng-container *ngIf="multiviewConfiguration.memory"> |
| 71 | + <div cdkDrag> |
| 72 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 73 | + <view-memory> |
| 74 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 75 | + <i class="fas fa-arrows-alt"></i> |
| 76 | + </button> |
| 77 | + </view-memory> |
| 78 | + </div> |
| 79 | + </ng-container> |
| 80 | + </ng-container> |
| 81 | + |
| 82 | + <ng-container *ngSwitchCase="'code'"> |
| 83 | + <ng-container *ngIf="multiviewConfiguration.code"> |
| 84 | + <div cdkDrag> |
| 85 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 86 | + <view-code> |
| 87 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 88 | + <i class="fas fa-arrows-alt"></i> |
| 89 | + </button> |
| 90 | + </view-code> |
| 91 | + </div> |
| 92 | + </ng-container> |
| 93 | + </ng-container> |
| 94 | + |
| 95 | + </ng-container> |
| 96 | +</ng-template> |
| 97 | + |
| 98 | + |
| 99 | +<!-- [cdkDropListConnectedTo]="[mainList_2]"--> |
| 100 | +<!-- [cdkDropListData]="this.multiviewConfiguration.list_1"--> |
1 | 101 | <ng-container cdkDropListGroup>
|
2 | 102 | <div class="container-fluid">
|
3 | 103 | <div class="row">
|
4 |
| - <div cdkDropList #mainList="cdkDropList" [cdkDropListData]="main" |
5 |
| - class="example-list col-xxl-6" (cdkDropListDropped)="drop($event)"> |
| 104 | + <div class="example-list col-xxl-6" |
| 105 | + cdkDropList |
| 106 | + #mainList_1="cdkDropList" |
| 107 | + [cdkDropListConnectedTo]="[mainList_2]" |
| 108 | + [cdkDropListData]="main_list_1" |
| 109 | + (cdkDropListDropped)="globals.drop($event)"> |
| 110 | + <ng-container *ngFor="let component of main_list_1"> |
6 | 111 |
|
7 |
| - <ng-container *ngFor="let component of this.multiviewConfiguration.list"> |
| 112 | +<!-- BIB SWITCH --> |
8 | 113 | <ng-container [ngSwitch]="component">
|
9 | 114 |
|
10 | 115 | <ng-container *ngSwitchCase="'calculator'">
|
|
33 | 138 | </ng-container>
|
34 | 139 | </ng-container>
|
35 | 140 |
|
| 141 | + <ng-container *ngSwitchCase="'registers'"> |
| 142 | + <ng-container *ngIf="multiviewConfiguration.registers"> |
| 143 | + <div cdkDrag> |
| 144 | + <div class="example-custom-placeholder-registers" *cdkDragPlaceholder></div> |
| 145 | + <view-registers> |
| 146 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 147 | + <i class="fas fa-arrows-alt"></i> |
| 148 | + </button> |
| 149 | + </view-registers> |
| 150 | + </div> |
| 151 | + </ng-container> |
| 152 | + </ng-container> |
| 153 | + |
| 154 | + <ng-container *ngSwitchCase="'statistics'"> |
| 155 | + <ng-container *ngIf="multiviewConfiguration.statistics"> |
| 156 | + <div cdkDrag> |
| 157 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 158 | + <view-statistics> |
| 159 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 160 | + <i class="fas fa-arrows-alt"></i> |
| 161 | + </button> |
| 162 | + </view-statistics> |
| 163 | + </div> |
| 164 | + </ng-container> |
| 165 | + </ng-container> |
| 166 | + |
36 | 167 | <ng-container *ngSwitchCase="'cycle_clock_diagram'">
|
37 | 168 | <ng-container *ngIf="multiviewConfiguration.cycle_clock_diagram">
|
38 | 169 | <div cdkDrag>
|
|
73 | 204 | </ng-container>
|
74 | 205 |
|
75 | 206 | </ng-container>
|
76 |
| - </ng-container> |
| 207 | +<!-- END BIB SWITCH --> |
77 | 208 |
|
| 209 | + </ng-container> |
78 | 210 | </div>
|
79 |
| - <div cdkDropList [cdkDropListData]="main_list_2" |
80 |
| - class="example-list col-xxl-6" (cdkDropListDropped)="drop($event)"> |
81 | 211 |
|
82 |
| - <ng-container *ngFor="let component of this.multiviewConfiguration.list"> |
| 212 | + <div class="example-list col-xxl-6" |
| 213 | + cdkDropList |
| 214 | + #mainList_2="cdkDropList" |
| 215 | + [cdkDropListConnectedTo]="[mainList_1]" |
| 216 | + [cdkDropListData]="main_list_2" |
| 217 | + (cdkDropListDropped)="globals.drop($event)"> |
| 218 | + <ng-container *ngFor="let component of main_list_2"> |
| 219 | +<!-- BIB SWITCH --> |
83 | 220 | <ng-container [ngSwitch]="component">
|
84 | 221 |
|
| 222 | + <ng-container *ngSwitchCase="'calculator'"> |
| 223 | + <ng-container *ngIf="multiviewConfiguration.calculator"> |
| 224 | + <div cdkDrag> |
| 225 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 226 | + <view-calculator> |
| 227 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 228 | + <i class="fas fa-arrows-alt"></i> |
| 229 | + </button> |
| 230 | + </view-calculator> |
| 231 | + </div> |
| 232 | + </ng-container> |
| 233 | + </ng-container> |
| 234 | + |
| 235 | + <ng-container *ngSwitchCase="'pipeline'"> |
| 236 | + <ng-container *ngIf="multiviewConfiguration.pipeline"> |
| 237 | + <div cdkDrag> |
| 238 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 239 | + <view-pipeline> |
| 240 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 241 | + <i class="fas fa-arrows-alt"></i> |
| 242 | + </button> |
| 243 | + </view-pipeline> |
| 244 | + </div> |
| 245 | + </ng-container> |
| 246 | + </ng-container> |
| 247 | + |
85 | 248 | <ng-container *ngSwitchCase="'registers'">
|
86 | 249 | <ng-container *ngIf="multiviewConfiguration.registers">
|
87 | 250 | <div cdkDrag>
|
|
108 | 271 | </ng-container>
|
109 | 272 | </ng-container>
|
110 | 273 |
|
| 274 | + <ng-container *ngSwitchCase="'cycle_clock_diagram'"> |
| 275 | + <ng-container *ngIf="multiviewConfiguration.cycle_clock_diagram"> |
| 276 | + <div cdkDrag> |
| 277 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 278 | + <view-cycle-clock-diagram> |
| 279 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 280 | + <i class="fas fa-arrows-alt"></i> |
| 281 | + </button> |
| 282 | + </view-cycle-clock-diagram> |
| 283 | + </div> |
| 284 | + </ng-container> |
| 285 | + </ng-container> |
| 286 | + |
| 287 | + <ng-container *ngSwitchCase="'memory'"> |
| 288 | + <ng-container *ngIf="multiviewConfiguration.memory"> |
| 289 | + <div cdkDrag> |
| 290 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 291 | + <view-memory> |
| 292 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 293 | + <i class="fas fa-arrows-alt"></i> |
| 294 | + </button> |
| 295 | + </view-memory> |
| 296 | + </div> |
| 297 | + </ng-container> |
| 298 | + </ng-container> |
| 299 | + |
| 300 | + <ng-container *ngSwitchCase="'code'"> |
| 301 | + <ng-container *ngIf="multiviewConfiguration.code"> |
| 302 | + <div cdkDrag> |
| 303 | + <div class="example-custom-placeholder" *cdkDragPlaceholder></div> |
| 304 | + <view-code> |
| 305 | + <button type="button" class="btn btn-tool" cdkDragHandle> |
| 306 | + <i class="fas fa-arrows-alt"></i> |
| 307 | + </button> |
| 308 | + </view-code> |
| 309 | + </div> |
| 310 | + </ng-container> |
| 311 | + </ng-container> |
| 312 | + |
111 | 313 | </ng-container>
|
112 |
| - </ng-container> |
| 314 | +<!-- END BIB SWITCH --> |
113 | 315 |
|
| 316 | + </ng-container> |
114 | 317 | </div>
|
115 | 318 | </div>
|
116 | 319 | </div>
|
117 | 320 | </ng-container>
|
| 321 | + |
0 commit comments