-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.ts
72 lines (62 loc) · 1.75 KB
/
types.ts
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
import { Session, User } from "@supabase/supabase-js";
// Types for the 2 different contexts that we have in our app
export type EventsContextType = {
allEventsForCurrentCity: SupabaseEventType[];
allEventsForCurrentUser: SupabaseEventType[];
eventCategories: SupabaseCategoryType[];
getEventById: (id: string | string[]) => SupabaseEventType | undefined;
createNewEvent: (event: SupabaseEventType) => Promise<void>;
status: EventsLoadingState;
};
export type AuthContextType = {
session: Session | null;
userProfile: UserProfile | null;
getSingleUserProfile: (userId: string) => Promise<UserProfile | null>;
signIn: (email: string, password: string) => Promise<void>;
signOut: () => Promise<void>;
loading: boolean;
status: LoadingStatus;
};
export type LoadingStatus = "fetching" | "complete" | "error";
export type EventsLoadingState = {
events: LoadingStatus;
categories: LoadingStatus;
creators: LoadingStatus;
};
// Types for the Supabase tables
export type SupabaseEventType = {
id: number;
created_at: string;
title: string;
description: string;
image: string;
city: string;
street_address: string;
postal_code: string;
number_of_attendees: number;
date_of_event: string;
time_of_event: string;
host_id: string;
category: string;
ticket_price: number;
};
export interface EventWithCoordinates extends SupabaseEventType {
coordinates: {
latitude: number;
longitude: number;
};
}
export type SupabaseCategoryType = {
id: number;
created_at: string;
title: string;
image: string;
};
// Types for the User Profile, also coming from Supabase
export interface UserProfile extends User {
user_id?: string;
first_name?: string;
last_name?: string;
avatar_url?: string;
top_creator?: boolean;
}