-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathMessage.tsx
243 lines (228 loc) · 9.31 KB
/
Message.tsx
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import { useEffect, useState, useRef } from 'react'
import Box from '@mui/material/Box'
import Avatar from '@mui/material/Avatar'
import {
Typography,
Grid,
useTheme,
} from '@mui/material'
import PersonIcon from '@mui/icons-material/Person'
import SmartToyIcon from '@mui/icons-material/SmartToy'
import SettingsIcon from '@mui/icons-material/Settings'
import { useTranslation } from 'react-i18next'
import { Message, SessionType } from '../../shared/types'
import { useAtom, useAtomValue, useSetAtom } from 'jotai'
import {
showMessageTimestampAtom,
showModelNameAtom,
showTokenCountAtom,
showWordCountAtom,
openSettingDialogAtom,
enableMarkdownRenderingAtom,
settingsAtom,
} from '../stores/atoms'
import { currsentSessionPicUrlAtom, showTokenUsedAtom } from '../stores/atoms'
import * as scrollActions from '../stores/scrollActions'
import Markdown from '@/components/Markdown'
import '../static/Block.css'
import MessageErrTips from './MessageErrTips'
import * as dateFns from "date-fns"
import { cn } from '@/lib/utils'
import { estimateTokensFromMessages } from '@/packages/token'
import { countWord } from '@/packages/word-count'
export interface Props {
id?: string
sessionId: string
sessionType: SessionType
msg: Message
className?: string
collapseThreshold?: number
hiddenButtonGroup?: boolean
small?: boolean
}
export default function Message(props: Props) {
const { t } = useTranslation()
const theme = useTheme()
const showMessageTimestamp = useAtomValue(showMessageTimestampAtom)
const showModelName = useAtomValue(showModelNameAtom)
const showTokenCount = useAtomValue(showTokenCountAtom)
const showWordCount = useAtomValue(showWordCountAtom)
const showTokenUsed = useAtomValue(showTokenUsedAtom)
const enableMarkdownRendering = useAtomValue(enableMarkdownRenderingAtom)
const currentSessionPicUrl = useAtomValue(currsentSessionPicUrlAtom)
const setOpenSettingWindow = useSetAtom(openSettingDialogAtom)
const { msg, className, collapseThreshold, hiddenButtonGroup, small } = props
const needCollapse = collapseThreshold
&& (JSON.stringify(msg.content)).length > collapseThreshold
&& (JSON.stringify(msg.content)).length - collapseThreshold > 50
const [isCollapsed, setIsCollapsed] = useState(needCollapse)
const ref = useRef<HTMLDivElement>(null)
const tips: string[] = []
if (props.sessionType === 'chat' || !props.sessionType) {
if (showWordCount && !msg.generating) {
tips.push(`word count: ${msg.wordCount !== undefined ? msg.wordCount : countWord(msg.content)}`)
}
if (showTokenCount && !msg.generating) {
if (msg.tokenCount === undefined) {
msg.tokenCount = estimateTokensFromMessages([msg])
}
tips.push(`token count: ${msg.tokenCount}`)
}
if (showTokenUsed && msg.role === 'assistant' && !msg.generating) {
tips.push(`tokens used: ${msg.tokensUsed || 'unknown'}`)
}
if (showModelName && props.msg.role === 'assistant') {
tips.push(`model: ${props.msg.model || 'unknown'}`)
}
}
if (showMessageTimestamp && msg.timestamp !== undefined) {
let date = new Date(msg.timestamp)
let messageTimestamp: string
if (dateFns.isToday(date)) {
messageTimestamp = dateFns.format(date, 'HH:mm')
} else if (dateFns.isThisYear(date)) {
messageTimestamp = dateFns.format(date, 'MM-dd HH:mm')
} else {
messageTimestamp = dateFns.format(date, 'yyyy-MM-dd HH:mm')
}
tips.push('time: ' + messageTimestamp)
}
useEffect(() => {
if (msg.generating) {
scrollActions.scrollToBottom()
}
}, [msg.content])
const hideInitMsg = () => {
const [settings, _1] = useAtom(settingsAtom);
return settings.hideInitialMessage;
}
let content = msg.content
if (typeof msg.content !== 'string') {
content = JSON.stringify(msg.content)
}
if (msg.generating) {
content += '...'
}
if (needCollapse && isCollapsed) {
content = msg.content.slice(0, collapseThreshold) + '... '
}
const CollapseButton = (
<span
className='cursor-pointer inline-block font-bold text-blue-500 hover:text-white hover:bg-blue-500'
onClick={() => setIsCollapsed(!isCollapsed)}
>
[{isCollapsed ? t('Expand') : t('Collapse')}]
</span>
)
return (
<Box
ref={ref}
id={props.id}
key={msg.id}
className={cn(
'group/message',
'msg-block',
'px-2',
msg.generating ? 'rendering' : 'render-done',
{
user: 'user-msg',
system: 'system-msg',
assistant: 'assistant-msg',
}[msg?.role || 'user'],
className,
)}
sx={{
margin: '0',
paddingBottom: '0.1rem',
paddingX: '1rem',
[theme.breakpoints.down('sm')]: {
paddingX: '0.3rem',
},
display: msg?.role === 'system' && hideInitMsg() ? "none" : "initial"
}}
>
<Grid container wrap="nowrap" spacing={1.5}>
<Grid item>
<Box sx={{ marginTop: '8px' }}>
{
{
assistant: currentSessionPicUrl ? (
<Avatar
src={currentSessionPicUrl}
sx={{
width: '28px',
height: '28px',
}}
/>
) : (
<Avatar
sx={{
backgroundColor: theme.palette.primary.main,
width: '28px',
height: '28px',
}}
>
<SmartToyIcon fontSize='small' />
</Avatar>
),
user: (
<Avatar
sx={{
width: '28px',
height: '28px',
}}
className='cursor-pointer'
onClick={() => setOpenSettingWindow('chat')}
>
<PersonIcon fontSize='small' />
</Avatar>
),
system:
<Avatar
sx={{
backgroundColor: theme.palette.warning.main,
width: '28px',
height: '28px',
}}
>
<SettingsIcon fontSize='small' />
</Avatar>
}[msg.role]
}
</Box>
</Grid>
<Grid item xs sm container sx={{ width: '0px', paddingRight: '15px' }}>
<Grid item xs>
<Box className={cn('msg-content', { 'msg-content-small': small })} sx={
small ? { fontSize: theme.typography.body2.fontSize } : {}
}>
{
enableMarkdownRendering && !isCollapsed ? (
<Markdown>
{content}
</Markdown>
) : (
<div>
{content}
{
needCollapse && isCollapsed && (
CollapseButton
)
}
</div>
)
}
</Box>
<MessageErrTips msg={msg} />
{
needCollapse && !isCollapsed && CollapseButton
}
<Typography variant="body2" sx={{ opacity: 0.5, paddingBottom: '2rem' }}>
{tips.join(', ')}
</Typography>
</Grid>
</Grid>
</Grid>
</Box>
)
}