-
Notifications
You must be signed in to change notification settings - Fork 734
Video 3732 create message components #441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Video 3732 create message components #441
Conversation
room: { localParticipant: { identity: 'olivia' } }, | ||
})); | ||
|
||
const arbitraryDate = new Date(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a hardcoded date could fix the failing CI build (I think it must be time zone related).
Something like: new Date(1614634697422)
return ( | ||
<> | ||
{messages.map((message, idx) => { | ||
const time = message.dateCreated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit - I think here we can have
const isLocalParticipant = localParticipant.identity === message.author;
Then isLocalParticipant
can be passed as a prop to MessageInfo and TextMessage (and maybe MediaMessage in the future).
This way, the localParticipant.identity === message.author
check is done only once per message, instead of twice (once by MessageInfo and once for TextMessage).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice, i'll have to remember this one👍 . this also allowed me to remove the author
prop from the TextMessage
component since we were only using it to check whether the message author was the localParticipant
[classes.isLocalParticipant]: isLocalParticipant, | ||
})} | ||
> | ||
<div>{body}</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this div is needed.
<div>{body}</div> | |
{body} |
src/components/ChatWindow/MessageList/TextMessage/TextMessage.tsx
Outdated
Show resolved
Hide resolved
import { makeStyles, createStyles } from '@material-ui/core/styles'; | ||
|
||
const useStyles = makeStyles(() => | ||
createStyles({ | ||
messageInfoContainer: { | ||
display: 'flex', | ||
justifyContent: 'space-between', | ||
alignItems: 'center', | ||
padding: '1.425em 0 0.083em', | ||
fontSize: '12px', | ||
color: '#606B85', | ||
}, | ||
}) | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { makeStyles, createStyles } from '@material-ui/core/styles'; | |
const useStyles = makeStyles(() => | |
createStyles({ | |
messageInfoContainer: { | |
display: 'flex', | |
justifyContent: 'space-between', | |
alignItems: 'center', | |
padding: '1.425em 0 0.083em', | |
fontSize: '12px', | |
color: '#606B85', | |
}, | |
}) | |
); | |
import { makeStyles } from '@material-ui/core/styles'; | |
const useStyles = makeStyles({ | |
messageInfoContainer: { | |
display: 'flex', | |
justifyContent: 'space-between', | |
alignItems: 'center', | |
padding: '1.425em 0 0.083em', | |
fontSize: '12px', | |
color: '#606B85', | |
}, | |
}); |
Co-authored-by: timmydoza <tmendoza@twilio.com>
…lio/twilio-video-app-react into VIDEO-3732-create-message-components
* VIDEO 3731 Conversations UI - create chat window (#421) * Video 4078 add flip camera button to mobile menu (#433) VIDEO 4078 Conversations - Add flip camera button to 'more' mobile menu * Video 3730 add conversation hooks (#438) * Add initial hooks for chat * Update hooks in chat provider * Add tests for conversationProvider component * Fix DeviceSelectionScreen tests * Update variable names * Revert proxy url in package.json * Fix linting issues * Make error handling more user friendly * Fix a test in src/state * Temporarily disable cypress tests * Undo prettier changes to config.yml * Update chatProvider test * Cleanup ChatProvider * Video 3732 Conversations UI - create message components (#441) * Add links to TextMessage component (#446) * Add links to TextMessage component * Update CSS in TextMessage * Update snapshot test * Fix issue in addLinks function * Use forEach loop in addLinks function * Add new server (#443) * Use new server with reused code * Add firebase auth to server * Convert server to typescript * Add tests for firebaseAuthMiddleware * Refactor server * Add more server tests * Add tests for CreateExpressHandler * Fix linter issue * Delete old server * Fix linter issues * Fix some server issues * Set up server build steps * Change request to match new server api * Fix token fetch test * Add server build step to circleci config * Enable cyress tests in CI * Undo prettier changes in config.yml * install plugin-rtc from npm * Fix firebaseAuth test * Add create_conversation:true to token requests * Upgrade plugin-rtc to 0.8.0 * Temorarily remove firebaseAuthMiddleware and recording rules route * Add ChatProvider back in * Update .env.example * Change build:server script * Add firebaseAuthMiddleware * Add comments to firebaseAuthMiddleware * Update useFirebaseAuth tests * Video 3728 Conversations UI - add input field and send button (#451) * Chat notification (#454) * Add notification to chat icon * Add tests for ToggleChatButton * Some cleanup * Fix linting issue * Video-4525 loading screen (#461) * Video 4454 Conversations UI - message list scrolling (#467) * Update MessageList component to change how messages are grouped (#469) * Update MessageList component to change how messages are grouped * Simplify MessageList code * Video 3888 file input for conversations (#458) * Add FileAttachmentIcon * Add File Input to ChatInput component * Add change handler to file input * Create MediaMessage component and add it to MessageList * Toggle ChatWindow visibility with CSS * Update messageList tests * Add function to format the file size * Update error handling in ChatInput component * Add tests for MediaMessage component * Update snapshot test * Add tests for ChatInput * Fix linting issue * Update filesize formatting * Update error language and tests * Reset file input value after file sent * Center icon in MediaMessage * Update Icon size * Fix breaking ChatInput test * Update snapshot * Use accept attribute on file input element * Update readme to add information about the chat feature and conversations api * Cross browser fixes (#472) * Update app.yaml for the new server * Add cache controls for static assets * Only hide Screenshare button on mobile devices * Auto focus on chat input when user opens chat window * Fix iOS bug with media messages * Fix issues in MessageListScrollContainer * Fix app.yaml * Fix infinite loop when there is a conversations error * Update tests for ChatInput * Update mediamessage test * Update menubar tests * Update messageList snapshot * Fix linting issue * Add comments to the server * Video 3727 - cypress testing (#473) * Video 4597 feature flag (#475) * Update plugin-rtc version * Add feature flag for Twilio Conversations * Add tests * Add info to .env.example * Update readme with info about twilio conversations (#476) * Update readme with info about twilio conversations * Update readme to address feedback * Release 0.3.0 (#479) * Bump version and update changelog * Add plugin-rtc upgrade instructions to the readme Co-authored-by: olipyskoty <77076398+olipyskoty@users.noreply.github.com> Co-authored-by: Sean Coleman <smcoleman27@gmail.com>
Contributing to Twilio
Pull Request Details
JIRA link(s):
Description
This PR added a
MessageList
component that renders the componentsMessageInfo
andTextMessage
(there will be aMediaMessage
component soon in a future PR). TheChatWindow
component is renderingMessageList
and will pass an array of messages to it as a prop. For now, that data is hard-coded inChatWindow
. Once the remaining hooks are "hooked up", we will grab those messages fromuseChatContext()
.web:

mobile:

Burndown
Before review
npm test
Before merge