forked from DaiYz/react-native-easy-chat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
451 lines (443 loc) · 9.23 KB
/
index.d.ts
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
import ChatView from './app/chat/ChatView'
import { EMOJIS_DATA } from './app/source/emojis/index'
import { ViewStyle } from 'react-native'
import { PureComponent } from 'react'
export interface VoiceContentPropsType {
uri: string
length: number
}
export interface ImageContentPropsType {
uri: string
width: number
height: number
}
export interface VideoContentPropsType {
uri: string
poster: string
width: number
height: number
}
export enum MsgType {
text = 'text',
image = 'image',
voice = 'voice',
video = 'video',
location = 'location',
share = 'share',
videoCall = 'videoCall',
voiceCall = 'voiceCall',
redEnvelope = 'redEnvelope',
file = 'file',
system = 'system',
}
/**
* 单独消息内容对象
*/
export interface MessagePorpsType {
id: string
/**
* 消息类型
*/
type: MsgType | string
/**
* 消息内容
*/
content: string | VoiceContentPropsType | ImageContentPropsType | VideoContentPropsType
/**
* 消息谁发的就是谁的用户ID
*/
targetId: string
/**
* 与你聊天人的资料
*/
chatInfo: {
avatar: string | number
id: string,
nickName?: string
}
/**
* 是否在每一条消息上显示消息时间
*/
renderTime: boolean
sendStatus: 0 | 1 | -1 | -2 | number
/**
* 当前时间,消息将由此值来排序,Date.getTime()
*/
time: string
}
// 消息属性
export interface ChatScreenPropsType {
/**
* 消息列表
*/
messageList: MessagePorpsType[]
/**
* 会话最后被阅读的时间
*/
lastReadAt: Date
/**
* 是否列表倒置
*/
inverted: boolean
/**
* 聊天背景
*/
chatBackgroundImage?: string | number
/**
* 同FlatList属性
*/
onScroll?: () => void
/**
* 同FlatList属性
*/
onEndReachedThreshold?: number
/**
* 外部容器样式
*/
chatWindowStyle?: ViewStyle
/**
* 发送消息时的回调
*/
sendMessage: (type: MsgType, content: string, isInverted: boolean) => void
/**
* 重发消息的回调
*/
reSendMessage?: (message: MessagePorpsType) => void
/**
* 删除消息的回调
*/
delMessage?: (indexs, isInverted: boolean) => void
renderAvatar?: (message: MessagePorpsType) => JSX.Element
/**
* 头像样式
*/
avatarStyle?: ViewStyle
/**
* 聊天对象的ID
*/
chatId?: string
/**
* 与聊天人的关系
*/
chatType?: 'friend' | 'group'
/**
* 点击消息的回调
*/
onMessagePress?: (type: MsgType, index: number, content: string | object, message: MessagePorpsType) => void
/**
* 长按消息的回调(usePopView为false时候触发,默认显示一个弹出层)
*/
onMessageLongPress?: (type: MsgType, index: number, content: string | object, message: MessagePorpsType) => void
/**
* 点击头像的回调
*/
pressAvatar?: (isSelf: boolean, targetId: string) => void
/**
* android的导航头高度(加上statusBar高度)
*/
androidHeaderHeight: number
/**
* 你自己的个人资料
*/
userProfile?: { id: string; avatar: string | number }
/**
* 显示一个loading
*/
renderLoadEarlier?: () => JSX.Element
/**
* 下拉获取历史记录的回调
*/
loadHistory?: () => void
/**
* 是否显示用户昵称
*/
showUserName?: boolean
/**
* 自定义渲染消息上方的时间
*/
renderMessageTime?: (time: string) => JSX.Element
/**
* 自定义当前聊天背景
*/
renderChatBg?: (bg: number | string) => JSX.Element
/**
* 自定义渲染当被拉黑或者被删除的时候显示的提示性消息
*/
renderErrorMessage?: (messageStatus: 0 | 1 | -1 | -2) => JSX.Element
/**
* 自定义最右侧面板数据源
*/
panelSource?: { icon: any; title: string; onPress: (e) => void }[]
/**
* 自定义渲染每个数据源的内容
*/
renderPanelRow?: any
/**
* 所有键盘下方面板的高度(表情面板,更多面板)
*/
allPanelHeight?: number
/**
* 自定义消息发送失败时显示的图标,默认为红色圆形感叹号
*/
messageErrorIcon?: any
/**
* 自定义左侧消息的背景色
*/
leftMessageBackground?: string
/**
* 自定义右侧消息的背景色
*/
rightMessageBackground?: string
/**
* 所有面板动画时长
*/
allPanelAnimateDuration?: number
// 输入组件属性
/**
* 自定义最下方的表情图标
*/
emojiIcon?: any
/**
* 占位符
*/
placeholder?: string
/**
* 自定义最下方的键盘图标
*/
keyboardIcon?: any
/**
* 自定义最下方的加号图标
*/
plusIcon?: any
/**
* 自定义最下方的发送图标
*/
sendIcon?: any
/**
* 自定义未能发送消息时的发送图标
*/
sendUnableIcon?: any
/**
* 是否启用表情
*/
useEmoji?: boolean
/**
* 是否启用更多
*/
usePlus?: boolean
/**
* 输入框样式
*/
inputStyle?: ViewStyle
// 弹出层属性
/**
* 长按消息是否显示一个弹出层
*/
usePopView?: boolean
/**
* 弹出层样式
*/
popoverStyle?: ViewStyle
/**
* 点击多选之后可以使用此方法改变导航条左上角文字实现关闭多选功能
*/
changeHeaderLeft?: () => void
/**
* 自定义弹出层的每一个item
*/
setPopItems?: any
/**
* 自定义底部删除按钮的图标
*/
messageDelIcon?: any
/**
* 自定义底部删除面板
*/
renderDelPanel?: (isSelect: boolean) => JSX.Element
/**
* 自定义消息选中时的图标
*/
messageSelectIcon?: any
/**
* 自定义渲染消息选中和未选中的样式
*/
renderMessageCheck?: (isSelect: boolean) => JSX.Element
// 语音属性
/**
* 是否使用语音
*/
useVoice?: boolean
/**
* 自定义切换到语音,按钮显示的文字
*/
pressInText?: string
/**
* 自定义按下语音按钮,按钮显示的文字
*/
pressOutText?: string
/**
* 自定义输入框左侧的语音图标
*/
voiceIcon?: any
/**
* 自定义左侧语音消息的图标
*/
voiceLeftIcon?: any
/**
* 自定义右侧语音消息的图标
*/
voiceRightIcon?: any
/**
* 自定义录音发生错误的图标
*/
voiceErrorIcon?: any
/**
* 自定义录音发生错误的提示文字
*/
voiceErrorText?: string
/**
* 自定义取消录音的图标
*/
voiceCancelIcon?: any
/**
* 自定义取消录音的提示文字
*/
voiceCancelText?: string
/**
* 自定义按下语音按钮显示的文字
*/
voiceNoteText?: string
/**
* 自定义按下语音按钮显示的图标
*/
voiceSpeakIcon?: any
/**
* 语音的存储路径
*/
audioPath?: string
/**
* 录制语音中的回调
*/
audioOnProgress?: () => void
/**
* 录制语音结束的回调
*/
audioOnFinish?: () => void
/**
* 初始化语音路径的回调
*/
audioInitPath?: () => void
/**
* 开始录音的回调
*/
audioRecord?: () => void
/**
* 停止录音的回调
*/
audioStopRecord?: () => void
/**
* 暂停录音的回调
*/
audioPauseRecord?: () => void
/**
* 重置录音的回调
*/
audioResumeRecord?: () => void
/**
* 语音的长度
*/
audioCurrentTime?: number
/**
* 是否获取到录音的句柄
*/
audioHandle?: boolean
/**
* 修改是否获取录音句柄的状态
*/
setAudioHandle?: (status: boolean) => void
/**
* 是否有录音权限
*/
audioHasPermission?: boolean
/**
* android检查录音权限的回调
*/
requestAndroidPermission?: () => void
/**
* 检查是否已获得录音权限
*/
checkPermission?: () => void
/**
* 是否正在加载语音
*/
voiceLoading?: boolean
/**
* 是否正在播放语音
*/
voicePlaying?: boolean
/**
* 自定义语音加载时左侧消息颜色
*/
voiceLeftLoadingColor?: string
/**
* 自定义语音加载时右侧消息颜色
*/
voiceRightLoadingColor?: string
// 聊天气泡属性
/**
* 自定义渲染文本消息
*/
renderTextMessage?: (data: any) => JSX.Element
/**
* 自定义渲染图片消息
*/
renderImageMessage?: (data: any) => JSX.Element
/**
* 自定义渲染语音消息
*/
renderVoiceMessage?: (data: any) => JSX.Element
/**
* 自定义渲染语音外部容器
*/
renderVoiceView?: (data: any) => JSX.Element
/**
* 自定义渲染视频消息
*/
renderVideoMessage?: (data: any) => JSX.Element
/**
* 自定义定位消息
*/
renderLocationMessage?: (data: any) => JSX.Element
/**
* 自定义分享消息
*/
renderShareMessage?: (data: any) => JSX.Element
/**
* 自定义视频聊天信息
*/
renderVideoCallMessage?: (data: any) => JSX.Element
/**
* 自定义语音聊天信息
*/
renderVoiceCallMessage?: (data: any) => JSX.Element
/**
* 自定义红包信息
*/
renderRedEnvelopeMessage?: (data: any) => JSX.Element
/**
* 自定义文件信息
*/
renderFileMessage?: (data: any) => JSX.Element
/**
* 自定义系统消息
*/
renderSystemMessage?: (data: any) => JSX.Element
}
export class ChatScreen extends PureComponent<ChatScreenPropsType, any> {
static defaultProps: {}
constructor()
componentDidMount(): void
componentWillMount(): void
render(): JSX.Element
}
export const EMOJIS_DATA