|
|
@ -1,6 +1,5 @@
|
|
|
|
import React from 'react';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
import { PropsForExpirationTimer } from '../../state/ducks/conversations';
|
|
|
|
import { PropsForExpirationTimer } from '../../state/ducks/conversations';
|
|
|
|
import { assertUnreachable } from '../../types/sqlSharedTypes';
|
|
|
|
import { assertUnreachable } from '../../types/sqlSharedTypes';
|
|
|
|
|
|
|
|
|
|
|
@ -10,10 +9,6 @@ import { SpacerSM, Text } from '../basic/Text';
|
|
|
|
import { Flex } from '../basic/Flex';
|
|
|
|
import { Flex } from '../basic/Flex';
|
|
|
|
import { isLegacyDisappearingModeEnabled } from '../../util/expiringMessages';
|
|
|
|
import { isLegacyDisappearingModeEnabled } from '../../util/expiringMessages';
|
|
|
|
|
|
|
|
|
|
|
|
const StyledTimerNotification = styled(Flex)`
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const TimerNotification = (props: PropsForExpirationTimer) => {
|
|
|
|
export const TimerNotification = (props: PropsForExpirationTimer) => {
|
|
|
|
const { messageId, pubkey, profileName, expirationType, timespan, type, disabled } = props;
|
|
|
|
const { messageId, pubkey, profileName, expirationType, timespan, type, disabled } = props;
|
|
|
|
|
|
|
|
|
|
|
@ -59,7 +54,7 @@ export const TimerNotification = (props: PropsForExpirationTimer) => {
|
|
|
|
key={`readable-message-${messageId}`}
|
|
|
|
key={`readable-message-${messageId}`}
|
|
|
|
dataTestId={'disappear-control-message'}
|
|
|
|
dataTestId={'disappear-control-message'}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<StyledTimerNotification
|
|
|
|
<Flex
|
|
|
|
container={true}
|
|
|
|
container={true}
|
|
|
|
flexDirection="column"
|
|
|
|
flexDirection="column"
|
|
|
|
alignItems="center"
|
|
|
|
alignItems="center"
|
|
|
@ -68,11 +63,12 @@ export const TimerNotification = (props: PropsForExpirationTimer) => {
|
|
|
|
maxWidth="700px"
|
|
|
|
maxWidth="700px"
|
|
|
|
margin="10px auto"
|
|
|
|
margin="10px auto"
|
|
|
|
padding="5px 10px"
|
|
|
|
padding="5px 10px"
|
|
|
|
|
|
|
|
style={{ textAlign: 'center' }}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<SessionIcon iconType="stopwatch" iconColor="inherit" iconSize="medium" />
|
|
|
|
<SessionIcon iconType="stopwatch" iconColor="inherit" iconSize="medium" />
|
|
|
|
<SpacerSM />
|
|
|
|
<SpacerSM />
|
|
|
|
<Text text={textToRender} />
|
|
|
|
<Text text={textToRender} />
|
|
|
|
</StyledTimerNotification>
|
|
|
|
</Flex>
|
|
|
|
</ExpirableReadableMessage>
|
|
|
|
</ExpirableReadableMessage>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
|
|
|