MapComplete/UI/BigComponents/FilterView.ts

118 lines
3.7 KiB
TypeScript
Raw Normal View History

2021-07-26 12:26:41 +02:00
import { Utils } from "./../../Utils";
import { FixedInputElement } from "./../Input/FixedInputElement";
import { RadioButton } from "./../Input/RadioButton";
2021-07-20 15:14:51 +02:00
import { FixedUiElement } from "./../Base/FixedUiElement";
import { LayerConfigJson } from "./../../Customizations/JSON/LayerConfigJson";
import { UIEventSource } from "../../Logic/UIEventSource";
import { VariableUiElement } from "../Base/VariableUIElement";
import State from "../../State";
import Toggle from "../Input/Toggle";
import Combine from "../Base/Combine";
import Translations from "../i18n/Translations";
import LayerConfig from "../../Customizations/JSON/LayerConfig";
import BaseUIElement from "../BaseUIElement";
import { Translation } from "../i18n/Translation";
import ScrollableFullScreen from "../Base/ScrollableFullScreen";
2021-07-20 16:29:48 +02:00
import Svg from "../../Svg";
2021-07-26 12:26:41 +02:00
import FilterConfig from "../../Customizations/JSON/FilterConfig";
import CheckBoxes from "../Input/Checkboxes";
import { InputElement } from "../Input/InputElement";
import { TagsFilter } from "../../Logic/Tags/TagsFilter";
import InputElementMap from "../Input/InputElementMap";
import { And } from "../../Logic/Tags/And";
2021-07-20 15:14:51 +02:00
/**
* Shows the filter
*/
2021-07-26 12:26:41 +02:00
export default class FilterView extends VariableUiElement {
constructor(filteredLayer) {
super(
filteredLayer.map((filteredLayers) =>
filteredLayers.map(FilterView.createOneFilteredLayerElement)
)
2021-07-20 15:14:51 +02:00
);
}
2021-07-26 12:26:41 +02:00
static createOneFilteredLayerElement(filteredLayer) {
const layer: LayerConfig = filteredLayer.layerDef;
const iconStyle = "width:1.5rem;height:1.5rem;margin-left:1.25rem";
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
const icon = new Combine([Svg.checkbox_filled]).SetStyle(iconStyle);
const iconUnselected = new Combine([Svg.checkbox_empty]).SetStyle(
iconStyle
);
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
if (filteredLayer.layerDef.name === undefined) {
return;
}
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
const style = "display:flex;align-items:center;color:#007759";
2021-07-22 11:29:09 +02:00
2021-07-26 12:26:41 +02:00
const name: Translation = Translations.WT(
filteredLayer.layerDef.name
)?.Clone();
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
const styledNameChecked = name
.Clone()
.SetStyle("font-size:large;padding-left:1.25rem");
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
const styledNameUnChecked = name
.Clone()
.SetStyle("font-size:large;padding-left:1.25rem");
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
const layerChecked = new Combine([icon, styledNameChecked]).SetStyle(style);
2021-07-20 15:14:51 +02:00
2021-07-26 12:26:41 +02:00
const layerNotChecked = new Combine([
iconUnselected,
styledNameUnChecked,
]).SetStyle(style);
2021-07-22 11:29:09 +02:00
2021-07-26 12:26:41 +02:00
let listFilterElements: InputElement<TagsFilter>[] = layer.filters.map(
FilterView.createFilter
);
2021-07-22 11:29:09 +02:00
2021-07-26 12:26:41 +02:00
function update() {
let listTagsFilters = Utils.NoNull(
listFilterElements.map((input) => input.GetValue().data)
);
filteredLayer.appliedTags.setData(new And(listTagsFilters));
}
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
listFilterElements.forEach((inputElement) =>
inputElement.GetValue().addCallback((_) => update())
);
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
return new Toggle(
new Combine([layerChecked, ...listFilterElements]),
layerNotChecked,
filteredLayer.isDisplayed
)
.ToggleOnClick()
.SetStyle("margin:0.3em;");
}
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
static createFilter(filterConfig: FilterConfig): InputElement<TagsFilter> {
if (filterConfig.options.length === 1) {
let option = filterConfig.options[0];
let checkboxes = new CheckBoxes([option.question.Clone()]);
return new InputElementMap(
checkboxes,
(t0, t1) => t0 === t1,
(numbers) => (numbers.length > 0 ? option.osmTags : undefined),
(tagsFilter) => (tagsFilter == undefined ? [] : [0])
);
}
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
let options = filterConfig.options;
2021-07-20 16:29:48 +02:00
2021-07-26 12:26:41 +02:00
return new RadioButton(
options.map(
(option) =>
new FixedInputElement(option.question.Clone(), option.osmTags)
)
);
2021-07-20 15:14:51 +02:00
}
}