|
|
import { useQuery } from '@tanstack/react-query'; |
|
|
import { PerformanceMetricsItemQueryResponse } from 'calypso/data/site-profiler/types'; |
|
|
import wp from 'calypso/lib/wp'; |
|
|
|
|
|
function mapResult( response: WPComSupportQueryResponse ) { |
|
|
const messages = response.messages?.[ 0 ]?.content ?? ''; |
|
|
const chatId = response.chat_id; |
|
|
return { |
|
|
messages, |
|
|
chatId, |
|
|
}; |
|
|
} |
|
|
|
|
|
export const useSupportChatLLMQuery = ( |
|
|
insight: PerformanceMetricsItemQueryResponse, |
|
|
hash: string, |
|
|
is_wpcom: boolean, |
|
|
enable: boolean, |
|
|
localeSlug?: string, |
|
|
deviceStrategy?: string |
|
|
) => { |
|
|
return useQuery( { |
|
|
|
|
|
queryKey: [ 'support', 'chat', hash, insight.title, is_wpcom, localeSlug, deviceStrategy ], |
|
|
queryFn: () => |
|
|
wp.req.post( |
|
|
{ |
|
|
path: `/odie/assistant/performance-profiler?hash=${ hash }`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
}, |
|
|
{ |
|
|
insight, |
|
|
is_wpcom, |
|
|
locale: localeSlug, |
|
|
device_strategy: deviceStrategy, |
|
|
} |
|
|
), |
|
|
select: mapResult, |
|
|
enabled: !! insight.title && enable, |
|
|
retry: false, |
|
|
refetchOnWindowFocus: false, |
|
|
staleTime: 1000 * 60 * 5, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
type WPComSupportQueryResponse = { |
|
|
chat_id: number; |
|
|
messages: Array< WPComSupportMessageQueryResponse >; |
|
|
}; |
|
|
|
|
|
type WPComSupportMessageQueryResponse = { |
|
|
content: string; |
|
|
}; |
|
|
|