-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.ts
More file actions
72 lines (68 loc) · 2.22 KB
/
user.ts
File metadata and controls
72 lines (68 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"use server";
import {
CreateUserRequest,
UpdateUserRequest,
UpdateUserResponse,
User,
requiredOnboardingProgress,
} from "@/types/user";
import { createSupabaseClient } from "@/utils/supabase/server";
import { authHeader, authWrapper, getClient } from "./client";
export const createUser = async (payload: CreateUserRequest): Promise<User> => {
const req = async (token: string): Promise<User> => {
const supabase = await createSupabaseClient();
if (!payload.email) {
const { data, error } = await supabase.auth.getUser();
if (error) {
throw Error("Error with Retrieving Email. Please Try Again");
}
payload.email = data.user?.email;
}
const client = getClient();
const { data, error, response } = await client.POST("/users", {
headers: authHeader(token),
body: payload,
});
if (response.ok) {
await supabase.auth.updateUser({
data: {
onboarding_step: requiredOnboardingProgress.COMPANY,
},
});
console.log(error);
return data!;
} else {
throw Error(error?.error);
}
};
return authWrapper<User>()(req);
};
export const getUser = async (): Promise<User> => {
const req = async (token: string): Promise<User> => {
const client = getClient();
const { data, error, response } = await client.GET("/users", {
headers: authHeader(token),
});
if (response.ok) {
return data!;
} else {
throw Error(error?.error);
}
};
return authWrapper<User>()(req);
};
export const updateUserInfo = async (payload: UpdateUserRequest & { id: string }) => {
const req = async (token: string) => {
const client = getClient();
const { data, error, response } = await client.PATCH("/users", {
headers: authHeader(token),
body: { ...payload, id: payload.id },
});
if (response.ok) {
return data!;
} else {
throw Error(error?.error);
}
};
return authWrapper<UpdateUserResponse>()(req);
};