React UIKit for web app

Hi,
Last one week, I am trying to embed this type of Sendbird “https://docs.sendbird.com/javascript/ui_kit_getting_started” in own web application and I am stuck that
when we get channel base on any filter like Retrieve Channel by URL , Retrieve Channel by Custom type
then how to show filter channel in channel list. My Code is below.

var openChannelListQuery = sb.OpenChannel.createOpenChannelListQuery();
openChannelListQuery.customTypes = [Guid];
openChannelListQuery.next(function(openChannels, error) {
if (error) {
    return;
}

// where will we bind this object openChannels//
console.log(openChannels);

Hello @vcs_account, welcome to the community
We do not support open channels as of now. If you are looking to filter group channels - follow this example https://codesandbox.io/s/3-2-customizing-channellistquery-z2y89?file=/src/CustomizedApp.js:773-798

More examples can be found here :- https://github.com/sendbird/SendBird-JavaScript/tree/master/uikit-samples#uikit-samples

1 Like

Thanks @Sravan_S, It is helpful for me. I look into that.