Created
May 9, 2022 08:36
-
-
Save warodri-sendbird/d2f670a64c685df8d1fb6dbb5df44a39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p> | |
| <button (click)="connect()">Connect to chat</button> | |
| </p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <h3>Messages in the conversation</h3> | |
| <ul> | |
| <li *ngFor="let message of messages"> | |
| {{ message['message'] }} | |
| </li> | |
| </ul> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <h3>My Conversations</h3> | |
| <ul> | |
| <li *ngFor="let channel of conversations"> | |
| {{ channel.name }} | |
| <button (click)="getMessages(channel)">Get messages</button> | |
| </li> | |
| </ul> | |
| <div> | |
| {{ listConversationsResult }} | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div *ngIf="selectedChannel"> | |
| <h3>Send a message to the selected channel</h3> | |
| <table> | |
| <tr> | |
| <td> | |
| <input | |
| type="text" | |
| placeholder="Type your message..." | |
| (input)="updateTextMessage($event)" | |
| /> | |
| </td> | |
| <td> | |
| <button (click)="sendMessage()">Send</button> | |
| </td> | |
| </tr> | |
| </table> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <button (click)="startConversation()">Start a conversation</button> | |
| <div> | |
| {{ startConversationResult }} | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment