makrdev
makrdev
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
const file = new TextEncoder().encode(args.filesString);
await r2.store(ctx, file, args.key);
const file = new TextEncoder().encode(args.filesString);
await r2.store(ctx, file, args.key);
Okay, this works now. Thanks!
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Yeah, it was different error then.
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Nope, it's not working in Convex runtime too. Just wanted to check if it works in Node but it's not.
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Tested in node env and this is the error: Error at readableStreamHasher (convex:/user/_deps/node/H5VBUGX6.js:21456:15) at getAwsChunkedEncodingStream (convex:/user/_deps/node/H5VBUGX6.js:1293:41) at convex:/user/_deps/node/H5VBUGX6.js:9589:25 at processTicksAndRejections (node:internal/process/task_queues:95:5)
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Still no luck :/ I tested your example and it's not working too.
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
// This doesn't work.
const example = internalAction({
args: {
key: v.string(),
string: v.string(),
},
handler: async (ctx, args) => {
try {
const file = new Blob([args.string], { type: "text/plain" });
await r2.store(ctx, file, args.key);

} catch (error) {
console.error(error);
throw new ConvexError("Failed to store.");
}
},
});
// This doesn't work.
const example = internalAction({
args: {
key: v.string(),
string: v.string(),
},
handler: async (ctx, args) => {
try {
const file = new Blob([args.string], { type: "text/plain" });
await r2.store(ctx, file, args.key);

} catch (error) {
console.error(error);
throw new ConvexError("Failed to store.");
}
},
});
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
It's still same with blob type. I wish we were able to pass other types than blob like Uint8Array<ArrayBufferLike> etc. Can we support all types supported by S3 client?
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Hey @erquhart, thanks! I got this error from store method: [TypeError: readableStream.getReader is not a function]
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Thanks for quick response. Glad you found it useful too. Keep up the good work!
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
I had to delete and install it again. Now it works, so thanks for your support @erquhart Two more things: 1) It would be great if we can pass custom metadata. 2) It would be great if we can pass custom key. (Since we call this in server it's secure?)
37 replies
CCConvex Community
Created by makrdev on 3/26/2025 in #support-community
LocalDeploymentMismatch
I deleted this folder and re-created the local deployment from scratch. ~/.convex/convex-backend-state/
3 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Thanks!
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
Yeah, I'm on the latest version.
37 replies
CCConvex Community
Created by makrdev on 3/18/2025 in #support-community
R2 Store Method
No description
37 replies
CCConvex Community
Created by Nishil Faldu on 1/30/2025 in #support-community
Lets say there are a lot of apps...
Hey @Nishil Faldu how did you solve this issue?
21 replies
CCConvex Community
Created by ianpaschal on 2/25/2025 in #support-community
How to re-organize api structure?
Yes, you can put all related functions into a single file. A pattern I follow is: collections(folder) > users.ts (schema and all the functions)
6 replies
CCConvex Community
Created by Corbi-Wan Kenobi on 1/26/2025 in #support-community
Using pagination in convex vs something like TanStack Tables?
What comes to mind is calculating total count with aggregate component and calculating number of pages based on total count / page limit
22 replies