matrix-dimension/web/app/widget-wrappers/video/video.component.ts

18 lines
665 B
TypeScript
Raw Normal View History

import { Component } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
import { DomSanitizer, SafeUrl } from "@angular/platform-browser";
@Component({
2021-09-01 19:29:24 -04:00
selector: "my-video-widget-wrapper",
2017-12-15 01:52:36 -05:00
templateUrl: "../fullpage-iframe/fullpage-iframe.component.html",
styleUrls: ["../fullpage-iframe/fullpage-iframe.component.scss"],
})
export class VideoWidgetWrapperComponent {
public embedUrl: SafeUrl = null;
constructor(activatedRoute: ActivatedRoute, sanitizer: DomSanitizer) {
2021-09-01 19:01:01 -04:00
const params: any = activatedRoute.snapshot.queryParams;
this.embedUrl = sanitizer.bypassSecurityTrustResourceUrl(params.url);
}
}