2021-01-04 04:06:21 +01:00
|
|
|
import Locale from "../i18n/Locale";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import {Translation} from "../i18n/Translation";
|
|
|
|
import {VariableUiElement} from "../Base/VariableUIElement";
|
|
|
|
import Svg from "../../Svg";
|
|
|
|
import State from "../../State";
|
|
|
|
import {TextField} from "../Input/TextField";
|
|
|
|
import {Geocoding} from "../../Logic/Osm/Geocoding";
|
|
|
|
import Translations from "../i18n/Translations";
|
2021-01-06 02:09:04 +01:00
|
|
|
import Hash from "../../Logic/Web/Hash";
|
2021-01-04 04:06:21 +01:00
|
|
|
|
|
|
|
export default class SearchAndGo extends UIElement {
|
2020-07-01 02:12:33 +02:00
|
|
|
|
2020-07-21 01:13:51 +02:00
|
|
|
private _placeholder = new UIEventSource<Translation>(Translations.t.general.search.search)
|
2020-11-06 01:58:26 +01:00
|
|
|
private _searchField = new TextField({
|
2020-07-21 00:38:03 +02:00
|
|
|
placeholder: new VariableUiElement(
|
|
|
|
this._placeholder.map(uiElement => uiElement.InnerRender(), [Locale.language])
|
|
|
|
),
|
2021-01-04 04:06:21 +01:00
|
|
|
value: new UIEventSource<string>("")
|
2020-07-20 15:54:50 +02:00
|
|
|
}
|
|
|
|
);
|
2020-07-01 02:12:33 +02:00
|
|
|
|
|
|
|
private _foundEntries = new UIEventSource([]);
|
2021-01-25 03:12:09 +01:00
|
|
|
private _goButton = Svg.search_ui().SetClass('w-8 h-8 full-rounded border-black float-right');
|
2020-07-01 02:12:33 +02:00
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
constructor() {
|
2020-07-01 02:12:33 +02:00
|
|
|
super(undefined);
|
|
|
|
this.ListenTo(this._foundEntries);
|
|
|
|
|
|
|
|
const self = this;
|
|
|
|
this._searchField.enterPressed.addCallback(() => {
|
|
|
|
self.RunSearch();
|
|
|
|
});
|
|
|
|
|
|
|
|
this._goButton.onClick(function () {
|
|
|
|
self.RunSearch();
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
InnerRender(): string {
|
|
|
|
return this._searchField.Render() +
|
|
|
|
this._goButton.Render();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-01 02:12:33 +02:00
|
|
|
// Triggered by 'enter' or onclick
|
|
|
|
private RunSearch() {
|
2020-07-20 15:54:50 +02:00
|
|
|
const searchString = this._searchField.GetValue().data;
|
2021-01-04 04:06:21 +01:00
|
|
|
if (searchString === undefined || searchString === "") {
|
2020-09-17 14:24:28 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-09-12 23:15:17 +02:00
|
|
|
this._searchField.GetValue().setData("");
|
2020-07-21 01:13:51 +02:00
|
|
|
this._placeholder.setData(Translations.t.general.search.searching);
|
2020-07-01 02:12:33 +02:00
|
|
|
const self = this;
|
2021-01-04 04:06:21 +01:00
|
|
|
Geocoding.Search(searchString, (result) => {
|
2020-07-01 21:21:29 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
console.log("Search result", result)
|
2020-07-01 21:21:29 +02:00
|
|
|
if (result.length == 0) {
|
2020-09-12 23:15:17 +02:00
|
|
|
self._placeholder.setData(Translations.t.general.search.nothing);
|
2020-07-01 21:21:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-06 02:09:04 +01:00
|
|
|
const poi = result[0];
|
|
|
|
const bb = poi.boundingbox;
|
2021-01-04 04:06:21 +01:00
|
|
|
const bounds: [[number, number], [number, number]] = [
|
2020-07-01 21:21:29 +02:00
|
|
|
[bb[0], bb[2]],
|
|
|
|
[bb[1], bb[3]]
|
|
|
|
]
|
2021-01-06 02:09:04 +01:00
|
|
|
State.state.selectedElement. setData(undefined);
|
2021-01-27 02:26:57 +01:00
|
|
|
Hash.hash.setData(poi.osm_type+"/"+poi.osm_id);
|
2021-01-02 21:03:40 +01:00
|
|
|
State.state.leafletMap.data.fitBounds(bounds);
|
2020-09-12 23:15:17 +02:00
|
|
|
self._placeholder.setData(Translations.t.general.search.search);
|
2020-07-01 21:21:29 +02:00
|
|
|
},
|
|
|
|
() => {
|
2020-09-12 23:15:17 +02:00
|
|
|
self._searchField.GetValue().setData("");
|
|
|
|
self._placeholder.setData(Translations.t.general.search.error);
|
2020-07-01 21:21:29 +02:00
|
|
|
});
|
2020-07-01 02:12:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|