List participants in an open channel
In Sendbird Chat SwiftUI, you can retrieve a list of users in an open channel through the OpenParticipantListView
. This view is used to display a list of channel participants, operators, muted participants, and banned users.
Note: If you set the starting point of your chat service to be the channel list, open channel, or channel settings, you can seamlessly guide your users to the participant list view.
Types of participant list
There are four different types of list view that display participants of OpenChannel
.
Type | Description |
---|---|
OpenParticipantListView | A list of participants in the open channel |
OpenOperatorListView | A list of operators in the channel |
OpenMutedParticipantListView | A list of muted users in the channel |
OpenBannedUserListView | A list of banned users from the channel |
Initialize
You can start building a participant list view using the OpenParticipantListView
, OpenOperatorListView
, OpenMutedParticipantListView
, or OpenBannedUserListView
. Each struct can be used to create specific views tailored to different participant lists. Use the init(channelURL:)
initializer to create the instance and display the view as shown below.
Customization
Sendbird Chat SwiftUI provides a View customization
and DestinationViewBuilder
.
- View customization: Our SwiftUI SDK allows you to selectively customize view elements. To learn more about the customization and our SwiftUI is designed, see the customization guide.
- DestinationViewBuilder: Use
DestinationViewBuilder
to customize the destination views that are navigatable from the group channel view.
Note : Visit our Github Sample to see the custom sample implementation for each item.
Partial customization
Partial customization is available for the following four views: OpenParticipantListView
, OpenBannedUserListView
, OpenMutedParticipantListView
, and OpenOperatorListView
.
You can easily customize a specific part of those View
s, which particularly comes in handy when changing only a certain area in a View
.
To do so, use the View Builders
that Sendbird has predefined and its a ViewConfig
. The ViewConfig
contains the data needed to render the view and its parameters can be found in the table below.
Parameter - OpenParticipantListView
Parameter | Type | View items |
---|---|---|
headerItem | OpenMemberListType.HeaderItem | leftView |
listItem | OpenMemberListType.ListItem | rowView |
Parameter - OpenBannedUserListView
Parameter | Type | View items |
---|---|---|
headerItem | OpenBannedUserListType.HeaderItem | leftView |
listItem | OpenBannedUserListType.ListItem | rowView |
Parameter - OpenMutedParticipantListView
Parameter | Type | View items |
---|---|---|
headerItem | OpenMutedParticipantType.HeaderItem | leftView |
listItem | OpenMutedParticipantType.ListItem | rowView |
Parameter - OpenOperatorListView
Parameter | Type | View items |
---|---|---|
headerItem | OpenOperatorListType.HeaderItem | leftView |
listItem | OpenOperatorListType.ListItem | rowView |
The following code demonstrates how to replace the view items using headerItem
. All other {Component}Item
s can be used in the same way.
Note : When you customize a parent view, customizations in the child views will not be applied. For example, if you customize the
titleView
in theheaderItem
, the customizations of thecoverImage
ortitleLabel
in the lower view items will not be applied.
Full customization
You can also customize the entire view area as desired. You simply need to return a SwiftUI View in the closure. The ViewConfig
contains the data needed to render the view. Its parameters can be found in the table below.
Parameter
The list
parameter is used to customize the entire list area for all of the four types of View
s - OpenParticipantListView
, OpenBannedUserListView
, OpenMutedParticipantListView
, and OpenOperatorListView
.
Parameter | Type | View builders |
---|---|---|
list | Closure | - |
The following code demonstrates how to replace the entire list area using the list
parameter.
Note : When you customize a parent view, customizations in the child views will not be applied. For example, if you customize the entire area through the
list
, the customizations set in thelistItem
will not be applied.
DestinationViewBuilder
Sendbird Chat SwiftUI is designed to internally navigate from each view to its connected view. However, if you need to customize the destination view, you can do so by using the interface provided by the DestinationViewBuilder
.
Out of the four View types, only OpenOperatorListView
supports the DestinationViewBuilder
at the moment.
Method - OpenOperatorListView
Method | ViewBuilder type |
---|---|
registerOperatorView | OpenChannelRegisterOperatorViewBuilder |
The following code demonstrates how to replace the channel settings view connected from the channel view.
Note : If you've customized a child view of another view, you need to set the destination view for all the views from the top to the destination view.