From 29eb528d1f20333efbb293a075c0ed24c4405f32 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 2 Dec 2020 11:27:15 +1100 Subject: [PATCH] remove signal gear icon, and show back ours on calculatingPow this is used for a message in the message list and in the conversation list item --- images/gear.svg | 22 ---------------------- js/background.js | 1 - stylesheets/_modules.scss | 20 ++++++++++++-------- ts/components/conversation/Message.tsx | 12 +++++++----- ts/components/session/SessionInboxView.tsx | 3 ++- 5 files changed, 21 insertions(+), 37 deletions(-) delete mode 100644 images/gear.svg diff --git a/images/gear.svg b/images/gear.svg deleted file mode 100644 index 7b0b78f3b..000000000 --- a/images/gear.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - Gear/gear-20 - Created with Sketch. - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/js/background.js b/js/background.js index 7324faa85..21598f5ba 100644 --- a/js/background.js +++ b/js/background.js @@ -72,7 +72,6 @@ 'file.svg', 'folder-outline.svg', 'forward.svg', - 'gear.svg', 'hourglass_empty.svg', 'hourglass_full.svg', 'icon_1024.png', diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 85880bf5e..a73b7e98c 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -1130,14 +1130,6 @@ text-align: center; } -.module-conversation-header__gear-icon { - @include color-svg('../images/gear.svg', $color-gray-60); - height: 20px; - width: 20px; - margin-inline-start: 4px; - cursor: pointer; -} - // Module: Message Detail .module-message-detail { @@ -1227,6 +1219,12 @@ infinite; } +.module-message-detail__contact__status-icon--pow { + @include color-svg('../images/session/gear.svg', $color-gray-60); + animation: module-message-detail__contact__status-icon--spinning 4s linear + infinite; +} + @keyframes module-message-detail__contact__status-icon--spinning { 100% { -webkit-transform: rotate(360deg); @@ -1620,6 +1618,12 @@ linear infinite; } +.module-conversation-list-item__message__status-icon--pow { + @include color-svg('../images/session/gear.svg', $color-light-35); + animation: module-conversation-list-item__message__status-icon--spinning 4s + linear infinite; +} + @keyframes module-conversation-list-item__message__status-icon--spinning { 100% { -webkit-transform: rotate(360deg); diff --git a/ts/components/conversation/Message.tsx b/ts/components/conversation/Message.tsx index 4b33a9ddb..c17ebe040 100644 --- a/ts/components/conversation/Message.tsx +++ b/ts/components/conversation/Message.tsx @@ -61,7 +61,7 @@ export interface Props { direction: 'incoming' | 'outgoing'; timestamp: number; serverTimestamp?: number; - status?: 'sending' | 'sent' | 'delivered' | 'read' | 'error'; + status?: 'sending' | 'sent' | 'delivered' | 'read' | 'error' | 'pow'; // What if changed this over to a single contact like quote, and put the events on it? contact?: Contact & { hasSignalAccount: boolean; @@ -240,6 +240,7 @@ export class Message extends React.PureComponent { .filter(i => !!i); } + // tslint:disable-next-line: cyclomatic-complexity public renderMetadata() { const { collapseMetadata, @@ -264,11 +265,13 @@ export class Message extends React.PureComponent { !textPending && direction === 'outgoing' && status !== 'error' && - status !== 'sending'; + status !== 'sending' && + status !== 'pow'; const showSending = - !textPending && direction === 'outgoing' && status === 'sending'; - + !textPending && + direction === 'outgoing' && + (status === 'sending' || status === 'pow'); return (
{ if (!quote || !quote.authorPhoneNumber) { return null; } - // console.warn('quote render ' , quote) const withContentAbove = conversationType === 'group' && direction === 'incoming'; diff --git a/ts/components/session/SessionInboxView.tsx b/ts/components/session/SessionInboxView.tsx index 3b5d5e8e9..24e4508a4 100644 --- a/ts/components/session/SessionInboxView.tsx +++ b/ts/components/session/SessionInboxView.tsx @@ -162,7 +162,8 @@ export class SessionInboxView extends React.Component { private async handleMessageSentFailure( sentMessage: RawMessage | OpenGroupMessage, - error: any) { + error: any + ) { const fetchedData = await this.fetchHandleMessageSentData(sentMessage); if (!fetchedData) { return;