Skip to content

Commit ed4eeb9

Browse files
Update Convex example for v0.2.0 (vercel#41143)
## Documentation / Examples - [x] Make sure the linting passes by running `pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
1 parent 76235a7 commit ed4eeb9

File tree

8 files changed

+144
-28
lines changed

8 files changed

+144
-28
lines changed

examples/convex/convex/_generated/dataModel.ts examples/convex/convex/_generated/dataModel.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* THIS CODE IS AUTOMATICALLY GENERATED.
66
*
7-
* Generated by convex@0.1.9.
7+
* Generated by convex@0.2.0.
88
* To regenerate, run `npx convex codegen`.
99
* @module
1010
*/
@@ -46,7 +46,7 @@ export type Document = any;
4646
* to the same document.
4747
*/
4848
export type Id = GenericId<string>;
49-
export const Id = GenericId;
49+
export declare const Id: typeof GenericId;
5050

5151
/**
5252
* A type describing your Convex data model.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* eslint-disable */
2+
/**
3+
* Generated data model types.
4+
*
5+
* THIS CODE IS AUTOMATICALLY GENERATED.
6+
*
7+
* Generated by [email protected].
8+
* To regenerate, run `npx convex codegen`.
9+
* @module
10+
*/
11+
12+
import { GenericId } from "convex/values";
13+
14+
/**
15+
* An identifier for a document in Convex.
16+
*
17+
* Convex documents are uniquely identified by their `Id`, which is accessible
18+
* on the `_id` field. To learn more, see [Data Modeling](https://docs.convex.dev/using/data-modeling).
19+
*
20+
* Documents can be loaded using `db.get(id)` in query and mutation functions.
21+
*
22+
* **Important**: Use `myId.equals(otherId)` to check for equality.
23+
* Using `===` will not work because two different instances of `Id` can refer
24+
* to the same document.
25+
*/
26+
export const Id = GenericId;

examples/convex/convex/_generated/react.ts examples/convex/convex/_generated/react.d.ts

+19-18
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@
44
*
55
* THIS CODE IS AUTOMATICALLY GENERATED.
66
*
7-
* Generated by convex@0.1.9.
7+
* Generated by convex@0.2.0.
88
* To regenerate, run `npx convex codegen`.
99
* @module
1010
*/
1111

12-
import type getCounter from "../getCounter";
13-
import type incrementCounter from "../incrementCounter";
14-
import type { OptimisticLocalStore as GenericOptimisticLocalStore } from "convex/browser";
15-
import type { ClientMutation, ClientQuery } from "convex/server";
12+
import type {
13+
ApiFromModules,
14+
OptimisticLocalStore as GenericOptimisticLocalStore,
15+
} from "convex/browser";
16+
import type {
17+
UseQueryForAPI,
18+
UseMutationForAPI,
19+
UseConvexForAPI,
20+
} from "convex/react";
21+
import type * as getCounter from "../getCounter";
22+
import type * as incrementCounter from "../incrementCounter";
1623

1724
/**
1825
* A type describing your app's public Convex API.
@@ -23,16 +30,10 @@ import type { ClientMutation, ClientQuery } from "convex/server";
2330
* This type should be used with type-parameterized classes like
2431
* `ConvexReactClient` to create app-specific types.
2532
*/
26-
export type ConvexAPI = {
27-
queries: {
28-
getCounter: ClientQuery<typeof getCounter>;
29-
};
30-
mutations: {
31-
incrementCounter: ClientMutation<typeof incrementCounter>;
32-
};
33-
};
34-
35-
import { makeUseQuery, makeUseMutation, makeUseConvex } from "convex/react";
33+
export type ConvexAPI = ApiFromModules<{
34+
getCounter: typeof getCounter;
35+
incrementCounter: typeof incrementCounter;
36+
}>;
3637

3738
/**
3839
* Load a reactive query within a React component.
@@ -46,7 +47,7 @@ import { makeUseQuery, makeUseMutation, makeUseConvex } from "convex/react";
4647
* @param args - The arguments to the query function.
4748
* @returns `undefined` if loading and the query's return value otherwise.
4849
*/
49-
export const useQuery = makeUseQuery<ConvexAPI>();
50+
export declare const useQuery: UseQueryForAPI<ConvexAPI>;
5051

5152
/**
5253
* Construct a new {@link ReactMutation}.
@@ -64,7 +65,7 @@ export const useQuery = makeUseQuery<ConvexAPI>();
6465
* @param name - The name of the mutation.
6566
* @returns The {@link ReactMutation} object with that name.
6667
*/
67-
export const useMutation = makeUseMutation<ConvexAPI>();
68+
export declare const useMutation: UseMutationForAPI<ConvexAPI>;
6869

6970
/**
7071
* Get the {@link ConvexReactClient} within a React component.
@@ -73,7 +74,7 @@ export const useMutation = makeUseMutation<ConvexAPI>();
7374
*
7475
* @returns The active {@link ConvexReactClient} object, or `undefined`.
7576
*/
76-
export const useConvex = makeUseConvex<ConvexAPI>();
77+
export declare const useConvex: UseConvexForAPI<ConvexAPI>;
7778

7879
/**
7980
* A view of the query results currently in the Convex client for use within
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/* eslint-disable */
2+
/**
3+
* Generated React hooks.
4+
*
5+
* THIS CODE IS AUTOMATICALLY GENERATED.
6+
*
7+
* Generated by [email protected].
8+
* To regenerate, run `npx convex codegen`.
9+
* @module
10+
*/
11+
12+
import {
13+
useQueryGeneric,
14+
useMutationGeneric,
15+
useConvexGeneric,
16+
} from "convex/react";
17+
18+
/**
19+
* Load a reactive query within a React component.
20+
*
21+
* This React hook contains internal state that will cause a rerender whenever
22+
* the query result changes.
23+
*
24+
* This relies on the {@link ConvexProvider} being above in the React component tree.
25+
*
26+
* @param name - The name of the query function.
27+
* @param args - The arguments to the query function.
28+
* @returns `undefined` if loading and the query's return value otherwise.
29+
*/
30+
export const useQuery = useQueryGeneric;
31+
32+
/**
33+
* Construct a new {@link ReactMutation}.
34+
*
35+
* Mutation objects can be called like functions to request execution of the
36+
* corresponding Convex function, or further configured with
37+
* [optimistic updates](https://docs.convex.dev/using/optimistic-updates).
38+
*
39+
* The value returned by this hook is stable across renders, so it can be used
40+
* by React dependency arrays and memoization logic relying on object identity
41+
* without causing rerenders.
42+
*
43+
* This relies on the {@link ConvexProvider} being above in the React component tree.
44+
*
45+
* @param name - The name of the mutation.
46+
* @returns The {@link ReactMutation} object with that name.
47+
*/
48+
export const useMutation = useMutationGeneric;
49+
50+
/**
51+
* Get the {@link ConvexReactClient} within a React component.
52+
*
53+
* This relies on the {@link ConvexProvider} being above in the React component tree.
54+
*
55+
* @returns The active {@link ConvexReactClient} object, or `undefined`.
56+
*/
57+
export const useConvex = useConvexGeneric;

examples/convex/convex/_generated/server.ts examples/convex/convex/_generated/server.d.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
*
55
* THIS CODE IS AUTOMATICALLY GENERATED.
66
*
7-
* Generated by convex@0.1.9.
7+
* Generated by convex@0.2.0.
88
* To regenerate, run `npx convex codegen`.
99
* @module
1010
*/
1111

1212
import {
13-
makeQuery,
14-
makeMutation,
13+
MutationBuilderForDataModel,
14+
QueryBuilderForDataModel,
1515
QueryCtx as GenericQueryCtx,
1616
MutationCtx as GenericMutationCtx,
1717
DatabaseReader as GenericDatabaseReader,
@@ -27,7 +27,7 @@ import { DataModel } from "./dataModel.js";
2727
* @param func - The query function. It receives a {@link QueryCtx} as its first argument.
2828
* @returns The wrapped query. Include this as an `export` to name it and make it accessible.
2929
*/
30-
export const query = makeQuery<DataModel>();
30+
export declare const query: QueryBuilderForDataModel<DataModel>;
3131

3232
/**
3333
* Define a mutation in this Convex app's public API.
@@ -37,7 +37,7 @@ export const query = makeQuery<DataModel>();
3737
* @param func - The mutation function. It receives a {@link MutationCtx} as its first argument.
3838
* @returns The wrapped mutation. Include this as an `export` to name it and make it accessible.
3939
*/
40-
export const mutation = makeMutation<DataModel>();
40+
export declare const mutation: MutationBuilderForDataModel<DataModel>;
4141

4242
/**
4343
* A set of services for use within Convex query functions.
@@ -62,7 +62,7 @@ export type MutationCtx = GenericMutationCtx<DataModel>;
6262
* An interface to read from the database within Convex query functions.
6363
*
6464
* The two entry points are {@link DatabaseReader.get}, which fetches a single
65-
* document by its {@link Id}, or {@link DatabaseReader.table}, which starts
65+
* document by its {@link Id}, or {@link DatabaseReader.query}, which starts
6666
* building a query.
6767
*/
6868
export type DatabaseReader = GenericDatabaseReader<DataModel>;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/* eslint-disable */
2+
/**
3+
* Generated utilities for implementing server-side Convex query and mutation functions.
4+
*
5+
* THIS CODE IS AUTOMATICALLY GENERATED.
6+
*
7+
* Generated by [email protected].
8+
* To regenerate, run `npx convex codegen`.
9+
* @module
10+
*/
11+
12+
import { queryGeneric, mutationGeneric } from "convex/server";
13+
14+
/**
15+
* Define a query in this Convex app's public API.
16+
*
17+
* This function will be allowed to read your Convex database and will be accessible from the client.
18+
*
19+
* @param func - The query function. It receives a {@link QueryCtx} as its first argument.
20+
* @returns The wrapped query. Include this as an `export` to name it and make it accessible.
21+
*/
22+
export const query = queryGeneric;
23+
24+
/**
25+
* Define a mutation in this Convex app's public API.
26+
*
27+
* This function will be allowed to modify your Convex database and will be accessible from the client.
28+
*
29+
* @param func - The mutation function. It receives a {@link MutationCtx} as its first argument.
30+
* @returns The wrapped mutation. Include this as an `export` to name it and make it accessible.
31+
*/
32+
export const mutation = mutationGeneric;

examples/convex/convex/getCounter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { query } from './_generated/server'
22

33
export default query(async ({ db }, counterName: string): Promise<number> => {
44
const counterDoc = await db
5-
.table('counter_table')
5+
.query('counter_table')
66
.filter((q) => q.eq(q.field('name'), counterName))
77
.first()
88
console.log('Got stuff')

examples/convex/convex/incrementCounter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { mutation } from './_generated/server'
33
export default mutation(
44
async ({ db }, counterName: string, increment: number) => {
55
const counterDoc = await db
6-
.table('counter_table')
6+
.query('counter_table')
77
.filter((q) => q.eq(q.field('name'), counterName))
88
.first()
99
if (counterDoc === null) {

0 commit comments

Comments
 (0)