-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcreateBrowserClient.ts
211 lines (190 loc) · 6.11 KB
/
createBrowserClient.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
import { createClient } from "@supabase/supabase-js";
import { mergeDeepRight } from "ramda";
import { parse, serialize } from "cookie";
import type { SupabaseClient } from "@supabase/supabase-js";
import type {
GenericSchema,
SupabaseClientOptions,
} from "@supabase/supabase-js/dist/module/lib/types";
import { VERSION } from "./version";
import {
DEFAULT_COOKIE_OPTIONS,
combineChunks,
createChunks,
deleteChunks,
isBrowser,
} from "./utils";
import type { CookieMethods, CookieOptionsWithName } from "./types";
let cachedBrowserClient: SupabaseClient<any, string> | undefined;
export function createBrowserClient<
Database = any,
SchemaName extends string & keyof Database = "public" extends keyof Database
? "public"
: string & keyof Database,
Schema extends GenericSchema = Database[SchemaName] extends GenericSchema
? Database[SchemaName]
: any,
>(
supabaseUrl: string,
supabaseKey: string,
options?: SupabaseClientOptions<SchemaName> & {
cookies?: CookieMethods;
cookieOptions?: CookieOptionsWithName;
isSingleton?: boolean;
},
) {
if (!supabaseUrl || !supabaseKey) {
throw new Error(
`Your project's URL and Key are required to create a Supabase client!\n\nCheck your Supabase project's API settings to find these values\n\nhttps://supabase.com/dashboard/project/_/settings/api`,
);
}
let cookies: CookieMethods = {};
let isSingleton = true;
let cookieOptions: CookieOptionsWithName | undefined;
let userDefinedClientOptions;
if (options) {
({
cookies = {},
isSingleton = true,
cookieOptions,
...userDefinedClientOptions
} = options);
cookies = cookies || {};
}
if (cookieOptions?.name) {
userDefinedClientOptions.auth = {
...userDefinedClientOptions.auth,
storageKey: cookieOptions.name,
};
}
const deleteAllChunks = async (key: string) => {
await deleteChunks(
key,
async (chunkName) => {
if (typeof cookies.get === "function") {
return await cookies.get(chunkName);
}
if (isBrowser()) {
const documentCookies = parse(document.cookie);
return documentCookies[chunkName];
}
},
async (chunkName) => {
if (typeof cookies.remove === "function") {
await cookies.remove(chunkName, {
...DEFAULT_COOKIE_OPTIONS,
...cookieOptions,
maxAge: 0,
});
} else {
if (isBrowser()) {
document.cookie = serialize(chunkName, "", {
...DEFAULT_COOKIE_OPTIONS,
...cookieOptions,
maxAge: 0,
});
}
}
},
);
};
const cookieClientOptions = {
global: {
headers: {
"X-Client-Info": `supabase-ssr/${VERSION}`,
},
},
auth: {
flowType: "pkce",
autoRefreshToken: isBrowser(),
detectSessionInUrl: isBrowser(),
persistSession: true,
storage: {
// this client is used on the browser so cookies can be trusted
isServer: false,
getItem: async (key: string) => {
const chunkedCookie = await combineChunks(key, async (chunkName) => {
if (typeof cookies.get === "function") {
return await cookies.get(chunkName);
}
if (isBrowser()) {
const cookie = parse(document.cookie);
return cookie[chunkName];
}
});
return chunkedCookie;
},
setItem: async (key: string, value: string) => {
// first remove all chunks so there is no overlap
await deleteAllChunks(key);
const chunks = await createChunks(key, value);
for (let i = 0; i < chunks.length; i += 1) {
const chunk = chunks[i];
if (typeof cookies.set === "function") {
await cookies.set(chunk.name, chunk.value, {
...DEFAULT_COOKIE_OPTIONS,
...cookieOptions,
maxAge: DEFAULT_COOKIE_OPTIONS.maxAge,
});
} else {
if (isBrowser()) {
document.cookie = serialize(chunk.name, chunk.value, {
...DEFAULT_COOKIE_OPTIONS,
...cookieOptions,
maxAge: DEFAULT_COOKIE_OPTIONS.maxAge,
});
}
}
}
},
removeItem: async (key: string) => {
if (
typeof cookies.remove === "function" &&
typeof cookies.get !== "function"
) {
console.log(
"Removing chunked cookie without a `get` method is not supported.\n\n\tWhen you call the `createBrowserClient` function from the `@supabase/ssr` package, make sure you declare both a `get` and `remove` method on the `cookies` object.\n\nhttps://supabase.com/docs/guides/auth/server-side/creating-a-client",
);
return;
}
await deleteAllChunks(key);
},
},
},
};
// Overwrites default client config with any user defined options
const clientOptions = mergeDeepRight(
cookieClientOptions,
userDefinedClientOptions,
) as SupabaseClientOptions<SchemaName>;
if (isSingleton) {
// The `Singleton` pattern is the default to simplify the instantiation
// of a Supabase client in the browser - there must only be one
const browser = isBrowser();
if (browser && cachedBrowserClient) {
return cachedBrowserClient as SupabaseClient<
Database,
SchemaName,
Schema
>;
}
const client = createClient<Database, SchemaName, Schema>(
supabaseUrl,
supabaseKey,
clientOptions,
);
if (browser) {
// The client should only be cached in the browser
cachedBrowserClient = client;
}
return client;
}
// This allows for multiple Supabase clients, which may be required when using
// multiple schemas. The user will be responsible for ensuring a single
// instance of Supabase is used for each schema in the browser.
return createClient<Database, SchemaName, Schema>(
supabaseUrl,
supabaseKey,
clientOptions,
);
}