Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxiuwen committed Nov 7, 2024
1 parent 3c10877 commit e381c05
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/uikit/chatuikit/ios/releasenote.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

- 修复了不需要消息表情回应时 UI 错乱问题。
- 修复了一些文案问题。
- 修复了群详情页面中解散群组请求中强引用的问题。

### 重大变更

Expand Down
4 changes: 2 additions & 2 deletions docs/uikit/chatuikit/web/chatuikit_chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const ChatContainer = () => {
content: 'SELECT',
},
{
// 展示消息固定
// 展示消息置顶
content: 'PIN',
},
{
Expand Down Expand Up @@ -194,7 +194,7 @@ const ChatContainer = () => {
sendButtonIcon={<Icon type="AIR_PLANE" />} // 发送按钮 Icon
row={1} // Input 行数
placeHolder="请输入内容" // 默认占位符
enabledMention={true} // 是否开启@功能
enabledMention={true} // 是否开启群 @ 功能
onSendMessage={message => {}} //发送消息的回调
onBeforeSendMessage={message => {}} // 消息发送前回调,该回调返回 promise,如果返回的 promise 的状态为已解决(resolved),则发送消息;如果返回的 promise 的状态为已失败(rejected),则不发送消息。
/>
Expand Down
2 changes: 1 addition & 1 deletion docs/uikit/chatuikit/web/chatuikit_context.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<Toc />

聊天 UIKit 的内部 state 据全部存储在 rootStore,rootStore 数据更新会驱动各个组件更新 UI。你可以使用 rootStore 上的数据,也可以调用 UIKit 提供的方法来更新数据。
聊天 UIKit 的内部 state 数据全部存储在 rootStore,rootStore 数据更新会驱动各个组件更新 UI。你可以使用 rootStore 上的数据,也可以调用 UIKit 提供的方法来更新数据。

rootStore 包含以下数据模块:

Expand Down

0 comments on commit e381c05

Please sign in to comment.