File size: 6,037 Bytes
1e92f2d | 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 | import { Button, TextareaControl } from '@wordpress/components';
import { useTranslate } from 'i18n-calypso';
import { useState, useEffect, useMemo, useCallback, useRef } from 'react';
import Markdown from 'react-markdown';
import {
FullPageScreenshot,
PerformanceMetricsItemQueryResponse,
} from 'calypso/data/site-profiler/types';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import { LLMMessage } from 'calypso/performance-profiler/components/llm-message';
import { ThumbsUpIcon, ThumbsDownIcon } from 'calypso/performance-profiler/icons/thumbs';
import { profilerVersion } from 'calypso/performance-profiler/utils/profiler-version';
import { InsightDetailedContent } from './insight-detailed-content';
interface InsightContentProps {
fullPageScreenshot: FullPageScreenshot;
data: PerformanceMetricsItemQueryResponse;
secondaryArea?: React.ReactNode;
isLoading?: boolean;
isFetched?: boolean;
isWpscanLoading?: boolean;
AIGenerated: boolean;
hash: string;
url?: string;
chatId?: number;
}
export const InsightContent: React.FC< InsightContentProps > = ( props ) => {
const translate = useTranslate();
const {
data,
fullPageScreenshot,
isLoading,
isFetched = false,
isWpscanLoading,
AIGenerated,
hash,
url,
chatId,
} = props;
const { description = '' } = data ?? {};
const [ feedbackSent, setFeedbackSent ] = useState( false );
const [ feedbackOpen, setFeedbackOpen ] = useState( false );
const [ userFeedback, setUserFeedback ] = useState( '' );
const [ messageIndex, setMessageIndex ] = useState( 0 );
const messageTimer = useRef< ReturnType< typeof setTimeout > | null >( null );
const messages = useMemo(
() => [
{
message: translate( 'Generating a personalized solution for your site using AI…' ),
nextTimer: 3000,
},
{ message: translate( 'Writing instructions…' ), nextTimer: 3000 },
{ message: translate( 'This is taking a little longer than I thought…' ), nextTimer: 4000 },
{ message: translate( 'Stick with me…' ), nextTimer: null },
],
[ translate ]
);
/**
* Updates the current message index and schedules the next message in the sequence.
* It is used for rotating display message, while insights are fetched from the API.
* Only schedules the next timer if loading is still active and there are more messages.
* @param currentIndex - The index of the message to display
*/
const updateMessageIndex = useCallback(
( currentIndex: number ) => {
setMessageIndex( currentIndex );
const currentMessage = messages[ currentIndex ];
if ( currentMessage.nextTimer && currentIndex < messages.length - 1 && isLoading ) {
messageTimer.current = setTimeout( () => {
updateMessageIndex( currentIndex + 1 );
}, currentMessage.nextTimer );
}
},
[ isLoading, messages ]
);
useEffect( () => {
if ( isLoading && ! messageTimer.current ) {
updateMessageIndex( 0 );
}
return () => {
if ( messageTimer.current ) {
clearTimeout( messageTimer.current );
messageTimer.current = null;
}
};
}, [ isLoading, updateMessageIndex ] );
const onSurveyClick = ( rating: string ) => {
recordTracksEvent( 'calypso_performance_profiler_llm_survey_click', {
hash,
url,
chat_id: chatId,
rating,
...( userFeedback && { user_feedback: userFeedback } ),
version: profilerVersion(),
} );
setFeedbackSent( true );
};
const renderFeedbackForm = () => {
if ( feedbackSent ) {
return <div className="survey">{ translate( 'Thanks for the feedback!' ) }</div>;
}
if ( feedbackOpen ) {
return (
<div className="survey wrapped">
<div className="survey-form">
<div>
{ translate( 'Thanks for the feedback! Tell us more about your experience' ) }
</div>
<TextareaControl
className="feedback-textarea"
__nextHasNoMarginBottom
rows={ 4 }
onChange={ ( value ) => setUserFeedback( value ) }
value={ userFeedback }
/>
<Button variant="primary" onClick={ () => onSurveyClick( 'bad' ) }>
{ translate( 'Send feedback' ) }
</Button>
</div>
</div>
);
}
return (
<div className="survey">
<span>{ translate( 'How did we do?' ) }</span>
<div
className="options good"
onClick={ () => onSurveyClick( 'good' ) }
onKeyUp={ () => onSurveyClick( 'good' ) }
role="button"
tabIndex={ 0 }
>
<ThumbsUpIcon />
{ translate( 'Good, it‘s helpful' ) }
</div>
<div
className="options bad"
onClick={ () => setFeedbackOpen( true ) }
onKeyUp={ () => setFeedbackOpen( true ) }
role="button"
tabIndex={ 0 }
>
<ThumbsDownIcon />
{ translate( 'Not helpful' ) }
</div>
</div>
);
};
const renderLoadingMessage = () => {
if ( isWpscanLoading ) {
return (
<LLMMessage
message={ translate(
"We're still checking some details of your site to make the best possible recommendations."
) }
rotate
/>
);
}
return <LLMMessage message={ messages[ messageIndex ].message } rotate />;
};
return (
<div className="metrics-insight-content">
{ isLoading || isWpscanLoading || ! isFetched ? (
renderLoadingMessage()
) : (
<>
<div className="description-area">
<div className="content">
<Markdown
components={ {
a( props ) {
return <a target="_blank" { ...props } />;
},
} }
>
{ description }
</Markdown>
</div>
{ props.secondaryArea }
</div>
{ AIGenerated && (
<LLMMessage
message={
<span className="generated-with-ai">{ translate( 'Generated with AI' ) }</span>
}
secondaryArea={ renderFeedbackForm() }
/>
) }
{ data.details?.type && (
<div className="metrics-insight-detailed-content">
<InsightDetailedContent
fullPageScreenshot={ fullPageScreenshot }
data={ data.details }
/>
</div>
) }
</>
) }
</div>
);
};
|