Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content


<div *ngIf="!patientQueue || patientQueue.length===0; then errorContent else patientsContent"></div>
<ng-template #patientsContent>
<div class="float-right">
<div ngbDropdown placement="bottom-right" class="d-inline-block">
<button class="btn btn-sm btn-outline-primary btn-block" id="dropdownPicker" ngbDropdownToggle>Patient Queue({{patientQueue.length}})</button>
<div ngbDropdownMenu aria-labelledby="dropdownPicker" class="queue-list">
<div style="text-align:center">
<button class="btn btn-sm btn-outline-primary btn-block" (click)="clearQueue()">Clear Queue</button>
</div>
<ng-container *ngFor="let patient of patientQueue;">
<div class="queue-item">
<span (click)="selectPatient(patient)" role="button" tabIndex="0">{{patient.fullName}}<i class="sr-only">, click to select this patient</i></span>
<span class="float-right remove-patient" role="button" tabIndex="0" (click)="removePatient(patient)">
<i class="sr-only">Remove {{patient.fullName}} from Queue</i>
<i class="fas fa-times-circle"></i>
</span>
</div>
</ng-container>
</div>
</div>
</div>
</ng-template>
<ng-template #errorContent>
<!--<h4 style="text-align:center">The queue is empty, no data to view..</h4>
<h5 style="text-align:center">Select the 'Dashboard' button above to return to patient selection.</h5>-->
</ng-template>