{ formTitles.formTitle }
{ formTitles.formDisclaimer && ({ formTitles.formDisclaimer }
) }/* eslint-disable no-restricted-imports */
/**
* External Dependencies
*/
import { recordTracksEvent } from '@automattic/calypso-analytics';
import config from '@automattic/calypso-config';
import { getPlan, getPlanTermLabel } from '@automattic/calypso-products';
import { FormInputValidation, Popover } from '@automattic/components';
import { useLocale } from '@automattic/i18n-utils';
import { getOdieIdFromInteraction } from '@automattic/odie-client/src/utils';
import { Button, TextControl, CheckboxControl, Tip } from '@wordpress/components';
import { useDispatch, useSelect } from '@wordpress/data';
import { decodeEntities } from '@wordpress/html-entities';
import { __ } from '@wordpress/i18n';
import { Icon, info } from '@wordpress/icons';
import { getQueryArgs } from '@wordpress/url';
import { useCallback, useEffect, useRef, useState } from 'react';
import { useNavigate, useLocation } from 'react-router-dom';
import { useDebounce } from 'use-debounce';
import { preventWidows } from 'calypso/lib/formatting';
import { isWcMobileApp } from 'calypso/lib/mobile-app';
/**
* Internal Dependencies
*/
import { EMAIL_SUPPORT_LOCALES } from '../constants';
import { useHelpCenterContext } from '../contexts/HelpCenterContext';
import { useJetpackSearchAIQuery } from '../data/use-jetpack-search-ai';
import { useSiteAnalysis } from '../data/use-site-analysis';
import { useSubmitForumsMutation } from '../data/use-submit-forums-topic';
import { useSubmitTicketMutation } from '../data/use-submit-support-ticket';
import { useUserSites } from '../data/use-user-sites';
import { useContactFormTitle } from '../hooks';
import { queryClient } from '../query-client';
import { HELP_CENTER_STORE } from '../stores';
import { getSupportVariationFromMode } from '../support-variations';
import { SearchResult } from '../types';
import { HelpCenterGPT } from './help-center-gpt';
import HelpCenterSearchResults from './help-center-search-results';
import { HelpCenterSitePicker } from './help-center-site-picker';
import type { JetpackSearchAIResult } from '../data/use-jetpack-search-ai';
import type { AnalysisReport } from '../types';
import type { HelpCenterSelect, SiteDetails, HelpCenterSite } from '@automattic/data-stores';
import './help-center-contact-form.scss';
const fakeFaces = [
'john',
'joe',
'julia',
'emily',
'ashley',
'daphne',
'megan',
'omar',
'vivian',
'sam',
'tony',
].map( ( name ) => `https://s0.wp.com/i/support-engineers/${ name }.jpg` );
const randomTwoFaces = fakeFaces.sort( () => Math.random() - 0.5 ).slice( 0, 2 );
const isLocaleNotSupportedInEmailSupport = ( locale: string ) => {
return ! EMAIL_SUPPORT_LOCALES.includes( locale );
};
type Mode = 'EMAIL' | 'FORUM';
export const HelpCenterContactForm = () => {
const { search } = useLocation();
const { sectionName, currentUser, site } = useHelpCenterContext();
const params = new URLSearchParams( search );
const mode = params.get( 'mode' ) as Mode;
const overflow = params.get( 'overflow' ) === 'true';
const wapuuFlow = params.get( 'wapuuFlow' ) === 'true';
const navigate = useNavigate();
const [ hideSiteInfo, setHideSiteInfo ] = useState( false );
const [ hasSubmittingError, setHasSubmittingError ] = useState< boolean >( false );
const locale = useLocale();
const { isPending: submittingTicket, mutateAsync: submitTicket } = useSubmitTicketMutation();
const { isPending: submittingTopic, mutateAsync: submitTopic } = useSubmitForumsMutation();
const { data: userSites } = useUserSites( currentUser.ID );
const userWithNoSites = userSites?.sites.length === 0;
const [ isSelfDeclaredSite, setIsSelfDeclaredSite ] = useState< boolean >( false );
const [ gptResponse, setGptResponse ] = useState< JetpackSearchAIResult >();
const { currentSupportInteraction, subject, message, userDeclaredSiteUrl } = useSelect(
( select ) => {
const helpCenterSelect: HelpCenterSelect = select( HELP_CENTER_STORE );
return {
currentSupportInteraction: helpCenterSelect.getCurrentSupportInteraction(),
subject: helpCenterSelect.getSubject(),
message: helpCenterSelect.getMessage(),
userDeclaredSiteUrl: helpCenterSelect.getUserDeclaredSiteUrl(),
};
},
[]
);
const odieId = getOdieIdFromInteraction( currentSupportInteraction );
const { resetStore, setUserDeclaredSite, setSubject, setMessage } =
useDispatch( HELP_CENTER_STORE );
useEffect( () => {
const supportVariation = getSupportVariationFromMode( mode );
recordTracksEvent( 'calypso_inlinehelp_contact_view', {
support_variation: supportVariation,
force_site_id: true,
location: 'help-center',
section: sectionName,
} );
}, [ mode, sectionName ] );
useEffect( () => {
if ( userWithNoSites ) {
setIsSelfDeclaredSite( true );
}
}, [ userWithNoSites ] );
const formTitles = useContactFormTitle( mode );
let ownershipResult: AnalysisReport = useSiteAnalysis(
// pass user email as query cache key
currentUser.ID,
userDeclaredSiteUrl,
isSelfDeclaredSite
);
const ownershipStatusLoading = ownershipResult?.result === 'LOADING';
const isSubmitting = submittingTicket || submittingTopic;
// if the user picked a site from the picker, we don't need to analyze the ownership
if ( site && ! isSelfDeclaredSite ) {
ownershipResult = {
result: 'OWNED_BY_USER',
isWpcom: true,
siteURL: site.URL,
site: site,
};
}
// record the resolved site
useEffect( () => {
if ( ownershipResult?.site && isSelfDeclaredSite ) {
setUserDeclaredSite( ownershipResult?.site as SiteDetails );
}
}, [ ownershipResult, setUserDeclaredSite, isSelfDeclaredSite ] );
let supportSite: SiteDetails | HelpCenterSite;
// if the user picked "other site", force them to declare a site
if ( isSelfDeclaredSite ) {
supportSite = ownershipResult?.site as SiteDetails;
} else {
supportSite = site as HelpCenterSite;
}
const [ debouncedMessage ] = useDebounce( message || '', 500 );
const [ debouncedSubject ] = useDebounce( subject || '', 500 );
const enableGPTResponse =
config.isEnabled( 'help/gpt-response' ) &&
! ( params.get( 'disable-gpt' ) === 'true' ) &&
! wapuuFlow;
const showingSearchResults = params.get( 'show-results' ) === 'true';
const skipResources = params.get( 'skip-resources' ) === 'true';
const showingGPTResponse = enableGPTResponse && params.get( 'show-gpt' ) === 'true';
const redirectToArticle = useCallback(
( event: React.MouseEvent< HTMLAnchorElement, MouseEvent >, result: SearchResult ) => {
event.preventDefault();
// if result.post_id isn't set then open in a new window
if ( ! result.post_id ) {
const tracksData = {
search_query: debouncedMessage,
force_site_id: true,
location: 'help-center',
result_url: result.link,
post_id: result.post_id,
blog_id: result.blog_id,
};
recordTracksEvent( 'calypso_inlinehelp_article_no_postid_redirect', tracksData );
window.open( result.link, '_blank' );
return;
}
const params = new URLSearchParams( {
link: result.link,
postId: String( result.post_id ),
query: debouncedMessage || '',
title: preventWidows( decodeEntities( result.title ) ),
} );
if ( result.blog_id ) {
params.set( 'blogId', String( result.blog_id ) );
}
navigate( `/post/?${ params }` );
},
[ debouncedMessage, navigate ]
);
// this indicates the user was happy with the GPT response
function handleGPTClose() {
// send a tracks event
recordTracksEvent( 'calypso_inlinehelp_contact_gpt_close', {
force_site_id: true,
location: 'help-center',
section: sectionName,
} );
resetStore();
navigate( '/' );
}
function navigateToContactForm() {
navigate( {
pathname: '/contact-form',
search: params.toString(),
} );
}
function handleGPTCancel() {
// send a tracks event
recordTracksEvent( 'calypso_inlinehelp_contact_gpt_cancel', {
force_site_id: true,
location: 'help-center',
section: sectionName,
} );
// stop loading the GPT response
params.set( 'show-gpt', 'false' );
params.set( 'disable-gpt', 'true' );
navigateToContactForm();
}
function handleCTA() {
if (
! enableGPTResponse &&
! showingSearchResults &&
! wapuuFlow &&
! skipResources &&
mode !== 'FORUM'
) {
params.set( 'show-results', 'true' );
navigateToContactForm();
return;
}
if ( ! showingGPTResponse && enableGPTResponse && ! wapuuFlow && mode !== 'FORUM' ) {
params.set( 'show-gpt', 'true' );
navigateToContactForm();
return;
}
// if the user was chatting with Wapuu, we need to disable GPT (no more AI)
if ( wapuuFlow ) {
params.set( 'disable-gpt', 'true' );
params.set( 'show-gpt', 'false' );
}
// Domain only sites don't have plans.
const productSlug = ( supportSite as HelpCenterSite )?.plan?.product_slug;
const plan = getPlan( productSlug );
const productId = plan?.getProductId();
const productName = plan?.getTitle();
const productTerm = getPlanTermLabel( productSlug, ( text ) => text );
const aiChatId = wapuuFlow ? odieId?.toString() ?? '' : gptResponse?.answer_id;
switch ( mode ) {
case 'EMAIL':
if ( supportSite ) {
const ticketMeta = [
'Site I need help with: ' + supportSite.URL,
`Plan: ${ productId } - ${ productName } (${ productTerm })`,
];
if ( getQueryArgs( window.location.href )?.ref === 'woocommerce-com' ) {
ticketMeta.push(
`Created during store setup on ${
isWcMobileApp() ? 'Woo mobile app' : 'Woo browser'
}`
);
}
const kayakoMessage = [ ...ticketMeta, '\n', message ].join( '\n' );
submitTicket( {
subject: subject ?? '',
message: kayakoMessage,
locale,
client: 'browser:help-center',
is_chat_overflow: overflow,
source: 'source_wpcom_help_center',
blog_url: supportSite.URL,
ai_chat_id: aiChatId,
ai_message: gptResponse?.response,
} )
.then( () => {
recordTracksEvent( 'calypso_inlinehelp_contact_submit', {
support_variation: 'email',
force_site_id: true,
location: 'help-center',
section: sectionName,
} );
navigate( '/success' );
resetStore();
// reset support-history cache
setTimeout( () => {
// wait 30 seconds until support-history endpoint actually updates
// yup, it takes that long (tried 5, and 10)
queryClient.invalidateQueries( {
queryKey: [ 'help-support-history', 'ticket', currentUser.ID ],
} );
}, 30000 );
} )
.catch( () => {
setHasSubmittingError( true );
} );
}
break;
case 'FORUM':
params.set( 'show-results', 'true' );
navigateToContactForm();
submitTopic( {
ownershipResult,
message: message ?? '',
subject: subject ?? '',
locale,
hideInfo: hideSiteInfo,
userDeclaredSiteUrl,
} )
.then( ( response ) => {
recordTracksEvent( 'calypso_inlinehelp_contact_submit', {
support_variation: 'forums',
force_site_id: true,
location: 'help-center',
section: sectionName,
} );
navigate( `/success?forumTopic=${ encodeURIComponent( response.topic_URL ) }` );
resetStore();
} )
.catch( () => {
setHasSubmittingError( true );
} );
break;
}
}
const InfoTip = () => {
const ref = useRef< HTMLButtonElement >( null );
const [ isOpen, setOpen ] = useState( false );
return (
<>
{ formTitles.trayText }
{ formTitles.formDisclaimer }
) }