show tiny wheel while message is in sending state

pull/1205/head
Audric Ackermann 5 years ago
parent 2a3b82ed9c
commit 1201707d17
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -266,6 +266,14 @@ export class Message extends React.PureComponent<Props, State> {
const isShowingImage = this.isShowingImage();
const withImageNoCaption = Boolean(!text && isShowingImage);
const showError = status === 'error' && direction === 'outgoing';
const showSentNoErrors =
!textPending &&
direction === 'outgoing' &&
status !== 'error' &&
status !== 'sending';
const showSending =
!textPending && direction === 'outgoing' && status === 'sending';
return (
<div
@ -314,7 +322,15 @@ export class Message extends React.PureComponent<Props, State> {
</div>
) : null}
<span className="module-message__metadata__spacer" />
{!textPending && direction === 'outgoing' && status !== 'error' ? (
{showSending ? (
<div
className={classNames(
'module-message-detail__contact__status-icon',
`module-message-detail__contact__status-icon--${status}`
)}
/>
) : null}
{showSentNoErrors ? (
<div className="message-read-receipt-container">
<SessionIcon
iconType={SessionIconType.Check}

Loading…
Cancel
Save