mapcomplete/UI/Popup/QuestionBox.ts

84 lines
3.1 KiB
TypeScript
Raw Normal View History

2020-10-27 01:01:34 +01:00
import {UIEventSource} from "../../Logic/UIEventSource";
import TagRenderingQuestion from "./TagRenderingQuestion";
import Translations from "../i18n/Translations";
2021-05-17 00:18:21 +02:00
import State from "../../State";
import Combine from "../Base/Combine";
import BaseUIElement from "../BaseUIElement";
import {VariableUiElement} from "../Base/VariableUIElement";
import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig";
import {Unit} from "../../Models/Unit";
import Lazy from "../Base/Lazy";
2020-10-27 01:01:34 +01:00
/**
* Generates all the questions, one by one
*/
export default class QuestionBox extends VariableUiElement {
2020-10-27 01:01:34 +01:00
constructor(tagsSource: UIEventSource<any>, tagRenderings: TagRenderingConfig[], units: Unit[]) {
2021-11-07 16:34:51 +01:00
const skippedQuestions: UIEventSource<number[]> = new UIEventSource<number[]>([])
2020-10-27 01:01:34 +01:00
tagRenderings = tagRenderings
2020-12-08 23:44:34 +01:00
.filter(tr => tr.question !== undefined)
.filter(tr => tr.question !== null);
super(tagsSource.map(tags => {
if (tags === undefined) {
return undefined;
}
const tagRenderingQuestions = tagRenderings
.map((tagRendering, i) =>
new Lazy(() => new TagRenderingQuestion(tagsSource, tagRendering,
2021-11-07 16:34:51 +01:00
{
units: units,
afterSave: () => {
// We save and indicate progress by pinging and recalculating
skippedQuestions.ping();
2021-11-07 16:34:51 +01:00
},
cancelButton: Translations.t.general.skip.Clone()
.SetClass("btn btn-secondary mr-3")
.onClick(() => {
skippedQuestions.data.push(i);
skippedQuestions.ping();
})
}
)));
const skippedQuestionsButton = Translations.t.general.skippedQuestions
2020-10-27 01:01:34 +01:00
.onClick(() => {
skippedQuestions.setData([]);
2020-10-27 01:01:34 +01:00
})
const allQuestions: BaseUIElement[] = []
for (let i = 0; i < tagRenderingQuestions.length; i++) {
let tagRendering = tagRenderings[i];
if (tagRendering.IsKnown(tags)) {
continue;
}
if (skippedQuestions.data.indexOf(i) >= 0) {
continue;
}
// this value is NOT known - we show the questions for it
if (State.state.featureSwitchShowAllQuestions.data || allQuestions.length == 0) {
allQuestions.push(tagRenderingQuestions[i])
}
}
if (skippedQuestions.data.length > 0) {
allQuestions.push(skippedQuestionsButton)
}
return new Combine(allQuestions).SetClass("block mb-8")
}, [skippedQuestions])
)
2020-10-27 01:01:34 +01:00
}
}