2021-02-24 10:13:04 +01:00

139 lines
4.6 KiB
TypeScript

// (C) Copyright 2015 Moodle Pty Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import { Component, OnInit, ViewChild, ElementRef, Input, Type } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { IonContent } from '@ionic/angular';
import { CoreSites } from '@services/sites';
import { CoreDomUtils } from '@services/utils/dom';
import { ModalController, Translate } from '@singletons';
import { AddonModQuizAccessRuleDelegate } from '../../services/access-rules-delegate';
import { AddonModQuizAttemptWSData, AddonModQuizQuizWSData } from '../../services/quiz';
/**
* Modal that renders the access rules for a quiz.
*/
@Component({
selector: 'page-addon-mod-quiz-preflight-modal',
templateUrl: 'preflight-modal.html',
})
export class AddonModQuizPreflightModalComponent implements OnInit {
@ViewChild(IonContent) content?: IonContent;
@ViewChild('preflightFormEl') formElement?: ElementRef;
@Input() title!: string;
@Input() quiz?: AddonModQuizQuizWSData;
@Input() attempt?: AddonModQuizAttemptWSData;
@Input() prefetch?: boolean;
@Input() siteId!: string;
@Input() rules!: string[];
preflightForm: FormGroup;
accessRulesData: { component: Type<unknown>; data: Record<string, unknown>}[] = []; // Component and data for each access rule.
loaded = false;
constructor(
formBuilder: FormBuilder,
) {
// Create an empty form group. The controls will be added by the access rules components.
this.preflightForm = formBuilder.group({});
}
/**
* Component being initialized.
*/
async ngOnInit(): Promise<void> {
this.title = this.title || Translate.instance.instant('addon.mod_quiz.startattempt');
this.siteId = this.siteId || CoreSites.instance.getCurrentSiteId();
this.rules = this.rules || [];
if (!this.quiz) {
return;
}
try {
await Promise.all(this.rules.map(async (rule) => {
// Check if preflight is required for rule and, if so, get the component to render it.
const required = await AddonModQuizAccessRuleDelegate.instance.isPreflightCheckRequiredForRule(
rule,
this.quiz!,
this.attempt,
this.prefetch,
this.siteId,
);
if (!required) {
return;
}
const component = await AddonModQuizAccessRuleDelegate.instance.getPreflightComponent(rule);
if (!component) {
return;
}
this.accessRulesData.push({
component: component,
data: {
rule: rule,
quiz: this.quiz,
attempt: this.attempt,
prefetch: this.prefetch,
form: this.preflightForm,
siteId: this.siteId,
},
});
}));
} catch (error) {
CoreDomUtils.instance.showErrorModalDefault(error, 'Error loading rules');
} finally {
this.loaded = true;
}
}
/**
* Check that the data is valid and send it back.
*
* @param e Event.
*/
sendData(e: Event): void {
e.preventDefault();
e.stopPropagation();
if (!this.preflightForm.valid) {
// Form not valid. Scroll to the first element with errors.
if (!CoreDomUtils.instance.scrollToInputError(this.content)) {
// Input not found, show an error modal.
CoreDomUtils.instance.showErrorModal('core.errorinvalidform', true);
}
} else {
CoreDomUtils.instance.triggerFormSubmittedEvent(this.formElement, false, this.siteId);
ModalController.instance.dismiss(this.preflightForm.value);
}
}
/**
* Close modal.
*/
closeModal(): void {
CoreDomUtils.instance.triggerFormCancelledEvent(this.formElement, this.siteId);
ModalController.instance.dismiss();
}
}