Calonz
Calonz
CCConvex Community
Created by Calonz on 10/22/2024 in #show-and-tell
FREE: NextJS Boilerplate + Convex + Stripe + Resend
I made the boilerplate for FREE. All I ask is some feedback and support 🙏🏻
6 replies
CCConvex Community
Created by Calonz on 7/18/2024 in #support-community
Convex X Clerk Issue: Application error: a client-side exception
Would you be able to show me what's the best way to handle it. Here's where the error coming from. Do you mind checking if this is the correct way to do it? or I should fix the application logic more on the client side?
export const getFeeds = query({
args: {...
},
handler: async (ctx, { filters }) => {
const identity = await userIdentity(ctx);

if (!identity) throw new ConvexError("Unauthorized!");

let feeds = await ctx.db.query("feeds").order("desc").collect();

...rest of the code
export const getFeeds = query({
args: {...
},
handler: async (ctx, { filters }) => {
const identity = await userIdentity(ctx);

if (!identity) throw new ConvexError("Unauthorized!");

let feeds = await ctx.db.query("feeds").order("desc").collect();

...rest of the code
and here's the userIdentity fn():
async function userIdentity(
ctx: QueryCtx | MutationCtx,
) {
const identity = await ctx.auth.getUserIdentity();

if (!identity) return null;

const user = await ctx.db
.query("users")
.withIndex("by_token", (q) => q.eq("tokenIdentifier", identity.tokenIdentifier))
.unique();

if (!user) return null;

return user;
}
async function userIdentity(
ctx: QueryCtx | MutationCtx,
) {
const identity = await ctx.auth.getUserIdentity();

if (!identity) return null;

const user = await ctx.db
.query("users")
.withIndex("by_token", (q) => q.eq("tokenIdentifier", identity.tokenIdentifier))
.unique();

if (!user) return null;

return user;
}
5 replies
CCConvex Community
Created by Calonz on 3/6/2024 in #support-community
Storage File Retrieval Failed: "upstream image response failed for ..."
Aight, let’s talk there
21 replies
CCConvex Community
Created by Calonz on 3/6/2024 in #support-community
Storage File Retrieval Failed: "upstream image response failed for ..."
@7uckingMad? can you show me the code where you’re getting the error?
21 replies
CCConvex Community
Created by Calonz on 3/6/2024 in #support-community
Storage File Retrieval Failed: "upstream image response failed for ..."
@7uckingMad? what do u need help with?
21 replies
CCConvex Community
Created by pipsai on 3/19/2024 in #show-and-tell
gitit | AI Social Platform
That Face Search feature is 💯!!!
3 replies