Last active
June 4, 2018 16:26
-
-
Save bookercodes/e8f0d02c5c0660d84366d4d15362e398 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
// ./src/Chat.js | |
import React, { Component } from 'react' | |
import { ChatManager, TokenProvider } from '@pusher/chatkit' | |
+import MessageList from './MessageList' | |
class Chat extends React.Component { | |
state = { | |
- currentUser: null | |
+ currentUser: null, | |
+ currentRoom: {}, | |
+ messages: [] | |
} | |
componentDidMount() { | |
const chatkit = new ChatManager({ | |
instanceLocator: 'YOUR INSTANCE LOCATOR', | |
userId: this.props.currentId, | |
tokenProvider: new TokenProvider({ | |
url: 'YOUR TOKEN PROVIDER URL' | |
}) | |
}) | |
chatkit | |
.connect() | |
.then(currentUser => { | |
this.setState({ currentUser }) | |
console.log('Bleep bloop 🤖 You are connected to Chatkit') | |
+ return currentUser.subscribeToRoom({ | |
+ roomId: 8434070, // Replace with YOUR ROOM ID | |
+ messageLimit: 100, | |
+ hooks: { | |
+ onNewMessage: message => { | |
+ this.setState({ | |
+ messages: [...this.state.messages, message] | |
+ }) | |
+ } | |
+ } | |
+ }) | |
+ }) | |
+ .then(currentRoom => { | |
+ this.setState({ currentRoom }) | |
}) | |
.catch(error => console.error('error', error)) | |
} | |
render() { | |
return ( | |
- <div> | |
- <h1>Chat</h1> | |
- </div> | |
+ <div className="wrapper"> | |
+ <div className="chat"> | |
+ <MessageList messages={this.state.messages} /> | |
+ </div> | |
+ </div> | |
) | |
} | |
} | |
export default Chat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment