mapcomplete/UI/SearchAndGo.ts

81 lines
2.5 KiB
TypeScript
Raw Normal View History

2020-07-30 00:59:08 +02:00
import Locale from "./i18n/Locale";
import {UIElement} from "./UIElement";
import {VariableUiElement} from "./Base/VariableUIElement";
import {TextField} from "./Input/TextField";
import {Geocoding} from "../Logic/Osm/Geocoding";
2020-07-21 00:38:03 +02:00
import Translations from "./i18n/Translations";
import State from "../State";
2020-07-01 02:12:33 +02:00
import {UIEventSource} from "../Logic/UIEventSource";
2020-11-06 01:58:26 +01:00
import Svg from "../Svg";
import {Translation} from "./i18n/Translation";
2020-07-01 02:12:33 +02:00
export class SearchAndGo extends UIElement {
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])
),
value: new UIEventSource<string>("")
2020-07-20 15:54:50 +02:00
}
);
2020-07-01 02:12:33 +02:00
private _foundEntries = new UIEventSource([]);
2020-11-06 01:58:26 +01:00
private _goButton = Svg.search_ui().SetClass('search-go');
2020-07-01 02:12:33 +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();
});
}
// Triggered by 'enter' or onclick
private RunSearch() {
2020-07-20 15:54:50 +02:00
const searchString = this._searchField.GetValue().data;
2020-09-17 14:24:28 +02:00
if(searchString === undefined || searchString === ""){
return;
}
2020-09-12 23:15:17 +02:00
this._searchField.GetValue().setData("");
this._placeholder.setData(Translations.t.general.search.searching);
2020-07-01 02:12:33 +02:00
const self = this;
Geocoding.Search(searchString, (result) => {
2020-07-01 21:21:29 +02:00
2020-09-17 14:24:28 +02: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;
}
const bb = result[0].boundingbox;
const bounds = [
[bb[0], bb[2]],
[bb[1], bb[3]]
]
State.state.bm.map.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
}
2020-07-20 20:06:00 +02:00
InnerRender(): string {
2020-07-05 18:59:47 +02:00
return this._searchField.Render() +
this._goButton.Render();
2020-07-01 02:12:33 +02:00
}
}