burnstony#1975
CCConvex Community
•Created by burnstony#1975 on 3/27/2025 in #support-community
Wait for a result
In react what’s the best way to get a result from the convex backend, but not have it be reactive. I want to wait for the result but than I don’t care if it changes
6 replies
CCConvex Community
•Created by burnstony#1975 on 3/10/2025 in #support-community
aggregate index
export const pageDelete = query({
args: {
index: v.number(),
pageSize: v.number()
},
handler: async (ctx, { index, pageSize }) => {
const { key } = await timeline_aggregate.at(ctx, index);
console.log(key);
let pageData = getPage(ctx, {
table: "timeline",
index: "start_index",
startIndexKey: key,
targetMaxRows: pageSize,
schema: schema
});
return (await pageData).page;
},
});
if I pass in zero and 12, the first record I get back is the record at index 1
@lee is this how get page should work? is it not supposed to include the record at startIndexKey: key?
6 replies
CCConvex Community
•Created by burnstony#1975 on 3/7/2025 in #support-community
aggrea
I kept getting the below error
Math that I believed should always end up with an integer was sometimes not, I am still not sure if its a weird floating point thing or an actual mistake in my logic but either way casting to an int eliminated the error
const int_index = Math.floor((page - 1) * pageSize);
const { key } = await timeline_aggregate.at(ctx, int_index);
@lee thought you'd like to know that
Oops!
Sorry, an unexpected error has occurred.
[CONVEX
Q(page_timeline:pageOfTimeline)] [Request ID: 46915a3b4d2c7ff3] Server
Error
Uncaught ConvexError: Uncaught ConvexError: offset exceeded count by
-5.000000000001819 (in node j979aarwny50526j9thqpjy8g97bgp1a)
at atOffsetInNode
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:725:0)
at async atOffsetInNode
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:719:63)
at async atOffsetInNode
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:719:63)
at async atOffsetInNode
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:719:63)
at async atOffsetInNode
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:719:63)
at async atOffsetHandler
(../../../../node_modules/@convex-dev/aggregate/src/component/btree.ts:379:0)
at async at [as at]
(../../../../node_modules/@convex-dev/aggregate/src/client/index.ts:114:6)
at async handler (../../convex/page_timeline.ts:175:23)
Called by client
4 replies
CCConvex Community
•Created by burnstony#1975 on 2/25/2025 in #support-community
pagination
trying to find a way to randomly access a different page
getPage doesn't seem to work
how can I go straight to the 100th page
how can I filter some out so pages only include the desired results, there are to many bytes for me to collect the whole table
54 replies
CCConvex Community
•Created by burnstony#1975 on 2/25/2025 in #support-community
stop from running again
I have a data processing function that kicks a bunch of other function off with runafter
is there a way to see if these functions are still running programatically I'd like to stop the batch from being kicked off again if these functions are still running in the background
2 replies
CCConvex Community
•Created by burnstony#1975 on 2/9/2025 in #support-community
tailwind
was having trouble getting tailwind to work so In just created a brand new project using
pnpm create convex@latest
selecting vite and github auth
3 replies
CCConvex Community
•Created by burnstony#1975 on 2/8/2025 in #support-community
testing convex
I am just getting the hang of vitest.
I read this https://docs.convex.dev/testing/convex-test and it seems like a pretty good guide to testing convex code in a convex project.
I am looking for guidance in testing the front end code in a convex project. Not sure how to go about it, how is the backend mocked?
10 replies
CCConvex Community
•Created by burnstony#1975 on 1/15/2025 in #support-community
using Next.js with Convex.dev
any good articles on how to use Next and Convex together
I am a bit new to both, I just finished doing the intro tutorial for next.js https://nextjs.org/learn/dashboard-app and can see good use cases for server side rendering.
However there are still tons of good use cases for using convex, not sure how to mix the two together
4 replies
CCConvex Community
•Created by burnstony#1975 on 1/2/2025 in #support-community
fitness tracking
trying to integrate with https://www.polar.com/accesslink-api/?srsltid=AfmBOooE910RcxJdKHXs5u7sWjpegMxc8yZJQd_HckBMyFSvVUVLhxzP#polar-accesslink-api
and eventually with Garmin as well
wondering if this should integrate with Convex Auth
21 replies
CCConvex Community
•Created by burnstony#1975 on 12/18/2024 in #support-community
Zod
https://stack.convex.dev/typescript-zod-function-validation
is it a good idea to use Zod for validation - I just started using tanstack forms and have used zod a little and liked it.
any thoughts on using it as described in this article
4 replies
CCConvex Community
•Created by burnstony#1975 on 12/14/2024 in #support-community
Multi-part complicated forms
I am pretty new to front end development.
I am building with Next.js for the front end, I am building an app that is a multipart form for building a rather large json eventually. Wondering what the best approach is. In particular I am not sure what the best approach is on the front end.
18 replies
CCConvex Community
•Created by burnstony#1975 on 12/13/2024 in #support-community
create a new account
I have an account
But I'd like to set up a new account for a startup I am working with, and I'd like to keep the two accounts seperate.
Currently, I only have one github login. I am a member of the startup's organization and have an email from the organization, but am not currently using that email to login to github
14 replies
CCConvex Community
•Created by burnstony#1975 on 12/13/2024 in #support-community
adding a project to an account
how do I add an existing convex project to an account?
11 replies
CCConvex Community
•Created by burnstony#1975 on 12/12/2024 in #support-community
httpAction
can't seem to get the body inside an http post action
https://docs.convex.dev/functions/http-actions
body is undefined everytime?
TS
import { httpAction } from "./_generated/server";
import { internal } from "./_generated/api";
export const postMessage = httpAction(async (ctx, request) => {
const { author, body } = await request.json();
await ctx.runMutation(internal.messages.sendOne, {
body:
Sent via HTTP action: ${body}
,
author,
});
return new Response(null, {
status: 200,
});
});11 replies
CCConvex Community
•Created by burnstony#1975 on 12/11/2024 in #support-community
query inside an action
is it possible to call a query from inside an action
3 replies
CCConvex Community
•Created by burnstony#1975 on 11/20/2024 in #support-community
Sharing data between modal and convex
What’s the best way to share data between modal.com and convex.dev
3 replies
CCConvex Community
•Created by burnstony#1975 on 11/19/2024 in #support-community
Choosing a React Framework
Is their a guide or advice for choosing a React Framework
I’ve been listening to the podcast which seems very opinionated about front end approaches and keeping it simple. However I’m new to React and it’s difficult to know the pluses and minuses of different frameworks
13 replies
CCConvex Community
•Created by burnstony#1975 on 11/18/2024 in #support-community
Python
i have talked to several companies that are using fullstack javascript/typescript plus a data processing pipeline that uses python
Of course, we should use convex for the typescript backend
but what is the simplest recomendations for the rest
1. front end, which framework is best when starting out with react
2. what is a good solution for running a python data pipeline
6 replies
CCConvex Community
•Created by burnstony#1975 on 8/2/2024 in #support-community
CONVEX_DEPLOY_KEY monorepo
trying to deploy a Vite project from vercel
I have a monorepo, because I also have native project
I can't figure out what the right command
cd apps/web-vite && pwd && npm run build && cd ../../packages/backend && pwd && npx convex deploy
this deploys, but than I get this error
"Uncaught Error: ConvexReactClient requires a URL like 'https://happy-otter-123.convex.cloud'.
at new Bw (client.js:51:13)
at main.tsx:17:16"
9 replies
CCConvex Community
•Created by burnstony#1975 on 7/26/2024 in #support-community
Mono repo with Convex auth
I am using convex auth for my expo app
Currently I am still using Clerk in my Next.js app for the web app
I don't think I need any functionality the Next.js provides and am thinking of using Vite instead
is there a command to add a vite app to my monorepo
8 replies