openvidu-components: Added panel component

pull/707/head
csantosm 2022-02-02 13:42:33 +01:00
parent e56ac82749
commit e4a6d9be1d
5 changed files with 44 additions and 1 deletions

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PanelComponent } from './panel.component';
describe('PanelComponent', () => {
let component: PanelComponent;
let fixture: ComponentFixture<PanelComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PanelComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ov-panel',
templateUrl: './panel.component.html',
styleUrls: ['./panel.component.css']
})
export class PanelComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}

View File

@ -57,6 +57,7 @@ import { ParticipantService } from './services/participant/participant.service';
import { ParticipantItemComponent } from './components/participants-panel/participant-item/participant-item.component';
import { ParticipantsPanelComponent } from './components/participants-panel/participants-panel/participants-panel.component';
import { VideoconferenceComponent } from './components/videoconference/videoconference.component';
import { PanelComponent } from './components/panel/panel.component';
@NgModule({
declarations: [
@ -75,7 +76,8 @@ import { VideoconferenceComponent } from './components/videoconference/videoconf
NicknamePipe,
ParticipantItemComponent,
ParticipantsPanelComponent,
VideoconferenceComponent
VideoconferenceComponent,
PanelComponent
],
imports: [
CommonModule,