fix: made the saved media notification a bubble

as it is not pretty otherwise
pull/2940/head
Audric Ackermann 1 year ago
parent 6e4052c4ab
commit 8fa9b80fad

@ -1,10 +1,8 @@
import React from 'react';
import { PropsForDataExtractionNotification } from '../../../../models/messageType';
import { SignalService } from '../../../../protobuf';
import { Flex } from '../../../basic/Flex';
import { SpacerSM, Text } from '../../../basic/Text';
import { SessionIcon } from '../../../icon';
import { ExpirableReadableMessage } from './ExpirableReadableMessage';
import { NotificationBubble } from './notification-bubble/NotificationBubble';
export const DataExtractionNotification = (props: PropsForDataExtractionNotification) => {
const { name, type, source, messageId } = props;
@ -23,22 +21,7 @@ export const DataExtractionNotification = (props: PropsForDataExtractionNotifica
key={`readable-message-${messageId}`}
isControlMessage={true}
>
<Flex
container={true}
flexDirection="column"
alignItems="center"
justifyContent="center"
width="90%"
maxWidth="700px"
margin="5px auto 10px auto" // top margin is smaller that bottom one to make the stopwatch icon of expirable message closer to its content
padding="5px 10px"
id={`msg-${messageId}`}
style={{ textAlign: 'center' }}
>
<SessionIcon iconType="save" iconColor="inherit" iconSize="large" />
<SpacerSM />
<Text text={contentText} ellipsisOverflow={true} />
</Flex>
<NotificationBubble notificationText={contentText} iconType="save" />
</ExpirableReadableMessage>
);
};

Loading…
Cancel
Save