Skip to content

Commit 5ecf6cc

Browse files
committed
update list command
1 parent 25dc48a commit 5ecf6cc

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- feat: add localhost to supported chains
44
- fix: fix bug regarding retry fetch behavior
5+
- chore: update `arkiver list` command
56

67
# v0.4.4
78

cli/list/mod.ts

+18-1
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ export const action = async () => {
2929
throw new Error('Not logged in')
3030
}
3131

32+
const username = await getUsername(userRes.data.user.id);
33+
3234
const headers = new Headers()
3335
headers.append(
3436
'Authorization',
3537
`Bearer ${sessionRes.data.session.access_token}`,
3638
)
3739

3840
const listRes = await fetch(
39-
new URL(`/arkives`, SUPABASE_FUNCTIONS_URL),
41+
new URL(`/arkives/${username}`, SUPABASE_FUNCTIONS_URL),
4042
{
4143
method: 'GET',
4244
headers,
@@ -101,3 +103,18 @@ const listDev = async () => {
101103

102104
Deno.exit()
103105
}
106+
107+
export const getUsername = async (userId: string) => {
108+
const supabase = getSupabaseClient();
109+
const profileRes = await supabase
110+
.from("user_profile")
111+
.select<"username", { username: string }>("username")
112+
.eq("id", userId)
113+
.single();
114+
115+
if (profileRes.error) {
116+
throw profileRes.error;
117+
}
118+
119+
return profileRes.data.username;
120+
};

0 commit comments

Comments
 (0)