Skip to content
Snippets Groups Projects
Commit 2b66e7fb authored by Piotr Gawron's avatar Piotr Gawron
Browse files

searching for queries that should have "," or ";" is resolved properly

first the full query is sent to server, if it resolves properly then we
have result if not then we check all info separated by comma
parent 34b7c8ec
No related branches found
No related tags found
1 merge request!109Resolve "test issues"
...@@ -41,77 +41,84 @@ AbstractDbOverlay.prototype = Object.create(ObjectWithListeners.prototype); ...@@ -41,77 +41,84 @@ AbstractDbOverlay.prototype = Object.create(ObjectWithListeners.prototype);
AbstractDbOverlay.prototype.constructor = AbstractDbOverlay; AbstractDbOverlay.prototype.constructor = AbstractDbOverlay;
AbstractDbOverlay.QueryType = { AbstractDbOverlay.QueryType = {
SEARCH_BY_COORDINATES : "SEARCH_BY_COORDINATES", SEARCH_BY_COORDINATES: "SEARCH_BY_COORDINATES",
SEARCH_BY_TARGET : "SEARCH_BY_TARGET", SEARCH_BY_TARGET: "SEARCH_BY_TARGET",
SEARCH_BY_QUERY : "SEARCH_BY_QUERY", SEARCH_BY_QUERY: "SEARCH_BY_QUERY",
}; };
AbstractDbOverlay.prototype.encodeQuery = function(type, arg0, arg1, arg2) { AbstractDbOverlay.prototype.encodeQuery = function (type, arg0, arg1, arg2) {
if (type === AbstractDbOverlay.QueryType.SEARCH_BY_COORDINATES) { if (type === AbstractDbOverlay.QueryType.SEARCH_BY_COORDINATES) {
var modelId = arg0; var modelId = arg0;
var coordinates = arg1; var coordinates = arg1;
var zoom = arg2; var zoom = arg2;
return JSON.stringify({ return JSON.stringify({
type : type, type: type,
modelId : modelId, modelId: modelId,
coordinates : coordinates, coordinates: coordinates,
zoom : zoom, zoom: zoom,
}); });
} else if (type === AbstractDbOverlay.QueryType.SEARCH_BY_TARGET) { } else if (type === AbstractDbOverlay.QueryType.SEARCH_BY_TARGET) {
var target = arg0; var target = arg0;
return JSON.stringify({ return JSON.stringify({
type : type, type: type,
target : target, target: target,
}); });
} else if (type === AbstractDbOverlay.QueryType.SEARCH_BY_QUERY) { } else if (type === AbstractDbOverlay.QueryType.SEARCH_BY_QUERY) {
var query = arg0; var query = arg0;
var perfect = arg1; var perfect = arg1;
return JSON.stringify({ return JSON.stringify({
type : type, type: type,
query : query, query: query,
perfect : perfect, perfect: perfect,
}); });
} else { } else {
throw new Error("Unknown query type: " + type); throw new Error("Unknown query type: " + type);
} }
}; };
AbstractDbOverlay.prototype.decodeQuery = function(query) { AbstractDbOverlay.prototype.decodeQuery = function (query) {
return JSON.parse(query); return JSON.parse(query);
}; };
AbstractDbOverlay.prototype.searchByQuery = function(originalQuery, perfect, fitBounds) { AbstractDbOverlay.prototype.searchByQuery = function (originalQuery, perfect, fitBounds) {
var self = this; var self = this;
var query = self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_QUERY, originalQuery, perfect); var query = self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_QUERY, originalQuery, perfect);
ServerConnector.getSessionData().setQuery({ ServerConnector.getSessionData().setQuery({
type : self.getName(), type: self.getName(),
query : query query: query
}); });
var queries = self.splitQuery(originalQuery); var res;
var encodedQueries = []; var encodedQueries = [];
var promises = []; return self.searchBySingleQuery(originalQuery, perfect).then(function (results) {
for (var i = 0; i < queries.length; i++) { if (results.length > 0) {
encodedQueries.push(self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_QUERY, queries[i], perfect)); encodedQueries.push(query);
promises.push(self.searchBySingleQuery(queries[i], perfect)); return [results];
} } else {
var queries = self.splitQuery(originalQuery);
var promises = [];
for (var i = 0; i < queries.length; i++) {
encodedQueries.push(self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_QUERY, queries[i], perfect));
promises.push(self.searchBySingleQuery(queries[i], perfect));
}
var res; return Promise.all(promises);
return Promise.all(promises).then(function(results) { }
}).then(function (results) {
self.setQueries(encodedQueries); self.setQueries(encodedQueries);
res = results; res = results;
return self.callListeners('onSearch', { return self.callListeners('onSearch', {
fitBounds : fitBounds, fitBounds: fitBounds,
identifiedElements : res, identifiedElements: res,
type : AbstractDbOverlay.QueryType.SEARCH_BY_QUERY, type: AbstractDbOverlay.QueryType.SEARCH_BY_QUERY,
}); });
}).then(function() { }).then(function () {
return res; return res;
}); });
}; };
AbstractDbOverlay.prototype.searchNamesByTarget = function(element) { AbstractDbOverlay.prototype.searchNamesByTarget = function (element) {
var self = this; var self = this;
var query = self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_TARGET, element); var query = self.encodeQuery(AbstractDbOverlay.QueryType.SEARCH_BY_TARGET, element);
...@@ -119,23 +126,23 @@ AbstractDbOverlay.prototype.searchNamesByTarget = function(element) { ...@@ -119,23 +126,23 @@ AbstractDbOverlay.prototype.searchNamesByTarget = function(element) {
return Promise.resolve(self._elementsByQuery[query]); return Promise.resolve(self._elementsByQuery[query]);
} else { } else {
return self.getNamesByTargetFromServer({ return self.getNamesByTargetFromServer({
target : element target: element
}).then(function(drugNames) { }).then(function (drugNames) {
self._elementsByQuery[query] = drugNames; self._elementsByQuery[query] = drugNames;
return self._elementsByQuery[query]; return self._elementsByQuery[query];
}); });
} }
}; };
AbstractDbOverlay.prototype.setQueries = function(queries) { AbstractDbOverlay.prototype.setQueries = function (queries) {
this._queries = queries; this._queries = queries;
}; };
AbstractDbOverlay.prototype.getQueries = function() { AbstractDbOverlay.prototype.getQueries = function () {
return this._queries; return this._queries;
}; };
AbstractDbOverlay.prototype.createIdentifiedElementsForTargetingClass = function(targetingElement, colourId) { AbstractDbOverlay.prototype.createIdentifiedElementsForTargetingClass = function (targetingElement, colourId) {
var self = this; var self = this;
var result = []; var result = [];
var iconCounter = 1; var iconCounter = 1;
...@@ -160,11 +167,11 @@ AbstractDbOverlay.prototype.createIdentifiedElementsForTargetingClass = function ...@@ -160,11 +167,11 @@ AbstractDbOverlay.prototype.createIdentifiedElementsForTargetingClass = function
return result; return result;
}; };
AbstractDbOverlay.prototype.refresh = function() { AbstractDbOverlay.prototype.refresh = function () {
throw new Error("Refreshing shouldn't be called"); throw new Error("Refreshing shouldn't be called");
}; };
AbstractDbOverlay.prototype.searchByEncodedQuery = function(originalQuery, fitBounds) { AbstractDbOverlay.prototype.searchByEncodedQuery = function (originalQuery, fitBounds) {
var query = this.decodeQuery(originalQuery); var query = this.decodeQuery(originalQuery);
query.fitBounds = fitBounds; query.fitBounds = fitBounds;
if (query.type === AbstractDbOverlay.QueryType.SEARCH_BY_QUERY) { if (query.type === AbstractDbOverlay.QueryType.SEARCH_BY_QUERY) {
...@@ -179,9 +186,9 @@ AbstractDbOverlay.prototype.searchByEncodedQuery = function(originalQuery, fitBo ...@@ -179,9 +186,9 @@ AbstractDbOverlay.prototype.searchByEncodedQuery = function(originalQuery, fitBo
} }
}; };
AbstractDbOverlay.prototype.clear = function() { AbstractDbOverlay.prototype.clear = function () {
var self = this; var self = this;
return self.searchByQuery("").then(function() { return self.searchByQuery("").then(function () {
return self.callListeners('onClear'); return self.callListeners('onClear');
}); });
}; };
...@@ -189,38 +196,38 @@ AbstractDbOverlay.prototype.clear = function() { ...@@ -189,38 +196,38 @@ AbstractDbOverlay.prototype.clear = function() {
/** /**
* Returns true if overlay allows to get general data for element. * Returns true if overlay allows to get general data for element.
*/ */
AbstractDbOverlay.prototype.allowGeneralSearch = function() { AbstractDbOverlay.prototype.allowGeneralSearch = function () {
return this._allowGeneralSearch; return this._allowGeneralSearch;
}; };
AbstractDbOverlay.prototype.getName = function() { AbstractDbOverlay.prototype.getName = function () {
return this.name; return this.name;
}; };
/** /**
* Returns true if overlay allows to get data for element by search id. * Returns true if overlay allows to get data for element by search id.
*/ */
AbstractDbOverlay.prototype.allowSearchById = function() { AbstractDbOverlay.prototype.allowSearchById = function () {
return this._allowSearchById; return this._allowSearchById;
}; };
AbstractDbOverlay.prototype.setMap = function(map) { AbstractDbOverlay.prototype.setMap = function (map) {
this._map = map; this._map = map;
}; };
AbstractDbOverlay.prototype.getMap = function() { AbstractDbOverlay.prototype.getMap = function () {
return this._map; return this._map;
}; };
AbstractDbOverlay.prototype.setName = function(name) { AbstractDbOverlay.prototype.setName = function (name) {
this.name = name; this.name = name;
}; };
AbstractDbOverlay.prototype.getName = function() { AbstractDbOverlay.prototype.getName = function () {
return this.name; return this.name;
}; };
AbstractDbOverlay.prototype.setAllowSearchById = function(allowSearchById) { AbstractDbOverlay.prototype.setAllowSearchById = function (allowSearchById) {
// configure if the overlay can contain detailed data about elements that // configure if the overlay can contain detailed data about elements that
// should be visualized in detailed mode of the Info Window // should be visualized in detailed mode of the Info Window
if (typeof allowSearchById === "boolean") { if (typeof allowSearchById === "boolean") {
...@@ -232,7 +239,7 @@ AbstractDbOverlay.prototype.setAllowSearchById = function(allowSearchById) { ...@@ -232,7 +239,7 @@ AbstractDbOverlay.prototype.setAllowSearchById = function(allowSearchById) {
} }
}; };
AbstractDbOverlay.prototype.setAllowGeneralSearch = function(allowGeneralSearch) { AbstractDbOverlay.prototype.setAllowGeneralSearch = function (allowGeneralSearch) {
if (typeof allowGeneralSearch === "boolean") { if (typeof allowGeneralSearch === "boolean") {
this._allowGeneralSearch = allowGeneralSearch; this._allowGeneralSearch = allowGeneralSearch;
} else if (allowGeneralSearch === undefined) { } else if (allowGeneralSearch === undefined) {
...@@ -242,22 +249,22 @@ AbstractDbOverlay.prototype.setAllowGeneralSearch = function(allowGeneralSearch) ...@@ -242,22 +249,22 @@ AbstractDbOverlay.prototype.setAllowGeneralSearch = function(allowGeneralSearch)
} }
}; };
AbstractDbOverlay.prototype.setIconType = function(iconType) { AbstractDbOverlay.prototype.setIconType = function (iconType) {
this._iconType = iconType; this._iconType = iconType;
}; };
AbstractDbOverlay.prototype.setIconStart = function(iconStart) { AbstractDbOverlay.prototype.setIconStart = function (iconStart) {
this._iconStart = iconStart; this._iconStart = iconStart;
}; };
AbstractDbOverlay.IconColors = [ "red", "blue", "green", "purple", "yellow", "pink", "paleblue", "brown", "orange" ]; AbstractDbOverlay.IconColors = ["red", "blue", "green", "purple", "yellow", "pink", "paleblue", "brown", "orange"];
AbstractDbOverlay.prototype.getColor = function(colorId) { AbstractDbOverlay.prototype.getColor = function (colorId) {
var id = colorId + this._iconStart; var id = colorId + this._iconStart;
id %= AbstractDbOverlay.IconColors.length; id %= AbstractDbOverlay.IconColors.length;
return AbstractDbOverlay.IconColors[id]; return AbstractDbOverlay.IconColors[id];
}; };
AbstractDbOverlay.prototype.getIcon = function(colorId, id) { AbstractDbOverlay.prototype.getIcon = function (colorId, id) {
if (id >= 100) { if (id >= 100) {
id = 1; id = 1;
} }
...@@ -265,7 +272,7 @@ AbstractDbOverlay.prototype.getIcon = function(colorId, id) { ...@@ -265,7 +272,7 @@ AbstractDbOverlay.prototype.getIcon = function(colorId, id) {
return "marker/" + this._iconType + "/" + this._iconType + "_" + color + "_" + id + ".png"; return "marker/" + this._iconType + "/" + this._iconType + "_" + color + "_" + id + ".png";
}; };
AbstractDbOverlay.prototype.splitQuery = function(query, useFullName) { AbstractDbOverlay.prototype.splitQuery = function (query, useFullName) {
var result = []; var result = [];
if (query.indexOf(";") >= 0) { if (query.indexOf(";") >= 0) {
result = query.split(";"); result = query.split(";");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment