-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.ts
110 lines (105 loc) · 2.73 KB
/
example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import { GeospatialIndex, point, rectangle } from "@convex-dev/geospatial";
import { Id } from "./_generated/dataModel";
import { components } from "./_generated/api";
import { mutation, query } from "./_generated/server";
import { v } from "convex/values";
export const geospatial = new GeospatialIndex<
Id<"locations">,
{ name: string }
>(components.geospatial);
export const addPoint = mutation({
args: { point, name: v.string() },
handler: async (ctx, { point, name }) => {
const id = await ctx.db.insert("locations", {
name,
});
await geospatial.insert(ctx, id, point, { name });
},
});
export const nearestPoints = query({
args: {
point,
maxRows: v.number(),
maxDistance: v.optional(v.number()),
},
handler: async (ctx, { point, maxRows, maxDistance }) => {
const results = await geospatial.queryNearest(ctx, point, maxRows, maxDistance);
return await Promise.all(results.map(async (result) => {
const row = await ctx.db.get(result.key as Id<"locations">);
if (!row) {
throw new Error("Invalid locationId");
}
return {
...result,
coordinates: {
...result.coordinates,
name: row.name,
},
};
}));
},
});
export const search = query({
args: {
rectangle,
mustFilter: v.array(v.string()),
shouldFilter: v.array(v.string()),
cursor: v.optional(v.string()),
maxRows: v.number(),
},
returns: v.object({
rows: v.array(
v.object({
_id: v.id("locations"),
_creationTime: v.number(),
name: v.string(),
coordinates: point,
}),
),
nextCursor: v.optional(v.string()),
}),
async handler(ctx, args) {
const { results, nextCursor } = await geospatial.query(
ctx,
{
shape: {
type: "rectangle",
rectangle: args.rectangle,
},
filter: (q) => {
for (const condition of args.mustFilter) {
q = q.eq("name", condition);
}
if (!args.shouldFilter.length) {
return q;
}
return q.in("name", args.shouldFilter);
},
limit: args.maxRows,
},
args.cursor,
);
const rows = await Promise.all(
results.map(async (result) => {
const row = await ctx.db.get(result.key);
if (!row) {
throw new Error("Invalid locationId");
}
return { ...row, coordinates: result.coordinates };
}),
);
return {
rows,
nextCursor,
};
},
});
export const debugCells = query({
args: {
rectangle,
maxResolution: v.optional(v.number()),
},
handler: async (ctx, args) => {
return await geospatial.debugCells(ctx, args.rectangle, args.maxResolution);
},
});