app-tutor-ai-consumer 1.27.6 → 1.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.28.1](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.28.0...v1.28.1) (2025-08-21)
2
+
3
+ # [1.28.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.27.6...v1.28.0) (2025-08-19)
4
+
5
+ ### Features
6
+
7
+ - add tutor initial message ([afc6bfd](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/afc6bfd9158656ce52afac9e79f4410728e1d7a5))
8
+
1
9
  ## [1.27.6](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.27.5...v1.27.6) (2025-08-19)
2
10
 
3
11
  ## [1.27.5](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.27.4...v1.27.5) (2025-08-18)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.27.6",
3
+ "version": "1.28.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dev": "rspack serve --env=development --config config/rspack/rspack.config.js",
@@ -1,5 +1,5 @@
1
- .li{
2
- &>span {
1
+ .li {
2
+ & > span {
3
3
  display: inline !important;
4
4
  }
5
- }
5
+ }
@@ -1,4 +1,5 @@
1
1
  import { createRef } from 'react'
2
+ import { useDecision } from '@optimizely/react-sdk'
2
3
 
3
4
  import { chance, render, screen, waitFor } from '@/src/config/tests'
4
5
  import { useScroller } from '@/src/modules/messages/hooks/use-scroller'
@@ -8,6 +9,8 @@ import * as Store from '../../store'
8
9
 
9
10
  import ChatPage from './chat-page'
10
11
 
12
+ vi.mock('@optimizely/react-sdk')
13
+
11
14
  vi.mock('@/src/modules/profile', () => ({ useGetProfile: vi.fn() }))
12
15
 
13
16
  vi.mock('@/src/modules/messages/hooks/use-scroller', () => ({
@@ -18,6 +21,7 @@ describe('ChatPage', () => {
18
21
  const defaultSettings = new WidgetSettingPropsBuilder()
19
22
  const scrollerRef = createRef<HTMLDivElement>()
20
23
  const scrollToButtonRef = createRef<HTMLButtonElement>()
24
+ const useDecisionMock = [{ enabled: true }]
21
25
 
22
26
  const useScrollerMock = {
23
27
  scrollerRef,
@@ -32,6 +36,7 @@ describe('ChatPage', () => {
32
36
  vi.spyOn(Store, 'useWidgetSettingsAtomValue').mockReturnValue(defaultSettings)
33
37
  vi.mocked(useGetProfile).mockReturnValue({ data: { id: chance.guid() } } as never)
34
38
  vi.mocked(useScroller).mockReturnValue(useScrollerMock)
39
+ vi.mocked(useDecision).mockReturnValue(useDecisionMock as never)
35
40
  })
36
41
 
37
42
  it('should render each fetched message item from API', async () => {
@@ -1,4 +1,5 @@
1
1
  import { useEffect, useMemo, useRef } from 'react'
2
+ import { useDecision } from '@optimizely/react-sdk'
2
3
  import { useInfiniteQuery } from '@tanstack/react-query'
3
4
 
4
5
  import { useMediaQuery } from '@/src/lib/hooks'
@@ -8,11 +9,13 @@ import { MessagesContainer } from '@/src/modules/messages/components/messages-co
8
9
  import { getAllMessagesQuery, useSendTextMessage } from '@/src/modules/messages/hooks'
9
10
  import { useMessagesMaxCount } from '@/src/modules/messages/store'
10
11
  import { useGetProfile } from '@/src/modules/profile'
12
+ import { TutorWidgetEvents } from '../../events'
11
13
  import {
12
14
  useWidgetLoadingAtom,
13
15
  useWidgetSettingsAtomValue,
14
16
  useWidgetTabsValueAtom
15
17
  } from '../../store'
18
+ import { testQuestionRegex } from '../../utils'
16
19
  import { WidgetHeader } from '../header'
17
20
  import { PageLayout } from '../page-layout'
18
21
 
@@ -27,6 +30,8 @@ function ChatPage() {
27
30
  const [value, setValue] = useChatInputValueAtom()
28
31
  const [widgetLoading, setWidgetLoading] = useWidgetLoadingAtom()
29
32
  const isMobile = useMediaQuery({ maxSize: 'md' })
33
+ const hasSentInitialMessage = useRef(false)
34
+ const [lexTutorInitialMessageFF] = useDecision('lex_tutor_new_widget_initial_message')
30
35
 
31
36
  const conversationId = useMemo(() => settings?.conversationId, [settings?.conversationId])
32
37
  const profileId = useMemo(() => profileQuery.data?.id, [profileQuery.data?.id])
@@ -55,6 +60,28 @@ function ChatPage() {
55
60
  })
56
61
  }
57
62
 
63
+ useEffect(() => {
64
+ if (hasSentInitialMessage.current || !lexTutorInitialMessageFF.enabled) return
65
+
66
+ const clear = TutorWidgetEvents['tutor-initial-message'].handler(({ message }) => {
67
+ if (message && !hasSentInitialMessage.current) {
68
+ setValue(testQuestionRegex(message))
69
+
70
+ sendTextMessageMutation.mutate(message, {
71
+ onSuccess() {
72
+ setValue('')
73
+ hasSentInitialMessage.current = true
74
+ }
75
+ })
76
+ }
77
+ })
78
+
79
+ return () => {
80
+ clear?.()
81
+ hasSentInitialMessage.current = false
82
+ }
83
+ }, [lexTutorInitialMessageFF.enabled, sendTextMessageMutation, setValue])
84
+
58
85
  useEffect(() => {
59
86
  if (messagesQuery.isError) {
60
87
  setWidgetLoading(false)
@@ -49,7 +49,7 @@ function WidgetHeaderActions({
49
49
  <div
50
50
  className={clsx('flex max-w-max items-center gap-3 text-neutral-700', styles.btnContainer)}>
51
51
  {actionButtons.includes('archive') && (
52
- <Tooltip show={!isMobile} content={t('general.buttons.archive')}>
52
+ <Tooltip show={!isMobile} content={t('general.buttons.archive')} position='bottom'>
53
53
  <Button
54
54
  show={actionButtons.includes('archive')}
55
55
  onClick={handleClickArchive}
@@ -1,4 +1,4 @@
1
- import { useEffect, useMemo, useRef } from 'react'
1
+ import { useCallback, useEffect, useMemo, useRef } from 'react'
2
2
  import { useDecision } from '@optimizely/react-sdk'
3
3
  import { useQueryClient } from '@tanstack/react-query'
4
4
  import { useTranslation } from 'react-i18next'
@@ -9,7 +9,9 @@ import { getAllMessagesQuery, useSendTextMessage } from '@/src/modules/messages/
9
9
  import { useMessagesMaxCount } from '@/src/modules/messages/store'
10
10
  import { useGetProfile } from '@/src/modules/profile'
11
11
  import { useInitSparkie } from '@/src/modules/sparkie/hooks/use-init-sparkie'
12
+ import { TutorWidgetEvents } from '../../events'
12
13
  import { useWidgetLoadingAtomValue, useWidgetSettingsAtom, useWidgetTabsAtom } from '../../store'
14
+ import { testQuestionRegex } from '../../utils'
13
15
  import { GreetingsCard } from '../greetings-card'
14
16
  import { WidgetHeader } from '../header'
15
17
  import { PageLayout } from '../page-layout'
@@ -17,7 +19,7 @@ import { QuickActionButtons } from '../quick-action-buttons'
17
19
 
18
20
  function WidgetStarterPage() {
19
21
  const { t } = useTranslation()
20
- const [settings] = useWidgetSettingsAtom()
22
+ const [settings, setWidgetSettings] = useWidgetSettingsAtom()
21
23
  const chatInputRef = useRef<HTMLTextAreaElement>(null)
22
24
  const [chatInputValue, setChatInputValue] = useChatInputValueAtom()
23
25
  const [, setWidgetTabs] = useWidgetTabsAtom()
@@ -30,7 +32,9 @@ function WidgetStarterPage() {
30
32
  const isSparkieReady = useInitSparkie()
31
33
  const isMobile = useMediaQuery({ maxSize: 'md' })
32
34
  const widgetLoading = useWidgetLoadingAtomValue()
35
+ const hasSentInitialMessage = useRef(false)
33
36
  const [newTutorWidgetFF] = useDecision('lex_new_tutor_widget')
37
+ const [lexTutorInitialMessageFF] = useDecision('lex_tutor_new_widget_initial_message')
34
38
 
35
39
  useRefEventListener<HTMLTextAreaElement>({
36
40
  config: {
@@ -43,17 +47,20 @@ function WidgetStarterPage() {
43
47
  }
44
48
  })
45
49
 
46
- const sendText = (textContent?: string | null) => {
47
- if (!textContent) return
50
+ const sendText = useCallback(
51
+ (textContent?: string | null) => {
52
+ if (!textContent) return
48
53
 
49
- sendTextMessageMutation.mutate(textContent, {
50
- onSuccess() {
51
- setWidgetTabs('chat')
52
- if (chatInputRef.current) chatInputRef.current.value = ''
53
- setChatInputValue('')
54
- }
55
- })
56
- }
54
+ sendTextMessageMutation.mutate(textContent, {
55
+ onSuccess() {
56
+ setWidgetTabs('chat')
57
+ if (chatInputRef.current) chatInputRef.current.value = ''
58
+ setChatInputValue('')
59
+ }
60
+ })
61
+ },
62
+ [sendTextMessageMutation, setChatInputValue, setWidgetTabs]
63
+ )
57
64
 
58
65
  const handleSend = () => {
59
66
  sendText(chatInputRef.current?.value)
@@ -79,6 +86,48 @@ function WidgetStarterPage() {
79
86
  void queryClient.prefetchInfiniteQuery(messagesQueryConfig)
80
87
  }, [conversationId, messagesQueryConfig, profileId, queryClient])
81
88
 
89
+ useEffect(() => {
90
+ if (!isSparkieReady || hasSentInitialMessage.current || !lexTutorInitialMessageFF.enabled)
91
+ return
92
+
93
+ const clear = TutorWidgetEvents['tutor-initial-message'].handler(({ message }) => {
94
+ if (!message) return
95
+
96
+ setChatInputValue(testQuestionRegex(message))
97
+ sendText(message)
98
+ hasSentInitialMessage.current = true
99
+ })
100
+
101
+ return () => {
102
+ clear?.()
103
+ hasSentInitialMessage.current = false
104
+ }
105
+ }, [isSparkieReady, lexTutorInitialMessageFF.enabled, sendText, setChatInputValue])
106
+
107
+ useEffect(() => {
108
+ if (!isSparkieReady || hasSentInitialMessage.current || !lexTutorInitialMessageFF.enabled)
109
+ return
110
+
111
+ const initialMessage = settings?.initialMessage
112
+
113
+ if (initialMessage) {
114
+ setChatInputValue(testQuestionRegex(initialMessage))
115
+ sendText(initialMessage)
116
+ setWidgetSettings({
117
+ ...settings,
118
+ initialMessage: ''
119
+ })
120
+ hasSentInitialMessage.current = true
121
+ }
122
+ }, [
123
+ settings,
124
+ isSparkieReady,
125
+ sendText,
126
+ setChatInputValue,
127
+ lexTutorInitialMessageFF.enabled,
128
+ setWidgetSettings
129
+ ])
130
+
82
131
  return (
83
132
  <PageLayout
84
133
  asideChild={
@@ -8,7 +8,8 @@ export const TutorWidgetEventTypes = {
8
8
  HIDE: 'c3po-app-widget-hide',
9
9
  LOADED: 'tutor-app-widget-loaded',
10
10
  THEME_CHANGE: 'c3po-app-widget-theme-change',
11
- EXPAND: 'tutor-app-widget-expand'
11
+ EXPAND: 'tutor-app-widget-expand',
12
+ INITIAL_MESSAGE: 'tutor-initial-message'
12
13
  } as const
13
14
 
14
15
  export const TutorWidgetEvents = {
@@ -112,7 +113,26 @@ export const TutorWidgetEvents = {
112
113
  dispatch: (payload) => {
113
114
  window.dispatchEvent(new CustomEvent(TutorWidgetEventTypes.EXPAND, payload))
114
115
  }
115
- } as ITutorWidgetEvent<void>
116
+ } as ITutorWidgetEvent<void>,
117
+
118
+ [TutorWidgetEventTypes.INITIAL_MESSAGE]: {
119
+ name: TutorWidgetEventTypes.INITIAL_MESSAGE,
120
+ handler: (callback: (payload: { message: string }) => void) => {
121
+ const listener: EventListener = (e) => {
122
+ const evt = e as CustomEvent<{ message: string }>
123
+ callback(evt.detail)
124
+ }
125
+
126
+ window.addEventListener(TutorWidgetEventTypes.INITIAL_MESSAGE, listener)
127
+
128
+ return () => {
129
+ window.removeEventListener(TutorWidgetEventTypes.INITIAL_MESSAGE, listener)
130
+ }
131
+ },
132
+ dispatch: (payload: { detail: { message: string } }) => {
133
+ window.dispatchEvent(new CustomEvent(TutorWidgetEventTypes.INITIAL_MESSAGE, payload))
134
+ }
135
+ } as ITutorWidgetEvent<{ message: string }>
116
136
  } as const
117
137
 
118
138
  export const ACTION_EVENTS = {
@@ -0,0 +1 @@
1
+ export * from './test-question-regex'
@@ -0,0 +1 @@
1
+ export { default as testQuestionRegex } from './test-question-regex'
@@ -0,0 +1,7 @@
1
+ function testQuestionRegex(message: string) {
2
+ const questionRegex = /^question::\s*/i
3
+
4
+ return questionRegex.test(message) ? message.replace(questionRegex, '').trim() : message
5
+ }
6
+
7
+ export default testQuestionRegex
package/src/types.ts CHANGED
@@ -49,6 +49,7 @@ export type WidgetSettingProps = {
49
49
  current_media_codes?: string
50
50
  productType?: string
51
51
  classType?: ClassTypes
52
+ initialMessage?: string
52
53
  config?: {
53
54
  theme?: Theme
54
55
  metadata?: {