data extraction notification on a line rather than a column

pull/1993/head
Audric Ackermann 3 years ago
parent cca1b4dabe
commit 25c7a2febd
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -35,6 +35,15 @@ const SpacerStyled = styled.div<SpacerProps>`
: props.size === 'sm'
? 'var(--margins-sm)'
: 'var(--margins-xs)'};
width: ${props =>
props.size === 'lg'
? 'var(--margins-lg)'
: props.size === 'md'
? 'var(--margins-md)'
: props.size === 'sm'
? 'var(--margins-sm)'
: 'var(--margins-xs)'};
`;
const Spacer = (props: SpacerProps) => {

@ -3,7 +3,7 @@ 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 { SpacerSM, Text } from '../basic/Text';
import { ReadableMessage } from './ReadableMessage';
export const DataExtractionNotification = (props: PropsForDataExtractionNotification) => {
@ -25,13 +25,14 @@ export const DataExtractionNotification = (props: PropsForDataExtractionNotifica
>
<Flex
container={true}
flexDirection="column"
flexDirection="row"
alignItems="center"
justifyContent="center"
margin={'var(--margins-sm)'}
id={`msg-${messageId}`}
>
<SessionIcon iconType="upload" iconSize={'small'} iconRotation={180} />
<SpacerXS />
<SpacerSM />
<Text text={contentText} subtle={true} />
</Flex>
</ReadableMessage>

@ -224,13 +224,11 @@ const doAppStartUp = () => {
// trigger a sync message if needed for our other devices
void triggerSyncIfNeeded();
void getSwarmPollingInstance().start();
void loadDefaultRooms();
debounce(triggerAvatarReUploadIfNeeded, 200);
// TODO: Investigate the case where we reconnect
void getSwarmPollingInstance().start();
};
const CallContainer = () => {

@ -12,6 +12,7 @@ import { uploadFileOpenGroupV2 } from '../../opengroup/opengroupV2/OpenGroupAPIV
import { addAttachmentPadding } from '../crypto/BufferPadding';
import { RawPreview, RawQuote } from './Attachments';
import _ from 'lodash';
import { AttachmentsV2Utils } from '.';
interface UploadParamsV2 {
attachment: Attachment;
@ -60,7 +61,7 @@ export async function uploadAttachmentsV2(
openGroup: OpenGroupRequestCommonType
): Promise<Array<AttachmentPointerWithUrl>> {
const promises = (attachments || []).map(async attachment =>
exports.uploadV2({
AttachmentsV2Utils.uploadV2({
attachment,
openGroup,
})
@ -80,7 +81,7 @@ export async function uploadLinkPreviewsV2(
return undefined;
}
const image = await exports.uploadV2({
const image = await AttachmentsV2Utils.uploadV2({
attachment: preview.image,
openGroup,
});
@ -105,10 +106,10 @@ export async function uploadQuoteThumbnailsV2(
const promises = (quote.attachments ?? []).map(async attachment => {
let thumbnail: QuotedAttachment | undefined;
if (attachment.thumbnail) {
thumbnail = await exports.uploadV2({
thumbnail = (await AttachmentsV2Utils.uploadV2({
attachment: attachment.thumbnail,
openGroup,
});
})) as any;
}
return {
...attachment,

Loading…
Cancel
Save