-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpath-utils.ts
More file actions
180 lines (149 loc) · 4.34 KB
/
path-utils.ts
File metadata and controls
180 lines (149 loc) · 4.34 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
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
import type { AUTH_PROVIDERS } from "~/shared/session";
import { publicStaticEnv } from "~/env/env.static";
import { getAuthorizationServerOrigin } from "./origins";
import type { BuilderMode } from "../nano-states/misc";
const searchParams = (params: Record<string, string | undefined | null>) => {
const searchParams = new URLSearchParams();
for (const [key, value] of Object.entries(params)) {
if (typeof value === "string") {
searchParams.set(key, value);
}
}
const asString = searchParams.toString();
return asString === "" ? "" : `?${asString}`;
};
export const builderPath = ({
pageId,
authToken,
pageHash,
mode,
safemode = false,
}: {
pageId?: string;
authToken?: string;
pageHash?: string;
mode?: "preview" | "content";
safemode?: boolean;
} = {}) => {
return `/${searchParams({
pageId,
authToken,
pageHash,
mode,
safemode: safemode ? "true" : undefined,
})}`;
};
export const builderUrl = (props: {
projectId: string;
pageId?: string;
origin: string;
authToken?: string;
mode?: BuilderMode;
safemode?: boolean;
}) => {
const authServerOrigin = getAuthorizationServerOrigin(props.origin);
const url = new URL(
builderPath({
pageId: props.pageId,
authToken: props.authToken,
safemode: props.safemode,
}),
authServerOrigin
);
const fragments = url.host.split(".");
if (fragments.length <= 3) {
fragments.splice(0, 0, "p-" + props.projectId);
} else {
// staging | development branches
fragments[0] = "p-" + props.projectId + "-dot-" + fragments[0];
}
url.host = fragments.join(".");
if (props.mode !== undefined) {
url.searchParams.set("mode", props.mode);
}
return url.href;
};
export const dashboardPath = (
view: "templates" | "search" | "projects" = "projects"
) => {
if (view === "projects") {
return `/dashboard`;
}
return `/dashboard/${view}`;
};
export const dashboardUrl = (props: { origin: string }) => {
const authServerOrigin = getAuthorizationServerOrigin(props.origin);
return `${authServerOrigin}/dashboard`;
};
export const cloneProjectUrl = (props: {
origin: string;
sourceAuthToken: string;
}) => {
const authServerOrigin = getAuthorizationServerOrigin(props.origin);
const searchParams = new URLSearchParams();
searchParams.set("projectToCloneAuthToken", props.sourceAuthToken);
return `${authServerOrigin}/dashboard?${searchParams.toString()}`;
};
export const loginPath = (params: {
error?: (typeof AUTH_PROVIDERS)[keyof typeof AUTH_PROVIDERS];
message?: string;
returnTo?: string;
}) => `/login${searchParams(params)}`;
export const logoutPath = () => "/logout";
export const restLogoutPath = () => "/dashboard-logout";
export const userPlanSubscriptionPath = (subscriptionId?: string) => {
const urlSearchParams = new URLSearchParams();
urlSearchParams.set("return_url", window.location.href);
if (subscriptionId) {
urlSearchParams.set("subscription", subscriptionId);
}
return `/builder-payments/billing-portal/sessions?${urlSearchParams.toString()}`;
};
export const authCallbackPath = ({
provider,
}: {
provider: "google" | "github";
}) => `/auth/${provider}/callback`;
export const authPath = ({
provider,
}: {
provider: "google" | "github" | "dev";
}) => `/auth/${provider}`;
export const restAssetsPath = () => {
return `/rest/assets`;
};
export const restAssetsUploadPath = ({
name,
width,
height,
}: {
name: string;
width?: number | undefined;
height?: number | undefined;
}) => {
const urlSearchParams = new URLSearchParams();
if (width !== undefined) {
urlSearchParams.set("width", String(width));
}
if (height !== undefined) {
urlSearchParams.set("height", String(height));
}
if (urlSearchParams.size > 0) {
return `/rest/assets/${name}?${urlSearchParams.toString()}`;
}
return `/rest/assets/${name}`;
};
export const restPatchPath = () => {
const urlSearchParams = new URLSearchParams();
urlSearchParams.set("client-version", publicStaticEnv.VERSION);
const urlSearchParamsString = urlSearchParams.toString();
return `/rest/patch${
urlSearchParamsString ? `?${urlSearchParamsString}` : ""
}`;
};
export const getCanvasUrl = () => {
return `/canvas`;
};
export const restResourcesLoader = () => `/rest/resources-loader`;
export const marketplacePath = (method: string) =>
`/builder/marketplace/${method}`;