[gnome-maps/wip/mlundblad/search-as-you-type] WIP: placeEntry, placePopover: Auto-complete searches
- From: Marcus Lundblad <mlundblad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-maps/wip/mlundblad/search-as-you-type] WIP: placeEntry, placePopover: Auto-complete searches
- Date: Wed, 22 May 2019 21:18:17 +0000 (UTC)
commit b481d08f61d8bc334b967e736a28223e815fc0b2
Author: Marcus Lundblad <ml update uu se>
Date: Sun May 5 21:38:14 2019 +0200
WIP: placeEntry, placePopover: Auto-complete searches
src/placeEntry.js | 147 ++++++++++++++++++++++++++++++++++++++--------------
src/placePopover.js | 4 +-
2 files changed, 111 insertions(+), 40 deletions(-)
---
diff --git a/src/placeEntry.js b/src/placeEntry.js
index 8fc86f5..f16c0e2 100644
--- a/src/placeEntry.js
+++ b/src/placeEntry.js
@@ -34,6 +34,9 @@ const PlaceStore = imports.placeStore;
const PlacePopover = imports.placePopover;
const Utils = imports.utils;
+// minimum number of characters to start completion, TODO: how to handle ideographs?
+const MIN_CHARS_COMPLETION = 3;
+
var PlaceEntry = GObject.registerClass({
Properties: {
'place': GObject.ParamSpec.object('place',
@@ -54,11 +57,13 @@ var PlaceEntry = GObject.registerClass({
if (p) {
if (p.name) {
- this.text = p.name;
+ this._placeText = p.name;
} else
- this.text = p.location.latitude + ', ' + p.location.longitude;
+ this._placeText = p.location.latitude + ', ' + p.location.longitude;
} else
- this.text = '';
+ this._placeText = '';
+
+ this.text = this._placeText;
this._place = p;
this.notify('place');
@@ -98,24 +103,12 @@ var PlaceEntry = GObject.registerClass({
this._popover = this._createPopover(numVisible, maxChars);
- this.connect('activate', this._onActivate.bind(this));
- this.connect('search-changed', () => {
- if (this._cancellable)
- this._cancellable.cancel();
-
- this._refreshFilter();
+ this.connect('search-changed', this._onSearchChanged.bind(this));
- if (this.text.length === 0) {
- this._popover.hide();
- this.place = null;
- return;
- }
+ this._cache = {};
- if (this._filter.iter_n_children(null) > 0)
- this._popover.showCompletion();
- else
- this._popover.hide();
- });
+ // clear cache when view moves, as result are location-dependent
+ this._mapView.view.connect('notify::latitude', () => this._cache = {});
if (parseOnFocusOut) {
this.connect('focus-out-event', () => {
@@ -125,6 +118,47 @@ var PlaceEntry = GObject.registerClass({
}
}
+ _onSearchChanged() {
+ if (this._parse())
+ return;
+
+ // wait for an ongoing search
+ if (this._cancellable)
+ return;
+
+ //this._refreshFilter();
+
+ if (this.text.length < MIN_CHARS_COMPLETION) {
+ this._popover.hide();
+ if (this.text.length === 0)
+ this.place = null;
+ this._previousSearch = null;
+ } else if (this.text.length >= MIN_CHARS_COMPLETION &&
+ this.text !== this._placeText) {
+ let cachedResults = this._cache[this.text];
+
+ if (cachedResults) {
+ this._updateResults(cachedResults);
+ } else {
+ // if no previous search has been performed, show spinner
+ if (!this._previousSearch ||
+ this._previousSearch.length < MIN_CHARS_COMPLETION ||
+ this._placeText) {
+ this._popover.showSpinner();
+ }
+ this._placeText = '';
+ this._doSearch();
+ }
+ }
+
+ /*
+ if (this._filter.iter_n_children(null) > 0)
+ this._popover.showCompletion();
+ else
+ this._popover.hide();
+ */
+ }
+
_locEquals(placeA, placeB) {
if (!placeA.location || !placeB.location)
return false;
@@ -172,10 +206,7 @@ var PlaceEntry = GObject.registerClass({
}
_parse() {
- if (this.text.length === 0) {
- this.place = null;
- return true;
- }
+ let parsed = false;
if (this.text.startsWith('geo:')) {
let location = new Geocode.Location();
@@ -188,40 +219,80 @@ var PlaceEntry = GObject.registerClass({
Utils.showDialog(msg, Gtk.MessageType.ERROR, this.get_toplevel());
}
- return true;
+ parsed = true;
}
let parsedLocation = Place.Place.parseCoordinates(this.text);
if (parsedLocation) {
this.place = new Place.Place({ location: parsedLocation });
- return true;
+ parsed = true;
}
- return false;
- }
+ if (parsed && this._cancellable)
+ this._cancellable.cancel();
- _onActivate() {
- if (this._parse())
- return;
-
- let bbox = this._mapView.view.get_bounding_box();
-
- this._popover.showSpinner();
+ return parsed;
+ }
+ _doSearch() {
+ if (this._cancellable)
+ this._cancellable.cancel();
this._cancellable = new Gio.Cancellable();
+ this._previousSearch = this.text;
Application.photonGeocode.search(this.text,
this._mapView.view.latitude,
this._mapView.view.longitude,
this._cancellable,
(places, error) => {
Utils.debug('places: ' + places);
- if (!places) {
+ this._cancellable = null;
+ this._updateResults(places);
+
+ // cache results for later
+ this._cache[this.text] = places;
+
+ // if search input has been updated, trigger a refresh
+ if (this.text !== this._previousSearch)
+ this._onSearchChanged();
+ });
+ }
+
+ _updateResults(places) {
+ if (!places) {
this.place = null;
this._popover.showNoResult();
return;
- }
- this._popover.updateResult(places, this.text);
- this._popover.showResult();
+ }
+
+ let completedPlaces = [];
+
+ this._filter.refilter();
+
+ this._filter.foreach((model, path, iter) => {
+ let place = model.get_value(iter, PlaceStore.Columns.PLACE);
+ let type = model.get_value(iter, PlaceStore.Columns.TYPE);
+
+ Utils.debug('filter match: ' + place.name + ', ' + type);
+
+ completedPlaces.push({ place: place, type: type });
});
+
+ let placeStore = Application.placeStore;
+
+ places.forEach((place) => {
+ let type;
+
+ if (placeStore.exists(place, PlaceStore.PlaceType.RECENT))
+ type = PlaceStore.PlaceType.RECENT;
+ else if (placeStore.exists(place, PlaceStore.PlaceType.FAVORITE))
+ type = PlaceStore.PlaceType.FAVORITE;
+ else
+ type = PlaceStore.PlaceType.ANY;
+
+ completedPlaces.push({ place: place, type: type });
+ })
+
+ this._popover.updateResult(completedPlaces, this.text);
+ this._popover.showResult();
}
});
diff --git a/src/placePopover.js b/src/placePopover.js
index 108137a..91fada2 100644
--- a/src/placePopover.js
+++ b/src/placePopover.js
@@ -137,10 +137,10 @@ var PlacePopover = GObject.registerClass({
this._list.forall((row) => row.destroy());
places.forEach((place) => {
- if (!place.location)
+ if (!place.place.location)
return;
- this._addRow(place, null, searchString);
+ this._addRow(place.place, place.type, searchString);
});
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]