fix: use a constant for the fallback timestamp

pull/3146/head
yougotwill 8 months ago
parent 2b448dc596
commit 6b627254c0

@ -3,6 +3,7 @@ import moment from 'moment';
import useInterval from 'react-use/lib/useInterval'; import useInterval from 'react-use/lib/useInterval';
import useUpdate from 'react-use/lib/useUpdate'; import useUpdate from 'react-use/lib/useUpdate';
import styled from 'styled-components'; import styled from 'styled-components';
import { CONVERSATION } from '../../session/constants';
type Props = { type Props = {
timestamp?: number; timestamp?: number;
@ -42,8 +43,7 @@ export const Timestamp = (props: Props) => {
let title = ''; let title = '';
let dateString = ''; let dateString = '';
// NOTE some existing groups might not have a joinedAtSeconds and we use a fallback value of 1 in order to poll and show up in the conversations list if (timestamp !== CONVERSATION.LAST_JOINED_FALLBACK_TIMESTAMP) {
if (timestamp !== 1) {
const momentValue = moment(timestamp); const momentValue = moment(timestamp);
// this is a hack to make the date string shorter, looks like moment does not have a localized way of doing this for now. // this is a hack to make the date string shorter, looks like moment does not have a localized way of doing this for now.

@ -52,6 +52,7 @@ import { HexKeyPair } from './keypairs';
import { queueAllCachedFromSource } from './receiver'; import { queueAllCachedFromSource } from './receiver';
import { EnvelopePlus } from './types'; import { EnvelopePlus } from './types';
import { ConversationTypeEnum, CONVERSATION_PRIORITIES } from '../models/types'; import { ConversationTypeEnum, CONVERSATION_PRIORITIES } from '../models/types';
import { CONVERSATION } from '../session/constants';
function groupByNamespace(incomingConfigs: Array<RetrieveMessageItemWithNamespace>) { function groupByNamespace(incomingConfigs: Array<RetrieveMessageItemWithNamespace>) {
const groupedByVariant: Map< const groupedByVariant: Map<
@ -603,8 +604,9 @@ async function handleLegacyGroupUpdate(latestEnvelopeTimestamp: number) {
const members = fromWrapper.members.map(m => m.pubkeyHex); const members = fromWrapper.members.map(m => m.pubkeyHex);
const admins = fromWrapper.members.filter(m => m.isAdmin).map(m => m.pubkeyHex); const admins = fromWrapper.members.filter(m => m.isAdmin).map(m => m.pubkeyHex);
// NOTE some existing groups might not have a joinedAtSeconds and we need a truthy fallback value in order to poll and show up in the conversations list const creationTimestamp = fromWrapper.joinedAtSeconds
const creationTimestamp = fromWrapper.joinedAtSeconds ? fromWrapper.joinedAtSeconds * 1000 : 1; ? fromWrapper.joinedAtSeconds * 1000
: CONVERSATION.LAST_JOINED_FALLBACK_TIMESTAMP;
// then for all the existing legacy group in the wrapper, we need to override the field of what we have in the DB with what is in the wrapper // then for all the existing legacy group in the wrapper, we need to override the field of what we have in the DB with what is in the wrapper
// We only set group admins on group creation // We only set group admins on group creation

@ -62,6 +62,8 @@ export const CONVERSATION = {
MAX_VOICE_MESSAGE_DURATION: 300, MAX_VOICE_MESSAGE_DURATION: 300,
MAX_CONVO_UNREAD_COUNT: 999, MAX_CONVO_UNREAD_COUNT: 999,
MAX_GLOBAL_UNREAD_COUNT: 99, // the global one does not look good with 4 digits (999+) so we have a smaller one for it MAX_GLOBAL_UNREAD_COUNT: 99, // the global one does not look good with 4 digits (999+) so we have a smaller one for it
/** NOTE some existing groups might not have joinedAtSeconds and we need a fallback value that is not falsy in order to poll and show up in the conversations list */
LAST_JOINED_FALLBACK_TIMESTAMP: 1,
} as const; } as const;
/** /**

Loading…
Cancel
Save