You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { PropsForDataExtractionNotification } from '../../models/messageType';
|
|
import { SignalService } from '../../protobuf';
|
|
import { Flex } from '../basic/Flex';
|
|
import { SessionIcon } from '../session/icon';
|
|
import { SpacerXS, Text } from '../basic/Text';
|
|
import { ReadableMessage } from './ReadableMessage';
|
|
|
|
export const DataExtractionNotification = (props: PropsForDataExtractionNotification) => {
|
|
const { name, type, source, messageId, isUnread, receivedAt } = props;
|
|
|
|
let contentText: string;
|
|
if (type === SignalService.DataExtractionNotification.Type.MEDIA_SAVED) {
|
|
contentText = window.i18n('savedTheFile', name || source);
|
|
} else {
|
|
contentText = window.i18n('tookAScreenshot', name || source);
|
|
}
|
|
|
|
return (
|
|
<ReadableMessage
|
|
messageId={messageId}
|
|
receivedAt={receivedAt}
|
|
isUnread={isUnread}
|
|
key={`readable-message-${messageId}`}
|
|
>
|
|
<Flex
|
|
container={true}
|
|
flexDirection="column"
|
|
alignItems="center"
|
|
margin={'var(--margins-sm)'}
|
|
id={`msg-${messageId}`}
|
|
>
|
|
<SessionIcon iconType="upload" iconSize={'small'} iconRotation={180} />
|
|
<SpacerXS />
|
|
<Text text={contentText} subtle={true} />
|
|
</Flex>
|
|
</ReadableMessage>
|
|
);
|
|
};
|