Conversation: Prevent getProps errors on initial link
Co-authored-by: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com>
This commit is contained in:
parent
e4a632f601
commit
f226822dff
8 changed files with 51 additions and 36 deletions
|
@ -11,6 +11,7 @@ import { DataMessageClass } from './textsecure.d';
|
||||||
import { MessageAttributesType } from './model-types.d';
|
import { MessageAttributesType } from './model-types.d';
|
||||||
import { WhatIsThis } from './window.d';
|
import { WhatIsThis } from './window.d';
|
||||||
import { getTitleBarVisibility, TitleBarVisibility } from './types/Settings';
|
import { getTitleBarVisibility, TitleBarVisibility } from './types/Settings';
|
||||||
|
import { DEFAULT_CONVERSATION_COLOR } from './types/Colors';
|
||||||
import { ChallengeHandler } from './challenge';
|
import { ChallengeHandler } from './challenge';
|
||||||
import { isWindowDragElement } from './util/isWindowDragElement';
|
import { isWindowDragElement } from './util/isWindowDragElement';
|
||||||
import { assert } from './util/assert';
|
import { assert } from './util/assert';
|
||||||
|
@ -83,9 +84,10 @@ export async function startApp(): Promise<void> {
|
||||||
|
|
||||||
window.storage.onready(() => {
|
window.storage.onready(() => {
|
||||||
if (!window.storage.get('defaultConversationColor')) {
|
if (!window.storage.get('defaultConversationColor')) {
|
||||||
window.storage.put('defaultConversationColor', {
|
window.storage.put(
|
||||||
color: 'ultramarine',
|
'defaultConversationColor',
|
||||||
});
|
DEFAULT_CONVERSATION_COLOR
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
3
ts/model-types.d.ts
vendored
3
ts/model-types.d.ts
vendored
|
@ -26,6 +26,7 @@ import { ConversationModel } from './models/conversations';
|
||||||
import { ProfileNameChangeType } from './util/getStringForProfileChange';
|
import { ProfileNameChangeType } from './util/getStringForProfileChange';
|
||||||
import { CapabilitiesType } from './textsecure/WebAPI';
|
import { CapabilitiesType } from './textsecure/WebAPI';
|
||||||
import { GroupNameCollisionsWithIdsByTitle } from './util/groupMemberNameCollisions';
|
import { GroupNameCollisionsWithIdsByTitle } from './util/groupMemberNameCollisions';
|
||||||
|
import { ConversationColorType } from './types/Colors';
|
||||||
|
|
||||||
export type WhatIsThis = any;
|
export type WhatIsThis = any;
|
||||||
|
|
||||||
|
@ -197,7 +198,7 @@ export type ConversationAttributesType = {
|
||||||
addedBy?: string;
|
addedBy?: string;
|
||||||
capabilities?: CapabilitiesType;
|
capabilities?: CapabilitiesType;
|
||||||
color?: string;
|
color?: string;
|
||||||
conversationColor?: string;
|
conversationColor?: ConversationColorType;
|
||||||
customColor?: CustomColorType;
|
customColor?: CustomColorType;
|
||||||
customColorId?: string;
|
customColorId?: string;
|
||||||
discoveredUnregisteredAt?: number;
|
discoveredUnregisteredAt?: number;
|
||||||
|
|
|
@ -21,6 +21,7 @@ import {
|
||||||
AvatarColors,
|
AvatarColors,
|
||||||
ConversationColorType,
|
ConversationColorType,
|
||||||
CustomColorType,
|
CustomColorType,
|
||||||
|
DEFAULT_CONVERSATION_COLOR,
|
||||||
} from '../types/Colors';
|
} from '../types/Colors';
|
||||||
import { MessageModel } from './messages';
|
import { MessageModel } from './messages';
|
||||||
import { isMuted } from '../util/isMuted';
|
import { isMuted } from '../util/isMuted';
|
||||||
|
@ -1358,23 +1359,26 @@ export class ConversationModel extends window.Backbone
|
||||||
// We don't want to crash or have an infinite loop if we loop back into this function
|
// We don't want to crash or have an infinite loop if we loop back into this function
|
||||||
// again. We'll log a warning and returned old cached props or throw an error.
|
// again. We'll log a warning and returned old cached props or throw an error.
|
||||||
this.format = () => {
|
this.format = () => {
|
||||||
const { stack } = new Error('for stack');
|
|
||||||
window.log.warn(
|
|
||||||
`Conversation.format()/${this.idForLogging()} reentrant call! ${stack}`
|
|
||||||
);
|
|
||||||
if (!this.oldCachedProps) {
|
if (!this.oldCachedProps) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Conversation.format()/${this.idForLogging()} reentrant call, no old cached props!`
|
`Conversation.format()/${this.idForLogging()} reentrant call, no old cached props!`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const { stack } = new Error('for stack');
|
||||||
|
window.log.warn(
|
||||||
|
`Conversation.format()/${this.idForLogging()} reentrant call! ${stack}`
|
||||||
|
);
|
||||||
|
|
||||||
return this.oldCachedProps;
|
return this.oldCachedProps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
this.cachedProps = this.getProps();
|
this.cachedProps = this.getProps();
|
||||||
|
|
||||||
this.format = oldFormat;
|
|
||||||
|
|
||||||
return this.cachedProps;
|
return this.cachedProps;
|
||||||
|
} finally {
|
||||||
|
this.format = oldFormat;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Note: this should never be called directly. Use conversation.format() instead, which
|
// Note: this should never be called directly. Use conversation.format() instead, which
|
||||||
|
@ -4866,7 +4870,8 @@ export class ConversationModel extends window.Backbone
|
||||||
|
|
||||||
getConversationColor(): ConversationColorType {
|
getConversationColor(): ConversationColorType {
|
||||||
const defaultConversationColor = window.storage.get(
|
const defaultConversationColor = window.storage.get(
|
||||||
'defaultConversationColor'
|
'defaultConversationColor',
|
||||||
|
DEFAULT_CONVERSATION_COLOR
|
||||||
);
|
);
|
||||||
|
|
||||||
return this.get('conversationColor') || defaultConversationColor.color;
|
return this.get('conversationColor') || defaultConversationColor.color;
|
||||||
|
@ -4877,7 +4882,8 @@ export class ConversationModel extends window.Backbone
|
||||||
customColorId?: string;
|
customColorId?: string;
|
||||||
} {
|
} {
|
||||||
const defaultConversationColor = window.storage.get(
|
const defaultConversationColor = window.storage.get(
|
||||||
'defaultConversationColor'
|
'defaultConversationColor',
|
||||||
|
DEFAULT_CONVERSATION_COLOR
|
||||||
);
|
);
|
||||||
|
|
||||||
if (this.getConversationColor() !== 'custom') {
|
if (this.getConversationColor() !== 'custom') {
|
||||||
|
|
|
@ -26,6 +26,8 @@ import {
|
||||||
AvatarColorType,
|
AvatarColorType,
|
||||||
ConversationColorType,
|
ConversationColorType,
|
||||||
CustomColorType,
|
CustomColorType,
|
||||||
|
DefaultConversationColorType,
|
||||||
|
DEFAULT_CONVERSATION_COLOR,
|
||||||
} from '../../types/Colors';
|
} from '../../types/Colors';
|
||||||
import { ConversationAttributesType } from '../../model-types.d';
|
import { ConversationAttributesType } from '../../model-types.d';
|
||||||
import { BodyRangeType } from '../../types/Util';
|
import { BodyRangeType } from '../../types/Util';
|
||||||
|
@ -394,13 +396,7 @@ type CustomColorRemovedActionType = {
|
||||||
type: typeof CUSTOM_COLOR_REMOVED;
|
type: typeof CUSTOM_COLOR_REMOVED;
|
||||||
payload: {
|
payload: {
|
||||||
colorId: string;
|
colorId: string;
|
||||||
defaultConversationColor: {
|
defaultConversationColor: DefaultConversationColorType;
|
||||||
color: ConversationColorType;
|
|
||||||
customColorData?: {
|
|
||||||
id: string;
|
|
||||||
value: CustomColorType;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
type SetPreJoinConversationActionType = {
|
type SetPreJoinConversationActionType = {
|
||||||
|
@ -765,7 +761,8 @@ function removeCustomColorOnConversations(
|
||||||
}
|
}
|
||||||
|
|
||||||
const defaultConversationColor = window.storage.get(
|
const defaultConversationColor = window.storage.get(
|
||||||
'defaultConversationColor'
|
'defaultConversationColor',
|
||||||
|
DEFAULT_CONVERSATION_COLOR
|
||||||
);
|
);
|
||||||
|
|
||||||
dispatch({
|
dispatch({
|
||||||
|
@ -800,7 +797,8 @@ function resetAllChatColors(): ThunkAction<
|
||||||
});
|
});
|
||||||
|
|
||||||
const defaultConversationColor = window.storage.get(
|
const defaultConversationColor = window.storage.get(
|
||||||
'defaultConversationColor'
|
'defaultConversationColor',
|
||||||
|
DEFAULT_CONVERSATION_COLOR
|
||||||
);
|
);
|
||||||
|
|
||||||
dispatch({
|
dispatch({
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2019-2020 Signal Messenger, LLC
|
// Copyright 2019-2021 Signal Messenger, LLC
|
||||||
// SPDX-License-Identifier: AGPL-3.0-only
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
import { omit } from 'lodash';
|
import { omit } from 'lodash';
|
||||||
|
@ -11,6 +11,7 @@ import {
|
||||||
ConversationColors,
|
ConversationColors,
|
||||||
ConversationColorType,
|
ConversationColorType,
|
||||||
CustomColorType,
|
CustomColorType,
|
||||||
|
DefaultConversationColorType,
|
||||||
} from '../../types/Colors';
|
} from '../../types/Colors';
|
||||||
import { reloadSelectedConversation } from '../../shims/reloadSelectedConversation';
|
import { reloadSelectedConversation } from '../../shims/reloadSelectedConversation';
|
||||||
|
|
||||||
|
@ -22,13 +23,7 @@ export type ItemsStateType = {
|
||||||
readonly [key: string]: unknown;
|
readonly [key: string]: unknown;
|
||||||
|
|
||||||
// This property should always be set and this is ensured in background.ts
|
// This property should always be set and this is ensured in background.ts
|
||||||
readonly defaultConversationColor?: {
|
readonly defaultConversationColor?: DefaultConversationColorType;
|
||||||
color: ConversationColorType;
|
|
||||||
customColorData?: {
|
|
||||||
id: string;
|
|
||||||
value: CustomColorType;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
readonly customColors?: {
|
readonly customColors?: {
|
||||||
readonly colors: Record<string, CustomColorType>;
|
readonly colors: Record<string, CustomColorType>;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2019-2020 Signal Messenger, LLC
|
// Copyright 2019-2021 Signal Messenger, LLC
|
||||||
// SPDX-License-Identifier: AGPL-3.0-only
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
import { createSelector } from 'reselect';
|
import { createSelector } from 'reselect';
|
||||||
|
@ -8,9 +8,9 @@ import { ITEM_NAME as UNIVERSAL_EXPIRE_TIMER_ITEM } from '../../util/universalEx
|
||||||
import { StateType } from '../reducer';
|
import { StateType } from '../reducer';
|
||||||
import { ItemsStateType } from '../ducks/items';
|
import { ItemsStateType } from '../ducks/items';
|
||||||
import {
|
import {
|
||||||
ConversationColors,
|
|
||||||
ConversationColorType,
|
ConversationColorType,
|
||||||
CustomColorType,
|
CustomColorType,
|
||||||
|
DEFAULT_CONVERSATION_COLOR,
|
||||||
} from '../../types/Colors';
|
} from '../../types/Colors';
|
||||||
|
|
||||||
export const getItems = (state: StateType): ItemsStateType => state.items;
|
export const getItems = (state: StateType): ItemsStateType => state.items;
|
||||||
|
@ -41,5 +41,5 @@ export const getDefaultConversationColor = createSelector(
|
||||||
id: string;
|
id: string;
|
||||||
value: CustomColorType;
|
value: CustomColorType;
|
||||||
};
|
};
|
||||||
} => state.defaultConversationColor ?? { color: ConversationColors[0] }
|
} => state.defaultConversationColor ?? DEFAULT_CONVERSATION_COLOR
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2020 Signal Messenger, LLC
|
// Copyright 2020-2021 Signal Messenger, LLC
|
||||||
// SPDX-License-Identifier: AGPL-3.0-only
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
export const AvatarColors = [
|
export const AvatarColors = [
|
||||||
|
@ -93,3 +93,15 @@ export type AvatarColorType = typeof AvatarColors[number];
|
||||||
export type ConversationColorType =
|
export type ConversationColorType =
|
||||||
| typeof ConversationColors[number]
|
| typeof ConversationColors[number]
|
||||||
| 'custom';
|
| 'custom';
|
||||||
|
|
||||||
|
export type DefaultConversationColorType = {
|
||||||
|
color: ConversationColorType;
|
||||||
|
customColorData?: {
|
||||||
|
id: string;
|
||||||
|
value: CustomColorType;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const DEFAULT_CONVERSATION_COLOR: DefaultConversationColorType = {
|
||||||
|
color: 'ultramarine',
|
||||||
|
};
|
||||||
|
|
1
ts/window.d.ts
vendored
1
ts/window.d.ts
vendored
|
@ -109,6 +109,7 @@ import { SignalProtocolStore } from './SignalProtocolStore';
|
||||||
import { StartupQueue } from './util/StartupQueue';
|
import { StartupQueue } from './util/StartupQueue';
|
||||||
import * as synchronousCrypto from './util/synchronousCrypto';
|
import * as synchronousCrypto from './util/synchronousCrypto';
|
||||||
import SyncRequest from './textsecure/SyncRequest';
|
import SyncRequest from './textsecure/SyncRequest';
|
||||||
|
import { ConversationColorType, CustomColorType } from './types/Colors';
|
||||||
|
|
||||||
export { Long } from 'long';
|
export { Long } from 'long';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue