isncsci-ui
Version:
Web components package for the ISNCSCI project.
154 lines (147 loc) • 7.01 kB
JavaScript
import { _ as __awaiter } from '../../getNextActiveCell.useCase-0d14d792.js';
export { g as getNextActiveCellUseCase, b as setActiveCellUseCase, d as setCellsValueUseCase, a as setExtraInputsUseCase, c as setStarDetailsUseCase, s as setVacDapUseCase } from '../../getNextActiveCell.useCase-0d14d792.js';
import { h as getExamDataFromGridModel, v as validateExamData, y as cloneExamData, p as bindExamDataToGridModel, q as bindExamDataToTotals, g as getEmptyExamData } from '../../examData.helper-8946f863.js';
import { StatusCodes } from '../boundaries/index.js';
import '../helpers/index.js';
import '../domain/index.js';
/*
* This use case is responsible for calculating the totals
* and updating the state of the application
*
* `UNK` values are allowed in the exam data, but they are not valid values in the ISNCSCI library.
* They are converted to `NT` before performing the calculation but not persisted as part of the state.
*
* 1. Get exam data from grid model
* 2. Check for missing values
* 2.1 If missing values are found,
* 2.1.1 add the missing values as calculation errors to the model
* 2.1.2 Update the external listeners so they are informed of the errors
* 2.1.3 Stop
* 3. Validate exam data
* 3.1 If errors are found,
* 3.1.1 add the calculation errors to the model
* 3.1.2 Update the external listeners so they are informed of the errors
* 3.1.3 Stop
* 4. Convert any `UNK` values to `NT` before performing the calculation
* 5. Calculate totals
* 6. Bind totals to exam data
* 7. Mark exam data as complete
* 8. Update state
* 9. Update external listeners
*/
const calculateUseCase = (gridModel, vac, dap, rightLowestNonKeyMuscle, leftLowestNonKeyMuscle, comments, appStoreProvider, examProvider, externalMessageProvider) => __awaiter(void 0, void 0, void 0, function* () {
// 1. Get exam data from grid model
const { examData, missingValues } = getExamDataFromGridModel(gridModel, vac, dap, rightLowestNonKeyMuscle, leftLowestNonKeyMuscle, comments);
// 2. Check for missing values
if (missingValues.length > 0) {
try {
// 2.1 If missing values are found,
// 2.1.1 add the missing values as calculation errors to the model
yield appStoreProvider.setCalculationError(`Missing values:\n${missingValues.join('\n')}`);
// 2.1.2 Update the external listeners so they are informed of the errors
examData.missingValues = missingValues;
yield externalMessageProvider.sendOutExamData(examData);
}
catch (error) {
console.log(error);
}
// 2.1.3 Stop
return;
}
// 3. Validate exam data
const errors = validateExamData(examData);
if (errors.length > 0) {
try {
// 3.1 If errors are found,
// 3.1.1 add the calculation errors
yield appStoreProvider.setCalculationError(`The exam contains errors:\n${errors.join('\n')}`);
// 3.1.2 Update the external listeners so they are informed of the errors
examData.errors = errors;
yield externalMessageProvider.sendOutExamData(examData);
}
catch (error) {
console.log(error);
}
// 3.1.3 Stop
return;
}
// 3. Convert any `UNK` values to `NT` before performing the calculation
const clonedExamData = cloneExamData(examData, true);
try {
// 4. Calculate totals
const totals = yield examProvider.calculate(clonedExamData);
// 5. Bind totals to exam data
Object.keys(totals).forEach((key) => {
examData[key] = totals[key];
});
// 6. Mark exam data as complete
examData.isComplete = true;
// 7. Update state
yield appStoreProvider.setTotals(totals);
// 8. Update external listeners
yield externalMessageProvider.sendOutExamData(examData);
}
catch (error) {
console.log(error);
}
return examData;
});
/*
* 1. Generate an empty exam
* 2. Bind the empty exam to the grid model
* 3. Bind the empty exam to the totals
* 4. Update the state
* 5. Update external listeners
*/
const clearExamUseCase = (appStoreProvider, externalMessageProvider) => __awaiter(void 0, void 0, void 0, function* () {
const emptyExamData = getEmptyExamData();
const gridModel = bindExamDataToGridModel(emptyExamData);
const totals = bindExamDataToTotals(emptyExamData);
try {
yield appStoreProvider.setActiveCell(null, []);
yield appStoreProvider.setGridModel(gridModel);
yield appStoreProvider.setTotals(totals);
yield appStoreProvider.setVacDap(null, null);
yield appStoreProvider.setExtraInputs(null, null, '', '');
yield externalMessageProvider.sendOutExamData(emptyExamData);
}
catch (error) {
console.log(error);
}
});
/*
* 1. Set the app status to `initializing`.
* 2. Set a blank grid model in the app store provider.
* 3. Set the app status to `ready`.
*/
const initializeAppUseCase = (appStoreProvider) => __awaiter(void 0, void 0, void 0, function* () {
// 1. Set the app status to `initializing`.
yield appStoreProvider.updateStatus(StatusCodes.Initializing);
// 2. Set a blank grid model in the app store provider.
yield appStoreProvider.setGridModel(bindExamDataToGridModel(getEmptyExamData()));
// 3. Set the app status to `ready`.
yield appStoreProvider.updateStatus(StatusCodes.Ready);
});
const loadExternalExamDataUseCase = (appStoreProvider, examData) => __awaiter(void 0, void 0, void 0, function* () {
//Sun: Dont validate the input, error will only be shown after calculation
// EE: We do not validate anymore as we do not want to trigger the alert box when loading an external exam
// We, however, still need to clear the error in case a previous exam with error was loaded.
// // 1. Validate exam data
// const errors = validateExamData(examData);
yield appStoreProvider.setCalculationError('');
// 2. Bind exam data to a new grid model
const gridModel = bindExamDataToGridModel(examData);
// 3. Bind exam data to the totals
const totals = bindExamDataToTotals(examData);
// 4. Update state
yield appStoreProvider.setActiveCell(null, []);
yield appStoreProvider.setGridModel(gridModel);
yield appStoreProvider.setTotals(totals);
yield appStoreProvider.setVacDap(examData.voluntaryAnalContraction, examData.deepAnalPressure);
yield appStoreProvider.setExtraInputs(examData.rightLowestNonKeyMuscleWithMotorFunction, examData.leftLowestNonKeyMuscleWithMotorFunction, examData.comments || '', examData.cellComments || '');
});
const setReadonlyUseCase = (readonly, appStoreProvider) => {
appStoreProvider.setReadonly(readonly);
};
export { calculateUseCase, clearExamUseCase, initializeAppUseCase, loadExternalExamDataUseCase, setReadonlyUseCase };
//# sourceMappingURL=index.js.map