OpenSlides/client/src/app/core/ui-services/projection-dialog.service.ts

54 lines
1.8 KiB
TypeScript
Raw Normal View History

import { Injectable } from '@angular/core';
2019-02-08 17:24:32 +01:00
import { MatDialog } from '@angular/material';
import { Projectable, ProjectorElementBuildDeskriptor, isProjectable } from 'app/site/base/projectable';
import {
ProjectionDialogComponent,
ProjectionDialogReturnType
} from 'app/shared/components/projection-dialog/projection-dialog.component';
import { ProjectorService } from '../core-services/projector.service';
/**
* Manages the projection dialog. Projects the result of the user's choice.
*/
@Injectable({
providedIn: 'root'
})
2019-02-08 17:24:32 +01:00
export class ProjectionDialogService {
/**
* Constructor.
*
* @param dialog
* @param projectorService
*/
2019-02-08 17:24:32 +01:00
public constructor(private dialog: MatDialog, private projectorService: ProjectorService) {}
/**
* Opens the projection dialog for the given projectable. After the user's choice,
* the projectors will be updated.
*
* @param obj The projectable.
*/
public async openProjectDialogFor(obj: Projectable | ProjectorElementBuildDeskriptor): Promise<void> {
let descriptor: ProjectorElementBuildDeskriptor;
if (isProjectable(obj)) {
descriptor = obj.getSlide();
} else {
descriptor = obj;
}
const dialogRef = this.dialog.open<
ProjectionDialogComponent,
ProjectorElementBuildDeskriptor,
ProjectionDialogReturnType
>(ProjectionDialogComponent, {
maxHeight: '90vh',
data: descriptor
});
const response = await dialogRef.afterClosed().toPromise();
if (response) {
const [projectors, projectorElement]: ProjectionDialogReturnType = response;
this.projectorService.projectOnMultiple(projectors, projectorElement);
}
}
}