Skip to content

Commit 0f763da

Browse files
authored
feat: liveQuery support for unsorted distance queries (#8221)
1 parent 2a82d19 commit 0f763da

File tree

2 files changed

+53
-3
lines changed

2 files changed

+53
-3
lines changed

spec/ParseLiveQuery.spec.js

+34
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,40 @@ describe('ParseLiveQuery', function () {
11561156
]);
11571157
});
11581158

1159+
it('can subscribe to query and return object with withinKilometers with last parameter on update', async done => {
1160+
await reconfigureServer({
1161+
liveQuery: {
1162+
classNames: ['TestObject'],
1163+
},
1164+
startLiveQueryServer: true,
1165+
verbose: false,
1166+
silent: true,
1167+
});
1168+
const object = new TestObject();
1169+
const firstPoint = new Parse.GeoPoint({ latitude: 40.0, longitude: -30.0 });
1170+
object.set({ location: firstPoint });
1171+
await object.save();
1172+
1173+
// unsorted will use $centerSphere operator
1174+
const sorted = false;
1175+
const query = new Parse.Query(TestObject);
1176+
query.withinKilometers(
1177+
'location',
1178+
new Parse.GeoPoint({ latitude: 40.0, longitude: -30.0 }),
1179+
2,
1180+
sorted
1181+
);
1182+
const subscription = await query.subscribe();
1183+
subscription.on('update', obj => {
1184+
expect(obj.id).toBe(object.id);
1185+
done();
1186+
});
1187+
1188+
const secondPoint = new Parse.GeoPoint({ latitude: 40.0, longitude: -30.0 });
1189+
object.set({ location: secondPoint });
1190+
await object.save();
1191+
});
1192+
11591193
afterEach(async function (done) {
11601194
const client = await Parse.CoreManager.getLiveQueryController().getDefaultLiveQueryClient();
11611195
client.close();

src/LiveQuery/QueryTools.js

+19-3
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,25 @@ function matchesKeyConstraints(object, key, constraints) {
344344
return true;
345345
}
346346
case '$geoWithin': {
347-
const points = compareTo.$polygon.map(geoPoint => [geoPoint.latitude, geoPoint.longitude]);
348-
const polygon = new Parse.Polygon(points);
349-
return polygon.containsPoint(object[key]);
347+
if (compareTo.$polygon) {
348+
const points = compareTo.$polygon.map(geoPoint => [
349+
geoPoint.latitude,
350+
geoPoint.longitude,
351+
]);
352+
const polygon = new Parse.Polygon(points);
353+
return polygon.containsPoint(object[key]);
354+
}
355+
if (compareTo.$centerSphere) {
356+
const [WGS84Point, maxDistance] = compareTo.$centerSphere;
357+
const centerPoint = new Parse.GeoPoint({
358+
latitude: WGS84Point[1],
359+
longitude: WGS84Point[0],
360+
});
361+
const point = new Parse.GeoPoint(object[key]);
362+
const distance = point.radiansTo(centerPoint);
363+
return distance <= maxDistance;
364+
}
365+
break;
350366
}
351367
case '$geoIntersects': {
352368
const polygon = new Parse.Polygon(object[key].coordinates);

0 commit comments

Comments
 (0)