import { Component, Input, OnInit } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { EducationnalObjective } from 'src/app/class/educationnal-objective/educationnal-objective'; import { Mission } from 'src/app/class/mission/mission'; import { Scenario } from 'src/app/class/scenario/scenario'; import { PieceDetailsService } from 'src/app/services/piece-details/piece-details.service'; import { TooltipService } from 'src/app/services/tooltip/tooltip.service'; import { SuppressDialogComponent } from 'src/app/components/dialogs/suppress-dialog/suppress-dialog.component'; import { CleanDialogComponent } from 'src/app/components/dialogs/clean-dialog/clean-dialog.component'; import { CreateDialogComponent } from 'src/app/components/dialogs/create-dialog/create-dialog.component'; import { Trace } from 'src/app/class/trace/trace'; import { TranslateService } from '@ngx-translate/core'; import { TutorialService } from 'src/app/services/tutorial/tutorial.service'; @Component({ selector: 'app-educational-objective', templateUrl: './educational-objective.component.html', styleUrls: ['./educational-objective.component.scss'] }) export class EducationalObjectiveComponent implements OnInit { @Input() educationnalObjective: EducationnalObjective = new EducationnalObjective(); @Input() scenario: Scenario = new Scenario(); @Input() i: number = 0; constructor(protected pieceDetailsService: PieceDetailsService, protected tooltipService: TooltipService, public dialog: MatDialog, protected translate: TranslateService, private tutorialService: TutorialService) { } ngOnInit(): void { } displayMenu: string = 'hide'; onClickPiece(): void { this.pieceDetailsService.piece = this.scenario.missions[this.i]; this.pieceDetailsService.missionIndex = this.i; this.pieceDetailsService.roleIndex = undefined; this.pieceDetailsService.pieceIndex = this.i; } onClickAdd(): void { const dialogRef = this.dialog.open(CreateDialogComponent, { data: this.translate.instant('mission_new') }); dialogRef.afterClosed().subscribe(result => { if (result == true) { this.scenario.missions.push(new Mission()); this.scenario.traces.push(new Trace(this.scenario.traces.length,'new',this.i,undefined,'all','Mission_['+(this.scenario.missions.length-1)+']')); } else { this.scenario.traces.push(new Trace(this.scenario.traces.length,'cancel_new',this.i,undefined,'all','Mission_['+(this.scenario.missions.length-1)+']')); } }); } onClickErase(): void { const dialogRef = this.dialog.open(CleanDialogComponent, { data: this.translate.instant('missionEducationnalObjective_clean')+' '+(this.i+1) }); dialogRef.afterClosed().subscribe(result => { if (result == true) { this.educationnalObjective.objective = ''; this.scenario.traces.push(new Trace(this.scenario.traces.length,'erase',this.i,undefined,'all','Obj_m_['+(this.i)+']','#D0BBDB')); } else { this.scenario.traces.push(new Trace(this.scenario.traces.length,'cancel_erase',this.i,undefined,'all','Obj_m_['+(this.i)+']','#D0BBDB')); } }); } onClickDelete(): void { const dialogRef = this.dialog.open(SuppressDialogComponent, { data: this.translate.instant('mission_delete')+' '+(this.i+1) }); dialogRef.afterClosed().subscribe(result => { if (result == true) { this.scenario.missions.splice(this.i, 1); this.scenario.traces.push(new Trace(this.scenario.traces.length,'delete',this.i,undefined,undefined,'Mission_['+(this.i)+']')); } else { this.scenario.traces.push(new Trace(this.scenario.traces.length,'cancel_delete',this.i,undefined,undefined,'Mission_['+(this.i)+']')); } }); } canDelete(): boolean { let res: boolean = true; if (this.scenario.missions.length <= 1) { res = false; } return res; } editTrace(event: any, source: string): void { if (event.target.value != '') { this.scenario.traces.push(new Trace(this.scenario.traces.length,'write',this.i,undefined,source,'Obj_m', '#D0BBDB')); } else { this.scenario.traces.push(new Trace(this.scenario.traces.length,'erase',this.i,undefined,source,'Obj_m', '#D0BBDB')); } if (!this.tutorialService.optionnalPhase && !this.tutorialService.phaseDone[this.tutorialService.phase-1] && this.tutorialService.isActive && this.tutorialService.phase == 3 && this.scenario.educationnalObjective.objective && this.scenario.context.univers && this.scenario.context.support && this.scenario.context.duration && this.scenario.context.intrigue && this.scenario.context.other && this.scenario.missions[0].context.duration && this.scenario.missions[0].context.intrigue && this.scenario.missions[0].context.communication && this.scenario.missions[0].context.various && this.scenario.missions[0].educationnalObjective.objective) { this.scenario.traces.push(new Trace(this.scenario.traces.length, 'valid_phase', undefined, undefined, 'phase_'+this.tutorialService.phase, 'Tutorial')); this.tutorialService.validPhase(); } } }