pipsai
pipsai
CCConvex Community
Created by pipsai on 1/31/2025 in #support-community
Convex Self-host
Thank you!
4 replies
CCConvex Community
Created by pipsai on 5/11/2024 in #general
Storing Firebase uid in Convex db
Yall are the best it works!
15 replies
CCConvex Community
Created by pipsai on 5/11/2024 in #general
Storing Firebase uid in Convex db
Thank you! I'll keep yall updated if I figure it out. Basically I just have to grab the jwt token. instead of _id
15 replies
CCConvex Community
Created by pipsai on 5/11/2024 in #general
Storing Firebase uid in Convex db
i might have figured it out. I might have to try this thing again https://docs.convex.dev/auth/advanced/custom-auth
15 replies
CCConvex Community
Created by pipsai on 5/11/2024 in #general
Storing Firebase uid in Convex db
nothing so far, everyone is using my app (I only have 28 users atm) with no issues but I'm just looking into the future as we scale if there might be problems. So the way I do it right now is I just call convex when I need user data and query it with their currently logged user ID. So I basically have,
<AuthProvider>


<ConvexClientProvider>
<SidebarProvider>

<NavBar/>

<LeftSidebar />
<CollapseLayout>
{children}
</CollapseLayout>

</SidebarProvider>
<Toaster />

</ConvexClientProvider>
</AuthProvider>
<AuthProvider>


<ConvexClientProvider>
<SidebarProvider>

<NavBar/>

<LeftSidebar />
<CollapseLayout>
{children}
</CollapseLayout>

</SidebarProvider>
<Toaster />

</ConvexClientProvider>
</AuthProvider>
then if I need userdata I just call my hook
"use client"
import { useState, useEffect } from 'react';
import { AuthContext } from '@/providers/AuthProvider';
import { useQuery } from 'convex/react';
import {api} from '@/convex/_generated/api';
import { set } from 'react-hook-form';

const useUserConvexData = () => {
const {user}:any = AuthContext();
const [user_ID, setUser_ID] = useState("notset");
const userId = user.user?.uid; // Accessing the user's ID, assuming it's in `uid`
useEffect(() => {
setUser_ID(userId);
}, [userId]);


const userData = useQuery(api.functions.users.getUser, { userId: user_ID });

return userData;
};

export default useUserConvexData;
"use client"
import { useState, useEffect } from 'react';
import { AuthContext } from '@/providers/AuthProvider';
import { useQuery } from 'convex/react';
import {api} from '@/convex/_generated/api';
import { set } from 'react-hook-form';

const useUserConvexData = () => {
const {user}:any = AuthContext();
const [user_ID, setUser_ID] = useState("notset");
const userId = user.user?.uid; // Accessing the user's ID, assuming it's in `uid`
useEffect(() => {
setUser_ID(userId);
}, [userId]);


const userData = useQuery(api.functions.users.getUser, { userId: user_ID });

return userData;
};

export default useUserConvexData;
15 replies
CCConvex Community
Created by pipsai on 4/30/2024 in #general
Bandwith help
This is spot on! Thank you so much!
6 replies
CCConvex Community
Created by pipsai on 4/30/2024 in #general
Bandwith help
This is the query and mutation that costs the most. Am I doing it right?
export const list = query({
args: {
sessionId: v.string(),
},
handler: async (ctx, args) => {
return await ctx.db
.query("LessonBotMessages")
.withIndex("bySessionId", (q) => q.eq("SessionID", args.sessionId))
.collect();
},
});

export const updateBotMessage = internalMutation(
async (
ctx,
{ messageId, text }: { messageId: Id<"LessonBotMessages">; text: string }
) => {
await ctx.db.patch(messageId, { Text: text });
}
);

export const list = query({
args: {
sessionId: v.string(),
},
handler: async (ctx, args) => {
return await ctx.db
.query("LessonBotMessages")
.withIndex("bySessionId", (q) => q.eq("SessionID", args.sessionId))
.collect();
},
});

export const updateBotMessage = internalMutation(
async (
ctx,
{ messageId, text }: { messageId: Id<"LessonBotMessages">; text: string }
) => {
await ctx.db.patch(messageId, { Text: text });
}
);

6 replies
CCConvex Community
Created by pipsai on 4/30/2024 in #general
Bandwith help
Its the responses from the llm which is costing a lot. It is the chat history, is that normal?
6 replies
CCConvex Community
Created by pipsai on 3/19/2024 in #general
exporting data from dev to prod
Ok I try this again. Sorry. I tried it before I got an error. I'll let you know more details to replicate it if I ever encounter it again
3 replies
CCConvex Community
Created by pipsai on 3/19/2024 in #general
Convex query best practices
Yeah I already did indexing to my other functions. Is there a benefit of indexing everything? rather than being selective with what to index?
6 replies
CCConvex Community
Created by pipsai on 3/19/2024 in #show-and-tell
gitit | AI Social Platform
Thanks!
3 replies
CCConvex Community
Created by jamwt on 6/7/2023 in #support-community
Looking for something?
yeah sorry i overlooked it.
38 replies