fugufish
fugufish
CCConvex Community
Created by fugufish on 3/17/2025 in #support-community
Optimistic Update & Image Uploads
I'm looking for a way to handle optimistic updates along with image uploads. Basically want the use to be able to add an image, and use optimistic updating and upload after the fact. Has anyone accomplished this?
4 replies
CCConvex Community
Created by fugufish on 3/16/2025 in #support-community
Local first
The app that I'm building will eventually be required to use local first sync for offline use ability. My question is, I'm very early in the build phase, so I can easily bake in something like replicache, but would it be worth it to wait for Convex's native solution? How much of a refactor is it expected to take when Convex's sync solution is released? If it is low, I can justify waiting. If it's the same level effort as implementing replicache, I'd rather do that now before the amount of codes to be refactored is too large.
5 replies
CCConvex Community
Created by fugufish on 1/27/2025 in #support-community
Authoring Components
I may be missing it, but is there a place to find out how to author components? I know the api is somewhat in flux, but two components I am interested in: * application level encryption (similar to rails encryption) * better sentry/transaction handling (if possible)
5 replies
CCConvex Community
Created by fugufish on 1/22/2025 in #support-community
I'm having problems integrating launch darkly
// convex/convex.config.ts
import { defineApp } from "convex/server";
import launchdarkly from "@convex-dev/launchdarkly/convex.config";

const app = defineApp();

app.use(launchdarkly);

export default app;
// convex/convex.config.ts
import { defineApp } from "convex/server";
import launchdarkly from "@convex-dev/launchdarkly/convex.config";

const app = defineApp();

app.use(launchdarkly);

export default app;
Failed to analyze config.js: Uncaught Error: Component definition does not have the required componentDefinitionPath property. This code only works in Convex runtime.
Failed to analyze config.js: Uncaught Error: Component definition does not have the required componentDefinitionPath property. This code only works in Convex runtime.
Also, the library has a vulnerability (which I submitted a PR on) https://github.com/get-convex/launchdarkly
9 replies
CCConvex Community
Created by fugufish on 12/31/2024 in #support-community
requestId access
Is there a way to gain access to the requestId in the context? I've dug through the convex-js code and it seems like something might be stubbed out, but I can't seem to figure how to get at it
55 replies