mapcomplete/UI/BigComponents/RightControls.ts

119 lines
4.2 KiB
TypeScript
Raw Normal View History

2021-07-28 16:48:59 +02:00
import Combine from "../Base/Combine";
import Toggle from "../Input/Toggle";
import MapControlButton from "../MapControlButton";
import GeoLocationHandler from "../../Logic/Actors/GeoLocationHandler";
import Svg from "../../Svg";
import MapState from "../../Logic/State/MapState";
2022-07-21 15:54:24 +02:00
import LevelSelector from "../Input/LevelSelector";
import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline";
import {Utils} from "../../Utils";
import {TagUtils} from "../../Logic/Tags/TagUtils";
import {RegexTag} from "../../Logic/Tags/RegexTag";
import {Or} from "../../Logic/Tags/Or";
import {Tag} from "../../Logic/Tags/Tag";
import {TagsFilter} from "../../Logic/Tags/TagsFilter";
2021-07-28 16:48:59 +02:00
export default class RightControls extends Combine {
2022-07-21 15:54:24 +02:00
constructor(state: MapState & { featurePipeline: FeaturePipeline }) {
2021-11-07 16:34:51 +01:00
const geolocatioHandler = new GeoLocationHandler(
state
)
2021-11-07 16:34:51 +01:00
2021-07-28 16:48:59 +02:00
const geolocationButton = new Toggle(
new MapControlButton(
geolocatioHandler
, {
2021-07-28 16:48:59 +02:00
dontStyle: true
}
),
undefined,
state.featureSwitchGeolocation
2021-07-28 16:48:59 +02:00
);
const plus = new MapControlButton(
2021-08-20 00:06:44 +02:00
Svg.plus_svg()
2021-07-28 16:48:59 +02:00
).onClick(() => {
state.locationControl.data.zoom++;
state.locationControl.ping();
2021-07-28 16:48:59 +02:00
});
const min = new MapControlButton(
2021-08-20 00:06:44 +02:00
Svg.min_svg()
2021-07-28 16:48:59 +02:00
).onClick(() => {
state.locationControl.data.zoom--;
state.locationControl.ping();
2021-07-28 16:48:59 +02:00
});
2022-07-21 15:54:24 +02:00
const levelsInView = state.currentBounds.map(bbox => {
if (bbox === undefined) {
2022-07-21 15:54:24 +02:00
return []
}
const allElements = state.featurePipeline.GetAllFeaturesAndMetaWithin(bbox);
const allLevelsRaw: string[] = [].concat(...allElements.map(allElements => allElements.features.map(f => <string>f.properties["level"])))
const allLevels = [].concat(...allLevelsRaw.map(l => TagUtils.LevelsParser(l)))
if(allLevels.indexOf("0") < 0){
allLevels.push("0")
}
allLevels.sort((a, b) => a < b ? -1 : 1)
2022-07-21 15:54:24 +02:00
return Utils.Dedup(allLevels)
})
state.globalFilters.data.push({
filter: {
currentFilter: undefined,
state: undefined
}, id: "level"
})
2022-07-21 15:54:24 +02:00
const levelSelect = new LevelSelector(levelsInView)
const isShown = levelsInView.map(levelsInView => levelsInView.length !== 0 && state.locationControl.data.zoom >= 17,
[state.locationControl])
function setLevelFilter() {
const filter = state.globalFilters.data.find(gf => gf.id === "level")
const oldState = filter.filter.state;
if (!isShown.data) {
filter.filter = {
state: "*",
currentFilter: undefined
}
} else {
const l = levelSelect.GetValue().data
let neededLevel : TagsFilter = new RegexTag("level", new RegExp("(^|;)" + l + "(;|$)"));
if(l === "0"){
neededLevel = new Or([neededLevel, new Tag("level", "")])
}
filter.filter = {
state: l,
currentFilter: neededLevel
}
}
if(filter.filter.state !== oldState){
state.globalFilters.ping();
console.log("Level filter is now ", filter?.filter?.currentFilter?.asHumanString(false, false, {}))
}
return;
}
isShown.addCallbackAndRun(shown => {
console.log("Is level selector shown?", shown)
setLevelFilter()
if (shown) {
// levelSelect.SetClass("invisible")
} else {
2022-07-21 15:54:24 +02:00
levelSelect.RemoveClass("invisible")
}
})
levelSelect.GetValue().addCallback(_ => setLevelFilter())
2022-07-21 15:54:24 +02:00
super([new Combine([levelSelect]).SetClass(""), plus, min, geolocationButton].map(el => el.SetClass("m-0.5 md:m-1")))
this.SetClass("flex flex-col items-center")
2021-07-28 16:48:59 +02:00
}
}