Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 769 Bytes

File metadata and controls

15 lines (10 loc) · 769 Bytes

Message

The Message object is the standard class for handling message data in react-chat-ui.

Constructor

  • id: The id of a message is a number used to identify which user created the message. It's used for grouping messages together and determining the bubble colour. (This may be renamed in the future)
  • message: This is the actual text that will be displayed in the bubble
  • senderName (optional): the sender name is an optional parameter that associates a name to a message (can be thought of as a string representation of an id, although your id's will be unique, users may have the same name)
const myMessage = new Message(1, 'Hello World!', 'Elon Musk');

const anotherMessage = new Message(0, 'Hey Elon!');