mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
0658cb539a
the issue is that when you start the app, a closed group active at is maybe a day old. so you poll for this pubkey. if the call is a success, all good, you get the latest messages and update the active_at. but if the first call fails (even after retrying), this group will be marked as inactive and will be polled only a tiny little bit until we get new messages. So this commit make sure that we poll more often for closed groups which are considered inactive
75 lines
1.6 KiB
TypeScript
75 lines
1.6 KiB
TypeScript
// tslint:disable: binary-expression-operand-order
|
|
|
|
const seconds = 1000;
|
|
const minutes = seconds * 60;
|
|
const hours = minutes * 60;
|
|
const days = hours * 24;
|
|
|
|
export const DURATION = {
|
|
SECONDS: seconds, // in ms
|
|
MINUTES: minutes, // in ms
|
|
HOURS: hours, // in ms
|
|
DAYS: days, // in ms
|
|
};
|
|
|
|
export const TTL_DEFAULT = {
|
|
TYPING_MESSAGE: 20 * DURATION.SECONDS,
|
|
TTL_MAX: 14 * DURATION.DAYS,
|
|
};
|
|
|
|
export const SWARM_POLLING_TIMEOUT = {
|
|
ACTIVE: DURATION.SECONDS * 5,
|
|
MEDIUM_ACTIVE: DURATION.SECONDS * 60,
|
|
INACTIVE: DURATION.SECONDS * 120,
|
|
};
|
|
|
|
export const PROTOCOLS = {
|
|
// tslint:disable-next-line: no-http-string
|
|
HTTP: 'http:',
|
|
HTTPS: 'https:',
|
|
};
|
|
|
|
// User Interface
|
|
export const CONVERSATION = {
|
|
DEFAULT_MEDIA_FETCH_COUNT: 50,
|
|
DEFAULT_DOCUMENTS_FETCH_COUNT: 100,
|
|
DEFAULT_MESSAGE_FETCH_COUNT: 30,
|
|
MAX_MESSAGE_FETCH_COUNT: 1000,
|
|
// Maximum voice message duraton of 5 minutes
|
|
// which equates to 1.97 MB
|
|
MAX_VOICE_MESSAGE_DURATION: 300,
|
|
// Max attachment size: 6 MB
|
|
MAX_ATTACHMENT_FILESIZE_BYTES: 6 * 1000 * 1000,
|
|
};
|
|
|
|
export const VALIDATION = {
|
|
MAX_GROUP_NAME_LENGTH: 64,
|
|
CLOSED_GROUP_SIZE_LIMIT: 100,
|
|
};
|
|
|
|
export const UI = {
|
|
// Pixels (scroll) from the top of the top of message container
|
|
// at which more messages should be loaded
|
|
MESSAGE_CONTAINER_BUFFER_OFFSET_PX: 1,
|
|
|
|
COLORS: {
|
|
// COMMON
|
|
WHITE: '#FFFFFF',
|
|
WHITE_PALE: '#AFAFAF',
|
|
GREEN: '#00F782',
|
|
|
|
// CAUTION
|
|
WARNING: '#FFC02E',
|
|
|
|
// SEMANTIC COLORS
|
|
DANGER: '#FF453A',
|
|
DANGER_ALT: '#FF4538',
|
|
},
|
|
|
|
SPACING: {
|
|
marginXs: '5px',
|
|
marginSm: '10px',
|
|
marginMd: '15px',
|
|
marginLg: '20px',
|
|
},
|
|
};
|