mapcomplete/UI/Popup/QuestionBox.ts

80 lines
2.8 KiB
TypeScript
Raw Normal View History

2020-10-27 01:01:34 +01:00
import {UIElement} from "../UIElement";
import {UIEventSource} from "../../Logic/UIEventSource";
import TagRenderingConfig from "../../Customizations/JSON/TagRenderingConfig";
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 {Unit} from "../../Customizations/JSON/Denomination";
2020-10-27 01:01:34 +01:00
/**
* Generates all the questions, one by one
*/
export default class QuestionBox extends UIElement {
private readonly _tags: UIEventSource<any>;
2020-10-27 01:01:34 +01:00
private readonly _tagRenderings: TagRenderingConfig[];
private _tagRenderingQuestions: BaseUIElement[];
2020-10-27 01:01:34 +01:00
private _skippedQuestions: UIEventSource<number[]> = new UIEventSource<number[]>([])
private _skippedQuestionsButton: BaseUIElement;
2020-10-27 01:01:34 +01:00
constructor(tags: UIEventSource<any>, tagRenderings: TagRenderingConfig[], units: Unit[]) {
2020-10-27 01:01:34 +01:00
super(tags);
this.ListenTo(this._skippedQuestions);
this._tags = tags;
const self = this;
2020-12-08 23:44:34 +01:00
this._tagRenderings = tagRenderings
.filter(tr => tr.question !== undefined)
.filter(tr => tr.question !== null);
2020-10-27 01:01:34 +01:00
this._tagRenderingQuestions = this._tagRenderings
.map((tagRendering, i) => new TagRenderingQuestion(this._tags, tagRendering,units,
2020-10-27 01:01:34 +01:00
() => {
// We save
self._skippedQuestions.ping();
},
Translations.t.general.skip.Clone()
.SetClass("btn btn-secondary mr-3")
2020-10-27 01:01:34 +01:00
.onClick(() => {
self._skippedQuestions.data.push(i);
self._skippedQuestions.ping();
})
));
this._skippedQuestionsButton = Translations.t.general.skippedQuestions.Clone()
.onClick(() => {
self._skippedQuestions.setData([]);
})
2021-05-18 01:05:43 +02:00
this.SetClass("block mb-8")
2020-10-27 01:01:34 +01:00
}
2021-06-10 01:36:20 +02:00
InnerRender() {
const allQuestions : BaseUIElement[] = []
2020-10-27 01:01:34 +01:00
for (let i = 0; i < this._tagRenderingQuestions.length; i++) {
let tagRendering = this._tagRenderings[i];
if(tagRendering.IsKnown(this._tags.data)){
2020-10-27 01:01:34 +01:00
continue;
}
if (this._skippedQuestions.data.indexOf(i) >= 0) {
continue;
}
2021-05-17 00:18:21 +02:00
// this value is NOT known - we show the questions for it
if(State.state.featureSwitchShowAllQuestions.data || allQuestions.length == 0){
allQuestions.push(this._tagRenderingQuestions[i])
}
2020-10-27 01:01:34 +01:00
}
2021-05-17 00:18:21 +02:00
if(this._skippedQuestions.data.length > 0){
allQuestions.push(this._skippedQuestionsButton)
2020-10-27 01:01:34 +01:00
}
2021-05-17 00:18:21 +02:00
2020-10-27 01:01:34 +01:00
2021-06-10 01:36:20 +02:00
return new Combine(allQuestions);
2020-10-27 01:01:34 +01:00
}
}