Skip to content

Commit e3bb546

Browse files
Merge pull request #306 from dojoengine/c-upgrade
feat: c version
2 parents 775b7d8 + 0b76d37 commit e3bb546

File tree

7 files changed

+29
-19
lines changed

7 files changed

+29
-19
lines changed

packages/sdk/src/__example__/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// EXAMPLE FOR NOW
22

3+
import * as torii from "@dojoengine/torii-client";
34
import { init } from "..";
45
import { SchemaType } from "../types";
56

packages/sdk/src/__tests__/convertQueryToClause.test.ts

+9-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { describe, expect, it } from "vitest";
44

55
import { MockSchemaType, schema } from "../__example__/index";
66
import { convertQueryToClause } from "../convertQuerytoClause";
7-
import { QueryType } from "../types";
7+
import { QueryType, SchemaType } from "../types";
88

99
describe("convertQueryToClause", () => {
1010
it("should convert a single model query with conditions", () => {
@@ -27,7 +27,7 @@ describe("convertQueryToClause", () => {
2727

2828
expect(result).toEqual({
2929
Composite: {
30-
operator: "And",
30+
operator: "Or",
3131
clauses: [
3232
{
3333
Member: {
@@ -81,7 +81,7 @@ describe("convertQueryToClause", () => {
8181

8282
expect(result).toEqual({
8383
Composite: {
84-
operator: "And",
84+
operator: "Or",
8585
clauses: [
8686
{
8787
Member: {
@@ -110,10 +110,10 @@ describe("convertQueryToClause", () => {
110110
player: {
111111
$: {
112112
where: {
113-
AND: [
113+
And: [
114114
{ score: { $gt: 100 } },
115115
{
116-
OR: [
116+
Or: [
117117
{ name: { $eq: "Alice" } },
118118
{ name: { $eq: "Bob" } },
119119
],
@@ -125,7 +125,7 @@ describe("convertQueryToClause", () => {
125125
item: {
126126
$: {
127127
where: {
128-
AND: [{ durability: { $lt: 50 } }],
128+
And: [{ durability: { $lt: 50 } }],
129129
},
130130
},
131131
},
@@ -134,10 +134,12 @@ describe("convertQueryToClause", () => {
134134

135135
const result = convertQueryToClause(query, schema);
136136

137+
console.log("result", result);
138+
137139
// Updated expectation to match the actual output
138140
expect(result).toEqual({
139141
Composite: {
140-
operator: "And",
142+
operator: "Or",
141143
clauses: [
142144
{
143145
Member: {

packages/sdk/src/convertQuerytoClause.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function convertQueryToClause<T extends SchemaType>(
3333
if (clauses.length > 1) {
3434
return {
3535
Composite: {
36-
operator: "And",
36+
operator: "Or",
3737
clauses: clauses,
3838
},
3939
};
@@ -158,8 +158,8 @@ function buildWhereClause(
158158
): torii.Clause | undefined {
159159
// Define logical operator mapping
160160
const logicalOperators: Record<string, torii.LogicalOperator> = {
161-
AND: "And",
162-
OR: "Or",
161+
And: "And",
162+
Or: "Or",
163163
};
164164

165165
// Check for logical operators first
@@ -299,6 +299,7 @@ function convertToPrimitive(value: any): torii.MemberValue {
299299
* @throws {Error} - If the operator is unsupported.
300300
*/
301301
function convertOperator(operator: string): torii.ComparisonOperator {
302+
console.log(operator);
302303
switch (operator) {
303304
case "$eq":
304305
return "Eq";

packages/sdk/src/getEntities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function getEntities<T extends SchemaType>(
4949
limit: limit,
5050
offset: cursor,
5151
clause,
52-
dont_include_hashed_keys: query.entityIds ? false : true,
52+
dont_include_hashed_keys: false,
5353
};
5454

5555
try {

packages/sdk/src/getEventMessages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function getEventMessages<T extends SchemaType>(
4949
limit: limit,
5050
offset: cursor,
5151
clause,
52-
dont_include_hashed_keys: true,
52+
dont_include_hashed_keys: false,
5353
};
5454

5555
try {

packages/sdk/src/types.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,13 @@ export type QueryOptions = {
8484
/**
8585
* Logical operators for combining multiple conditions
8686
*/
87-
export type LogicalOperator = "AND" | "OR";
8887

8988
/**
9089
* Recursively defines the conditions for the `where` clause.
9190
*/
9291
export type WhereCondition<TModel> =
9392
| {
94-
[key in LogicalOperator]?: Array<WhereCondition<TModel>>;
93+
[key in torii.LogicalOperator]?: Array<WhereCondition<TModel>>;
9594
}
9695
| {
9796
[P in keyof TModel]?: {
@@ -156,12 +155,14 @@ export type SubscriptionQueryType<T extends SchemaType> = {
156155
};
157156
};
158157

158+
export type BaseQueryType = {
159+
entityIds?: string[];
160+
};
161+
159162
/**
160-
* QueryType for queries, using QueryWhereOptions
163+
* Query type with model conditions
161164
*/
162-
export type QueryType<T extends SchemaType> = {
163-
entityIds?: string[];
164-
} & {
165+
export type ModelQueryType<T extends SchemaType> = {
165166
[K in keyof T]?: {
166167
[L in keyof T[K]]?:
167168
| AtLeastOne<{
@@ -171,6 +172,11 @@ export type QueryType<T extends SchemaType> = {
171172
};
172173
};
173174

175+
/**
176+
* Combined QueryType using union of base and model types
177+
*/
178+
export type QueryType<T extends SchemaType> = BaseQueryType | ModelQueryType<T>;
179+
174180
/**
175181
* Result of a query
176182
*/

packages/torii-wasm/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -ex
55

66
# Clone the repository
7-
git clone --depth 1 --branch grpc-update https://github.com/dojoengine/dojo.c dojo.c
7+
git clone --depth 1 https://github.com/dojoengine/dojo.c dojo.c
88
cd dojo.c
99

1010
# Build for web (browser)

0 commit comments

Comments
 (0)