123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- import {useCallback, useEffect, useMemo, useRef, useState} from 'react';
- import {createBrowserRouter, RouterProvider} from 'react-router-dom';
- import styled from '@emotion/styled';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import Alert from 'sentry/components/alert';
- import OrganizationAvatar from 'sentry/components/avatar/organizationAvatar';
- import {Button, LinkButton} from 'sentry/components/button';
- import {CompactSelect} from 'sentry/components/compactSelect';
- import ProjectBadge from 'sentry/components/idBadge/projectBadge';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {ThemeAndStyleProvider} from 'sentry/components/themeAndStyleProvider';
- import {IconCheckmark} from 'sentry/icons/iconCheckmark';
- import {t, tct} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import {space} from 'sentry/styles/space';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {
- DEFAULT_QUERY_CLIENT_CONFIG,
- QueryClient,
- QueryClientProvider,
- useMutation,
- useQuery,
- } from 'sentry/utils/queryClient';
- import type RequestError from 'sentry/utils/requestError/requestError';
- import useApi from 'sentry/utils/useApi';
- import {useDebouncedValue} from 'sentry/utils/useDebouncedValue';
- import {useCompactSelectOptionsCache} from 'sentry/views/insights/common/utils/useCompactSelectOptionsCache';
- const queryClient = new QueryClient(DEFAULT_QUERY_CLIENT_CONFIG);
- function useAnalyticsParams(organizations: Organization[] | undefined) {
- const urlParams = new URLSearchParams(location.search);
- const projectPlatform = urlParams.get('project_platform') ?? undefined;
- // if we have exactly one organization, we can use it for analytics
- // otherwise we don't know which org the user is in
- return useMemo(
- () => ({
- organization: organizations?.length === 1 ? organizations[0] : null,
- project_platform: projectPlatform,
- }),
- [organizations, projectPlatform]
- );
- }
- const useLastOrganization = (organizations: Organization[]) => {
- const lastOrgSlug = ConfigStore.get('lastOrganization');
- return useMemo(() => {
- if (!lastOrgSlug) {
- return null;
- }
- return organizations.find(org => org.slug === lastOrgSlug);
- }, [organizations, lastOrgSlug]);
- };
- function useOrganizationProjects({
- organization,
- query,
- }: {
- organization?: Organization & {region: string};
- query?: string;
- }) {
- const api = useApi();
- const regions = useMemo(() => ConfigStore.get('memberRegions'), []);
- const orgRegion = useMemo(
- () => regions.find(region => region.name === organization?.region),
- [regions, organization?.region]
- );
- return useQuery<Project[], RequestError>({
- queryKey: [`/organizations/${organization?.slug}/projects/`, {query: query}],
- queryFn: () => {
- return api.requestPromise(`/organizations/${organization?.slug}/projects/`, {
- host: orgRegion?.url,
- query: {
- query: query,
- },
- });
- },
- enabled: !!(orgRegion && organization),
- refetchOnWindowFocus: true,
- retry: false,
- });
- }
- type Props = {
- enableProjectSelection?: boolean;
- hash?: boolean | string;
- organizations?: (Organization & {region: string})[];
- };
- function SetupWizardContent({hash, organizations, enableProjectSelection}: Props) {
- return enableProjectSelection ? (
- <ProjectSelection hash={hash} organizations={organizations} />
- ) : (
- <WaitingForWizardToConnect hash={hash} organizations={organizations} />
- );
- }
- function SetupWizard({
- hash = false,
- organizations,
- enableProjectSelection = false,
- }: Props) {
- const analyticsParams = useAnalyticsParams(organizations);
- const [router] = useState(() =>
- createBrowserRouter([
- {
- path: '*',
- element: (
- <SetupWizardContent
- hash={hash}
- organizations={organizations}
- enableProjectSelection={enableProjectSelection}
- />
- ),
- },
- ])
- );
- useEffect(() => {
- trackAnalytics('setup_wizard.viewed', analyticsParams);
- }, [analyticsParams]);
- return (
- <ThemeAndStyleProvider>
- <QueryClientProvider client={queryClient}>
- <RouterProvider router={router} />
- </QueryClientProvider>
- </ThemeAndStyleProvider>
- );
- }
- const BASE_API_CLIENT = new Client({baseUrl: ''});
- function ProjectSelection({hash, organizations = []}: Omit<Props, 'allowSelection'>) {
- const baseApi = useApi({api: BASE_API_CLIENT});
- const lastOrganization = useLastOrganization(organizations);
- const [search, setSearch] = useState('');
- const debouncedSearch = useDebouncedValue(search, 300);
- const isSearchStale = search !== debouncedSearch;
- const [selectedOrgId, setSelectedOrgId] = useState<string | null>(() => {
- if (organizations.length === 1) {
- return organizations[0].id;
- }
- const urlParams = new URLSearchParams(location.search);
- const orgSlug = urlParams.get('org_slug');
- const orgMatchingSlug = orgSlug && organizations.find(org => org.slug === orgSlug);
- if (orgMatchingSlug) {
- return orgMatchingSlug.id;
- }
- // Pre-fill the last used org if there are multiple and no URL param
- if (lastOrganization) {
- return lastOrganization.id;
- }
- return null;
- });
- const [selectedProjectId, setSelectedProjectId] = useState<string | null>(null);
- const selectedOrg = useMemo(
- () => organizations.find(org => org.id === selectedOrgId),
- [organizations, selectedOrgId]
- );
- const orgProjectsRequest = useOrganizationProjects({
- organization: selectedOrg,
- query: debouncedSearch,
- });
- const {
- mutate: updateCache,
- isPending,
- isSuccess,
- } = useMutation({
- mutationFn: (params: {organizationId: string; projectId: string}) => {
- return baseApi.requestPromise(`/account/settings/wizard/${hash}/`, {
- method: 'POST',
- data: params,
- });
- },
- });
- const handleSubmit = useCallback(
- (event: React.FormEvent) => {
- event.preventDefault();
- if (!selectedOrgId || !selectedProjectId) {
- return;
- }
- updateCache(
- {
- organizationId: selectedOrgId,
- projectId: selectedProjectId,
- },
- {
- onError: () => {
- addErrorMessage(t('Something went wrong! Please try again.'));
- },
- }
- );
- },
- [selectedOrgId, selectedProjectId, updateCache]
- );
- const orgOptions = useMemo(
- () =>
- organizations
- .map(org => ({
- value: org.id,
- label: org.name || org.slug,
- leadingItems: <OrganizationAvatar size={16} organization={org} />,
- }))
- .toSorted((a, b) => a.label.localeCompare(b.label)),
- [organizations]
- );
- const projectOptions = useMemo(
- () =>
- (orgProjectsRequest.data || []).map(project => ({
- value: project.id,
- label: project.name,
- leadingItems: <ProjectBadge avatarSize={16} project={project} hideName />,
- project,
- })),
- [orgProjectsRequest.data]
- );
- const {options: cachedProjectOptions, clear: clearProjectOptions} =
- useCompactSelectOptionsCache(projectOptions);
- // As the cache hook sorts the options by value, we need to sort them afterwards
- const sortedProjectOptions = useMemo(
- () =>
- cachedProjectOptions.sort((a, b) => {
- return a.label.localeCompare(b.label);
- }),
- [cachedProjectOptions]
- );
- // Select the project from the cached options to avoid visually clearing the input
- // when searching while having a selected project
- const selectedProject = useMemo(
- () =>
- sortedProjectOptions?.find(option => option.value === selectedProjectId)?.project,
- [selectedProjectId, sortedProjectOptions]
- );
- const isFormValid = selectedOrg && selectedProject;
- if (isSuccess) {
- return <WaitingForWizardToConnect hash={hash} organizations={organizations} />;
- }
- return (
- <StyledForm onSubmit={handleSubmit}>
- <Heading>{t('Select your Sentry project')}</Heading>
- <FieldWrapper>
- <label>{t('Organization')}</label>
- <StyledCompactSelect
- autoFocus
- value={selectedOrgId as string}
- searchable
- options={orgOptions}
- triggerProps={{
- icon: selectedOrg ? (
- <OrganizationAvatar size={16} organization={selectedOrg} />
- ) : null,
- }}
- triggerLabel={
- selectedOrg?.name ||
- selectedOrg?.slug || (
- <SelectPlaceholder>{t('Select an organization')}</SelectPlaceholder>
- )
- }
- onChange={({value}) => {
- if (value !== selectedOrgId) {
- setSelectedOrgId(value as string);
- setSelectedProjectId(null);
- clearProjectOptions();
- }
- }}
- />
- </FieldWrapper>
- <FieldWrapper>
- <label>{t('Project')}</label>
- {orgProjectsRequest.error ? (
- <ProjectLoadingError
- error={orgProjectsRequest.error}
- onRetry={orgProjectsRequest.refetch}
- />
- ) : (
- <StyledCompactSelect
- // Remount the component when the org changes to reset the component state
- // TODO(aknaus): investigate why the selection is not reset when the value changes to null
- key={selectedOrgId}
- onSearch={setSearch}
- onClose={() => setSearch('')}
- disabled={!selectedOrgId}
- value={selectedProjectId as string}
- searchable
- options={sortedProjectOptions}
- triggerProps={{
- icon: selectedProject ? (
- <ProjectBadge avatarSize={16} project={selectedProject} hideName />
- ) : null,
- }}
- triggerLabel={
- selectedProject?.name || (
- <SelectPlaceholder>{t('Select a project')}</SelectPlaceholder>
- )
- }
- onChange={({value}) => {
- setSelectedProjectId(value as string);
- }}
- emptyMessage={
- orgProjectsRequest.isPending || isSearchStale
- ? t('Loading...')
- : search
- ? t('No projects matching search')
- : tct('No projects found. [link:Create a project]', {
- organization:
- selectedOrg?.name || selectedOrg?.slug || 'organization',
- link: (
- <a
- href={`/organizations/${selectedOrg?.slug}/projects/new`}
- target="_blank"
- rel="noreferrer"
- />
- ),
- })
- }
- />
- )}
- </FieldWrapper>
- <SubmitButton disabled={!isFormValid || isPending} priority="primary" type="submit">
- {t('Continue')}
- </SubmitButton>
- </StyledForm>
- );
- }
- function getSsoLoginUrl(error: RequestError) {
- const detail = error?.responseJSON?.detail as any;
- const loginUrl = detail?.extra?.loginUrl;
- if (!loginUrl || typeof loginUrl !== 'string') {
- return null;
- }
- try {
- // Pass a base param as the login may be absolute or relative
- const url = new URL(loginUrl, location.origin);
- // Pass the current URL as the next URL to redirect to after login
- url.searchParams.set('next', location.href);
- return url.toString();
- } catch {
- return null;
- }
- }
- function ProjectLoadingError({
- error,
- onRetry,
- }: {
- error: RequestError;
- onRetry: () => void;
- }) {
- const detail = error?.responseJSON?.detail;
- const code = typeof detail === 'string' ? undefined : detail?.code;
- const ssoLoginUrl = getSsoLoginUrl(error);
- if (code === 'sso-required' && ssoLoginUrl) {
- return (
- <AlertWithoutMargin
- type="error"
- showIcon
- trailingItems={
- <LinkButton href={ssoLoginUrl} size="xs">
- {t('Log in')}
- </LinkButton>
- }
- >
- {t('This organization requires Single Sign-On.')}
- </AlertWithoutMargin>
- );
- }
- return (
- <LoadingErrorWithoutMargin
- message={t('Failed to load projects')}
- onRetry={() => {
- onRetry();
- }}
- />
- );
- }
- const AlertWithoutMargin = styled(Alert)`
- margin: 0;
- `;
- const LoadingErrorWithoutMargin = styled(LoadingError)`
- margin: 0;
- `;
- const StyledForm = styled('form')`
- display: flex;
- flex-direction: column;
- gap: ${space(2)};
- `;
- const Heading = styled('h5')`
- margin-bottom: ${space(0.5)};
- `;
- const FieldWrapper = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(0.5)};
- `;
- const StyledCompactSelect = styled(CompactSelect)`
- width: 100%;
- & > button {
- width: 100%;
- }
- `;
- const SelectPlaceholder = styled('span')`
- ${p => p.theme.overflowEllipsis}
- color: ${p => p.theme.subText};
- font-weight: normal;
- text-align: left;
- `;
- const SubmitButton = styled(Button)`
- margin-top: ${space(1)};
- `;
- function WaitingForWizardToConnect({
- hash,
- organizations,
- }: Omit<Props, 'allowSelection' | 'projects'>) {
- const api = useApi();
- const closeTimeoutRef = useRef<number | undefined>(undefined);
- const [finished, setFinished] = useState(false);
- const analyticsParams = useAnalyticsParams(organizations);
- useEffect(() => {
- return () => {
- if (closeTimeoutRef.current) {
- window.clearTimeout(closeTimeoutRef.current);
- }
- };
- }, []);
- const checkFinished = useCallback(async () => {
- if (finished) {
- return;
- }
- try {
- await api.requestPromise(`/wizard/${hash}/`);
- } catch {
- setFinished(true);
- window.clearTimeout(closeTimeoutRef.current);
- closeTimeoutRef.current = window.setTimeout(() => window.close(), 10000);
- trackAnalytics('setup_wizard.complete', analyticsParams);
- }
- }, [api, hash, analyticsParams, finished]);
- useEffect(() => {
- const pollingInterval = window.setInterval(checkFinished, 1000);
- return () => window.clearInterval(pollingInterval);
- }, [checkFinished]);
- return !finished ? (
- <LoadingIndicator style={{margin: '2em auto'}}>
- <h5>{t('Waiting for wizard to connect')}</h5>
- </LoadingIndicator>
- ) : (
- <SuccessWrapper>
- <SuccessCheckmark color="green300" size="xl" isCircled />
- <SuccessHeading>
- {t('Return to your terminal to complete your setup.')}
- </SuccessHeading>
- </SuccessWrapper>
- );
- }
- const SuccessCheckmark = styled(IconCheckmark)`
- flex-shrink: 0;
- `;
- const SuccessHeading = styled('h5')`
- margin: 0;
- `;
- const SuccessWrapper = styled('div')`
- display: flex;
- align-items: center;
- gap: ${space(3)};
- `;
- export default SetupWizard;
|