openvidu/openvidu-components-angular/projects/openvidu-angular/src/lib/components/session/session.component.html

39 lines
949 B
HTML
Raw Normal View History

<div id="session-container">
<mat-sidenav-container class="sidenav-container">
<mat-sidenav
#sidenav
mode="{{ sidenavMode }}"
position="end"
class="sidenav-menu"
fixedInViewport="true"
fixedTopGap="0"
fixedBottomGap="0"
>
<!-- OPENVIDU PANEL -->
<ng-content select="[panel]"></ng-content>
</mat-sidenav>
<mat-sidenav-content class="sidenav-main">
<!-- OPENVIDU LAYOUT -->
<ng-container *ngIf="layoutTemplate">
<div id="layout-container">
<ng-container *ngTemplateOutlet="layoutTemplate"></ng-container>
</div>
</ng-container>
</mat-sidenav-content>
</mat-sidenav-container>
<!-- OPENVIDU TOOLBAR -->
<div id="footer-container">
<span #toolbarRef>
<!-- Custom toolbar -->
<ng-content select="[toolbar]"></ng-content>
</span>
<!-- Default toolbar if custom toolbar is not injected -->
<ov-toolbar *ngIf="toolbarRef.childNodes.length === 0"></ov-toolbar>
</div>
</div>