Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

Commit 1943ff5

Browse files
Sravan Ssravan-s
authored andcommitted
v1.0.7(June 26, 2020)
- Features: * Implement query customization - users can now customize internal queries that we use inside the app to customize - ChannelList, MessageList and UserList rendering * ChannelList.queries.channelListQuery (MyGroupChannelListQuery) * ChannelList.queries.applicationUserListQuery (ApplicationUserListQuery), ChannelSettings.queries.applicationUserListQuery (ApplicationUserListQuery) * Channel.queries.messageListQuery (MessageListQuery) * UI for unknown message type - Example ``` <ChannelList queries={{ channelListQuery: { includeEmpty: true }, applicationUserListQuery: { limit: 30, userIdsFilter: ['yourId'] }, }} /> <Channel channelUrl={channelUrl} queries={{ messageListQuery: { prevResultSize: 10, includeParentMessageText: true, includeReaction: false }, }} /> <ChannelSetting channelUrl={channelUrl} queries={{ applicationUserListQuery: { limit: 30, userIdsFilter: ['yourId'] }, }} /> ``` - Bug fixes: * Various stability fixes
1 parent 701c15a commit 1943ff5

File tree

10 files changed

+2887
-2268
lines changed

10 files changed

+2887
-2268
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
# Changelog
22

3+
## 1.0.7(June 26, 2020)
4+
5+
- Features:
6+
* Implement query customization - users can now customize internal queries that we use inside the app
7+
to customize - ChannelList, MessageList and UserList rendering
8+
9+
* ChannelList.queries.channelListQuery (MyGroupChannelListQuery)
10+
* ChannelList.queries.applicationUserListQuery (ApplicationUserListQuery), ChannelSettings.queries.applicationUserListQuery (ApplicationUserListQuery)
11+
* Channel.queries.messageListQuery (MessageListQuery)
12+
13+
* UI for unknown message type
14+
15+
16+
- Example
17+
18+
```
19+
<ChannelList
20+
queries={{
21+
channelListQuery: { includeEmpty: true },
22+
applicationUserListQuery: { limit: 30, userIdsFilter: ['yourId'] },
23+
}}
24+
/>
25+
26+
<Channel
27+
channelUrl={channelUrl}
28+
queries={{
29+
messageListQuery: { prevResultSize: 10, includeParentMessageText: true, includeReaction: false },
30+
}}
31+
/>
32+
33+
<ChannelSetting
34+
channelUrl={channelUrl}
35+
queries={{
36+
applicationUserListQuery: { limit: 30, userIdsFilter: ['yourId'] },
37+
}}
38+
/>
39+
```
40+
41+
- Bug fixes:
42+
* Various stability fixes
43+
344
## 1.0.6(June 18, 2020)
445

546
- Bug fixes:

dist/index.css

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.es.css

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.es.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)