/* eslint-disable wpcalypso/jsx-classname-namespace */ import { recordTracksEvent } from '@automattic/calypso-analytics'; import { LoadingPlaceholder } from '@automattic/components'; import { HelpCenterSelect } from '@automattic/data-stores'; import styled from '@emotion/styled'; import { Button, ExternalLink } from '@wordpress/components'; import { useSelect } from '@wordpress/data'; import { createElement, createInterpolateElement } from '@wordpress/element'; import { sprintf } from '@wordpress/i18n'; import { useI18n } from '@wordpress/react-i18n'; import React, { useEffect, useMemo, useState } from 'react'; import stripTags from 'striptags'; import { useJetpackSearchAIQuery } from '../data/use-jetpack-search-ai'; import { useTyper } from '../hooks'; import { HELP_CENTER_STORE } from '../stores'; import HelpCenterSearchResults from './help-center-search-results'; import type { JetpackSearchAIResult } from '../data/use-jetpack-search-ai'; import type { SearchResult } from '../types'; import './help-center-gpt.scss'; const GPTResponsePlaceholder = styled( LoadingPlaceholder )< { width?: string } >` :not( :last-child ) { margin-block-end: 0.5rem; } width: ${ ( { width = '100%' } ) => width }; `; const GPTResponseDisclaimer = styled.div` color: var( --studio-gray-50 ); font-size: 11px; text-align: right; @media ( min-width: 600px ) { padding: 0 0 15px; } `; interface LoadingPlaceholderProps { loadingMessage: string; } const LoadingPlaceholders: React.FC< LoadingPlaceholderProps > = ( { loadingMessage } ) => ( <>

{ loadingMessage }

); interface Props { onResponseReceived: ( response: JetpackSearchAIResult ) => void; redirectToArticle: ( event: React.MouseEvent< HTMLAnchorElement, MouseEvent >, result: SearchResult ) => void; } const handleContentClick = ( event: React.MouseEvent ) => { // Check if the clicked element is a link if ( event.target instanceof HTMLAnchorElement ) { const url = event.target.getAttribute( 'href' ); if ( url ) { event.preventDefault(); window.open( url, '_blank' ); } } }; export function HelpCenterGPT( { onResponseReceived, redirectToArticle }: Props ) { const { __ } = useI18n(); const [ feedbackGiven, setFeedbackGiven ] = useState< boolean >( false ); // Report loading state up. const { message } = useSelect( ( select ) => { const store = select( HELP_CENTER_STORE ) as HelpCenterSelect; const subject = store.getSubject() || ''; const message = store.getMessage(); // if the first 50 chars of subject and message match, only show the message (they're probably identical) if ( subject && message && subject.slice( 0, 50 ) !== message.slice( 0, 50 ) ) { return { message: `${ subject }\n\n${ message }`, }; } return { message, }; }, [] ); const query = message ?? ''; const { data, isError: isGPTError } = useJetpackSearchAIQuery( { siteId: '9619154', query: query, stopAt: 'response', enabled: true, } ); const allowedTags = [ 'a', 'p', 'ol', 'ul', 'li', 'br', 'b', 'strong', 'i', 'em' ]; useEffect( () => { if ( data?.response ) { recordTracksEvent( 'calypso_helpcenter_show_gpt_response', { location: 'help-center', answer_source: data?.source, } ); onResponseReceived( data ); } }, [ data ] ); const loadingMessages: string[] = [ __( 'Finding relevant support documentation…', __i18n_text_domain__ ), __( 'Gathering all the data…', __i18n_text_domain__ ), __( 'Thanks for your patience, this might take a bit…', __i18n_text_domain__ ), __( 'Processing the information found…', __i18n_text_domain__ ), __( "I'm still writing, thank you for your patience!", __i18n_text_domain__ ), __( 'Any minute now…', __i18n_text_domain__ ), __( 'Really, any minute now…', __i18n_text_domain__ ), ]; const loadingMessage = useTyper( loadingMessages, ! data?.response, { delayBetweenCharacters: 80, delayBetweenPhrases: 1400, } ); const doThumbsUp = ( source: string ) => { return () => { setFeedbackGiven( true ); recordTracksEvent( 'calypso_helpcenter_gpt_response_thumbs_up', { location: 'help-center', answer_source: source, } ); }; }; const doThumbsDown = ( source: string ) => { return () => { setFeedbackGiven( true ); recordTracksEvent( 'calypso_helpcenter_gpt_response_thumbs_down', { location: 'help-center', answer_source: source, } ); }; }; const aiResponseHeader = useMemo( () => { return __( 'AI Generated Response:', __i18n_text_domain__ ); }, [ __ ] ); return (

{ aiResponseHeader }

{ isGPTError && (
{ __( "Sorry, we couldn't load the AI-generated response. Please click the button below to send your message to our support team.", __i18n_text_domain__ ) }
) } { ! isGPTError && ( <>
{ ! data?.response && ( <>

{ __( 'Our system is currently generating a possible solution for you, which typically takes about 30 seconds.', __i18n_text_domain__ ) }

{ createInterpolateElement( sprintf( /* translators: the cancelButtonLabel is the already translated "Cancel" button label */ __( 'We know your time is valuable. If you prefer not to wait, you can click the %(cancelButtonLabel)s button below to go back and submit your message right away.' ), { cancelButtonLabel: __( 'Cancel', __i18n_text_domain__ ) } ), { em: createElement( 'em' ), } ) }

) } { ! data?.response && LoadingPlaceholders( { loadingMessage } ) } { data?.response && ( <> { /* eslint-disable-next-line jsx-a11y/no-static-element-interactions,jsx-a11y/click-events-have-key-events */ }
{ feedbackGiven ? (
{ __( 'Thank you for your feedback! We will use it to improve our AI.', __i18n_text_domain__ ) }
) : ( <> ) }
{ __( "Generated by WordPress.com's Support AI. AI-generated responses may contain inaccurate information.", __i18n_text_domain__ ) } { ' ' } { __( 'Learn more.', __i18n_text_domain__ ) }

{ createInterpolateElement( __( 'Need more help? Click the button below to send your message. For reference, here is what you wrote:', __i18n_text_domain__ ), { strong: createElement( 'strong' ), } ) }

{ query.split( '\n\n' ).map( ( line, index ) => (

{ line }

) ) }
) }
) }
); }