openvidu-server dashboard to Angular 8

pull/375/head
pabloFuente 2019-06-05 17:27:43 +02:00
parent 5086e5dbd6
commit b6ea4d0584
4 changed files with 1724 additions and 2666 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,43 +1,43 @@
{ {
"dependencies": { "dependencies": {
"@angular/animations": "7.2.10", "@angular/animations": "8.0.0",
"@angular/cdk": "7.3.5", "@angular/cdk": "8.0.0",
"@angular/common": "7.2.10", "@angular/common": "8.0.0",
"@angular/compiler": "7.2.10", "@angular/compiler": "8.0.0",
"@angular/core": "7.2.10", "@angular/core": "8.0.0",
"@angular/flex-layout": "7.0.0-beta.24", "@angular/flex-layout": "8.0.0-beta.26",
"@angular/forms": "7.2.10", "@angular/forms": "8.0.0",
"@angular/http": "7.2.10", "@angular/http": "7.2.15",
"@angular/material": "7.3.5", "@angular/material": "8.0.0",
"@angular/platform-browser": "7.2.10", "@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "7.2.10", "@angular/platform-browser-dynamic": "8.0.0",
"@angular/router": "7.2.10", "@angular/router": "8.0.0",
"core-js": "2.6.5", "core-js": "3.1.3",
"hammerjs": "2.0.8", "hammerjs": "2.0.8",
"jquery": "3.4.1", "jquery": "3.4.1",
"openvidu-browser": "2.10.0", "openvidu-browser": "2.10.0",
"rxjs": "6.4.0", "rxjs": "6.5.2",
"zone.js": "0.9.0" "zone.js": "0.9.1"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "0.13.6", "@angular-devkit/build-angular": "0.800.1",
"@angular/cli": "7.3.6", "@angular/cli": "8.0.1",
"@angular/compiler-cli": "7.2.10", "@angular/compiler-cli": "8.0.0",
"@angular/language-service": "7.2.10", "@angular/language-service": "8.0.0",
"@types/jasmine": "3.3.12", "@types/jasmine": "3.3.13",
"@types/node": "11.11.7", "@types/node": "12.0.4",
"codelyzer": "5.0.0-beta.2", "codelyzer": "5.1.0",
"jasmine-core": "3.3.0", "jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1", "jasmine-spec-reporter": "4.2.1",
"karma": "4.0.1", "karma": "4.1.0",
"karma-chrome-launcher": "2.2.0", "karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.5", "karma-coverage-istanbul-reporter": "2.0.5",
"karma-jasmine": "2.0.1", "karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.0", "karma-jasmine-html-reporter": "1.4.2",
"protractor": "6.0.0", "protractor": "5.4.2",
"ts-node": "8.0.3", "ts-node": "8.2.0",
"tslint": "5.14.0", "tslint": "5.17.0",
"typescript": "3.2.4" "typescript": "3.4.5"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "frontend", "name": "frontend",

View File

@ -17,7 +17,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
websocket: WebSocket; websocket: WebSocket;
@ViewChild('scrollMe') private myScrollContainer: ElementRef; @ViewChild('scrollMe', { static: false }) private myScrollContainer: ElementRef;
lockScroll = false; lockScroll = false;
infoSubscription: Subscription; infoSubscription: Subscription;

View File

@ -7,7 +7,7 @@ import { Subscriber } from 'openvidu-browser';
}) })
export class OpenViduVideoComponent implements AfterViewInit { export class OpenViduVideoComponent implements AfterViewInit {
@ViewChild('videoElement') elementRef: ElementRef; @ViewChild('videoElement', { static: false }) elementRef: ElementRef;
_subscriber: Subscriber; _subscriber: Subscriber;