smaccoun
smaccoun
CCConvex Community
Created by smaccoun on 4/1/2025 in #support-community
LLM Docs
Thanks @Matt Luo . Ive found that with adding it to cursor there is sometimes a large context issue. Like it wil make sublte errors with a pagination syntax or file upload syntax etc. If i paste the direct links of those it often does not, but often like i want to give all the docs for say File storage in just a simple llm friendly way. Not sure if anyone has had this experience but that's the motivation
7 replies
CCConvex Community
Created by smaccoun on 1/21/2025 in #support-community
Types for resuing filters
For reference for anyone else who sees this, here's an exmaple i have using the convex helpers filter
import { filter } from "convex-helpers/server/filter";
import type { NamedTableInfo, Query } from "convex/server";
import type { DataModel } from "../_generated/dataModel";

export const hasLastNameFilter = <
Q extends Query<NamedTableInfo<DataModel, "users">>,
>(
query: Q
) =>
filter(query, (user) => user.lastName !== undefined && user.lastName !== "");
import { filter } from "convex-helpers/server/filter";
import type { NamedTableInfo, Query } from "convex/server";
import type { DataModel } from "../_generated/dataModel";

export const hasLastNameFilter = <
Q extends Query<NamedTableInfo<DataModel, "users">>,
>(
query: Q
) =>
filter(query, (user) => user.lastName !== undefined && user.lastName !== "");
7 replies
CCConvex Community
Created by smaccoun on 1/21/2025 in #support-community
Types for resuing filters
Thank you!
7 replies
CCConvex Community
Created by smaccoun on 1/21/2025 in #support-community
Types for resuing filters
Although given the recommendation in best practices docs to not use filter maybe I should not be doing this
7 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Didn't actually check if this code runs ^^ but just is the gist of it
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
const ParamsSchema = z.object({
email: z.string().email(),
});

export const defaultPasswordConfig = (custom: {minPasswordLength?: number}): PasswordConfig => ({
validatePasswordRequirements: (password) => {
const minPasswordLength = custom.minPasswordLength ?? 8
if (password.length >= minPasswordLength) {
throw new ConvexError("Password must be at least 8 characters");
}
},
crypto: {
verifySecret: async (secret, hash) => {
if (secret === hash) {
return true;
}
throw new ConvexError("Invalid credentials");
},
hashSecret: async (secret) => {
console.log("TODO???");
return secret;
},
},
profile(params) {
// check for existing account errors here also?

const { error, data } = ParamsSchema.safeParse(params);
if (error) {
throw new ConvexError("Invalid email");
}
return { email: data.email };
},
})
const ParamsSchema = z.object({
email: z.string().email(),
});

export const defaultPasswordConfig = (custom: {minPasswordLength?: number}): PasswordConfig => ({
validatePasswordRequirements: (password) => {
const minPasswordLength = custom.minPasswordLength ?? 8
if (password.length >= minPasswordLength) {
throw new ConvexError("Password must be at least 8 characters");
}
},
crypto: {
verifySecret: async (secret, hash) => {
if (secret === hash) {
return true;
}
throw new ConvexError("Invalid credentials");
},
hashSecret: async (secret) => {
console.log("TODO???");
return secret;
},
},
profile(params) {
// check for existing account errors here also?

const { error, data } = ParamsSchema.safeParse(params);
if (error) {
throw new ConvexError("Invalid email");
}
return { email: data.email };
},
})
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
I think those are pretty good yea. I still think some kind of just exposed composable config or default provider could be fine too, rather than a single forced response. Something like export function defaultPasswordConfig(args: {minPasswordLength: string, ....}): PasswordConfig {...} that then provides those errors might be a good solution but i dunno as much about how the whole system works so just an idea
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Seems like it would be nice for the universal errors (like rate limit exceeded) to stil be baked in, but tbh I dunno if the best solution is to have that in some common core code or is better just documented or exported with default providers (i provided one such example in the comment). Definitely interesting to think about....I think both solutions could probably be fine
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Actually @Eva at the start of that comment i mention some common ones that mabe could be a part of all, regardless of provider implementation. I think the list you have there of those 4 might be really good examples that could exist for that
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Hey sorry for the slow response everyone. I've spent some more time with it and understand much better how the providers work now. See my last comment on that issue...i don't think any architectural change is necessary, but some docs or good default exports might help out
40 replies
CCConvex Community
Created by Joe on 4/13/2023 in #support-community
primary and foreign key constraints?
Ah okay cool. Was just curious. I'm manually doing it now just was curious. Thanks 👍
15 replies
CCConvex Community
Created by Joe on 4/13/2023 in #support-community
primary and foreign key constraints?
Is there an estimate for when this will be added? At least setting uniqueness constraints on the db level
15 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Yup this is on the right track! But as mentioned would be good to have a full enum list to match over, but this is a great start and at least ahndles the invalid password case which is what i was testing
40 replies
CCConvex Community
Created by gioru on 8/27/2024 in #support-community
Need help with handling Convex Auth signIn errors in prod
Has anyone found an example of this where someone cleanly handles auth errors? For example incorrect password. Handling application (expected) errors is quite important in signup
40 replies
CCConvex Community
Created by Oren on 8/23/2024 in #support-community
how to handle auth errors
I"m also wondering about this. I'm trying to use e instanceof ConvexError and it's not working great. It would be nice for for application level errors in convex auth if it just returned a successful Result<Failure, Success>type with known error so we could handle these intelligently on the clietn wiht the erorr messages we want. Auth is a plcace where there are a lot of handleable errors that need to be dealt with
2 replies