-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathuse-site-launch.tsx
More file actions
219 lines (195 loc) · 5.68 KB
/
Copy pathuse-site-launch.tsx
File metadata and controls
219 lines (195 loc) · 5.68 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
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
212
213
214
215
216
217
218
219
import { DotcomPlans } from '@automattic/api-core';
import { domainsQuery, siteLaunchMutation } from '@automattic/api-queries';
import { useQuery, useMutation } from '@tanstack/react-query';
import { __ } from '@wordpress/i18n';
import { addQueryArgs } from '@wordpress/url';
import { useMemo, useState, type ComponentType, type ReactElement } from 'react';
import { useSiteLaunchGatingVariant } from 'calypso/lib/explat/site-launch-gating';
import { getCurrentDashboard } from '../../app/routing';
import { dashboardLinkWithBackport, redirectToDashboardLink, wpcomLink } from '../../utils/link';
import {
isSitePlanLaunchable as getIsSitePlanLaunchable,
isSitePlanBigSkyTrial,
isSitePlanPaid,
} from '../plans';
import type { Site } from '@automattic/api-core';
export type A4aLaunchModalComponent = ComponentType< {
isLaunching: boolean;
onClose: () => void;
onLaunch: () => void;
} >;
type RecordTracksEvent = ( eventName: string, properties?: Record< string, unknown > ) => void;
export interface UseSiteLaunchOptions {
tracksContext: string;
backTo?: string;
postLaunchUrl?: string;
a4aLaunchUrl?: string;
a4aLaunchModal?: A4aLaunchModalComponent;
domainsOptions?: ReturnType< typeof domainsQuery >;
recordTracksEvent: RecordTracksEvent;
onLaunchError?: () => void;
}
export interface UseSiteLaunchResult {
isLoading: boolean;
isExperimentLoading: boolean;
isHidden: boolean;
isDisabled: boolean;
isBusy: boolean;
href?: string;
onClick: () => void;
modal: ReactElement | null;
}
export function useSiteLaunch(
site: Site,
{
tracksContext,
backTo,
postLaunchUrl,
a4aLaunchUrl,
a4aLaunchModal: A4aLaunchModal,
domainsOptions,
recordTracksEvent,
onLaunchError,
}: UseSiteLaunchOptions
): UseSiteLaunchResult {
const { data: domains = [], isLoading: isDomainsLoading } = useQuery( {
...( domainsOptions ?? domainsQuery() ),
select: ( data ) => data.filter( ( d ) => d.blog_id === site.ID ),
} );
const launchMutation = useMutation( {
...siteLaunchMutation( site.ID ),
meta: {
snackbar: {
success: __( 'Your site has been launched; now you can share it with the world!' ),
error: __( 'Failed to launch site.' ),
},
},
} );
const [ isModalOpen, setIsModalOpen ] = useState( false );
const [ isExperimentLoading, variant ] = useSiteLaunchGatingVariant();
const isSitePlanHostingTrial = site.plan?.product_slug === DotcomPlans.HOSTING_TRIAL_MONTHLY;
const isSitePlanPaidWithDomains = isSitePlanPaid( site ) && domains.length > 1;
const isDisabled = ! getIsSitePlanLaunchable( site );
const shouldImmediatelyLaunch =
isSitePlanPaidWithDomains || isSitePlanHostingTrial || site.is_wpcom_staging_site;
const launchUrl = useMemo( () => {
if ( isSitePlanBigSkyTrial( site ) ) {
return addQueryArgs( wpcomLink( '/setup/ai-site-builder/domains' ), {
siteId: site.ID,
source: 'general-settings',
redirect: 'site-launch',
new: site.name,
search: 'yes',
} );
}
return addQueryArgs( wpcomLink( '/start/launch-site' ), {
siteSlug: site.slug,
new: site.name,
hide_initial_query: 'yes',
back_to: backTo
? dashboardLinkWithBackport( backTo )
: redirectToDashboardLink( { supportBackport: true } ),
dashboard: getCurrentDashboard(),
} );
}, [ site, backTo ] );
const track = () => {
recordTracksEvent( 'calypso_dashboard_site_launch_button_click', { context: tracksContext } );
};
const redirectAfterLaunch = ( options: { celebrate?: boolean } = {} ) => {
const targetUrl = addQueryArgs( postLaunchUrl ?? window.location.href, {
...( options.celebrate ? { celebrateLaunch: 'true' } : {} ),
} );
if ( postLaunchUrl ) {
window.location.assign( targetUrl );
return;
}
window.history.replaceState( null, '', targetUrl );
};
// The ungated experiment is the only path that triggers celebration.
const handleUngatedLaunch = () => {
track();
launchMutation.mutate( undefined, {
onSuccess: () => {
// Add a query param to trigger the celebration modal in the parent.
redirectAfterLaunch( { celebrate: true } );
},
onError: onLaunchError,
} );
};
const launchForModal = () => {
track();
launchMutation.mutate( undefined, {
onError: onLaunchError,
onSettled: () => setIsModalOpen( false ),
} );
};
const baseResult = {
isLoading: isDomainsLoading,
isExperimentLoading,
isDisabled,
isBusy: launchMutation.isPending,
modal: null as ReactElement | null,
};
if ( site.is_a4a_dev_site ) {
if ( a4aLaunchUrl ) {
return {
...baseResult,
isHidden: false,
href: a4aLaunchUrl,
onClick: track,
};
}
if ( A4aLaunchModal ) {
return {
...baseResult,
isHidden: false,
onClick: () => setIsModalOpen( true ),
modal: isModalOpen ? (
<A4aLaunchModal
isLaunching={ launchMutation.isPending }
onClose={ () => setIsModalOpen( false ) }
onLaunch={ launchForModal }
/>
) : null,
};
}
return { ...baseResult, isHidden: true, onClick: () => {} };
}
// Site launch gating: 'semi_gated_site_launch' is the shipped default.
// The other branches are scaffolding for future experiments; see
// useSiteLaunchGatingVariant().
if ( variant === 'semi_gated_site_launch' ) {
return {
...baseResult,
isHidden: false,
href: launchUrl,
onClick: track,
};
}
if ( variant === 'ungated_site_launch' ) {
return {
...baseResult,
isHidden: false,
onClick: handleUngatedLaunch,
};
}
if ( shouldImmediatelyLaunch ) {
return {
...baseResult,
isHidden: false,
onClick: () => {
track();
launchMutation.mutate( undefined, {
onSuccess: () => redirectAfterLaunch(),
onError: onLaunchError,
} );
},
};
}
return {
...baseResult,
isHidden: false,
href: launchUrl,
onClick: track,
};
}