Safely generate cached conversation props on startup
This commit is contained in:
parent
b32445cd20
commit
67058e27bb
5 changed files with 40 additions and 13 deletions
|
@ -91,10 +91,6 @@ export class ConversationController {
|
|||
// This function takes null just fine. Backbone typings are too restrictive.
|
||||
return this._conversations.get(id as string);
|
||||
}
|
||||
// Needed for some model setup which happens during the initial fetch() call below
|
||||
getUnsafe(id: string) {
|
||||
return this._conversations.get(id);
|
||||
}
|
||||
dangerouslyCreateAndAdd(attributes: Partial<ConversationModelType>) {
|
||||
return this._conversations.add(attributes);
|
||||
}
|
||||
|
@ -617,6 +613,9 @@ export class ConversationController {
|
|||
this._initialFetchComplete = false;
|
||||
this._conversations.reset([]);
|
||||
}
|
||||
isFetchComplete() {
|
||||
return this._initialFetchComplete;
|
||||
}
|
||||
async load() {
|
||||
window.log.info('ConversationController: starting initial fetch');
|
||||
|
||||
|
@ -636,6 +635,12 @@ export class ConversationController {
|
|||
|
||||
await Promise.all(
|
||||
this._conversations.map(async conversation => {
|
||||
// This call is important to allow Conversation models not to generate their
|
||||
// cached props on initial construction if we're in the middle of the load
|
||||
// from the database. Then we come back to the models when it is safe and
|
||||
// generate those props.
|
||||
conversation.generateProps();
|
||||
|
||||
if (!conversation.get('lastMessage')) {
|
||||
await conversation.updateLastMessage();
|
||||
}
|
||||
|
|
1
ts/model-types.d.ts
vendored
1
ts/model-types.d.ts
vendored
|
@ -85,6 +85,7 @@ declare class ConversationModelType extends Backbone.Model<
|
|||
cleanup(): Promise<void>;
|
||||
disableProfileSharing(): void;
|
||||
dropProfileKey(): Promise<void>;
|
||||
generateProps(): void;
|
||||
getAccepted(): boolean;
|
||||
getAvatarPath(): string | undefined;
|
||||
getColor(): ColorType | undefined;
|
||||
|
|
|
@ -203,11 +203,27 @@
|
|||
"reasonCategory": "usageTrusted",
|
||||
"updated": "2020-03-25T15:45:04.024Z"
|
||||
},
|
||||
{
|
||||
"rule": "jQuery-load(",
|
||||
"path": "js/models/conversations.js",
|
||||
"line": " // but the full ConversationController.load() sequence isn't complete. So, we",
|
||||
"lineNumber": 448,
|
||||
"reasonCategory": "exampleCode",
|
||||
"updated": "2020-08-11T21:28:50.868Z"
|
||||
},
|
||||
{
|
||||
"rule": "jQuery-load(",
|
||||
"path": "js/models/conversations.js",
|
||||
"line": " // don't cache props on create, but we do later when load() calls generateProps()",
|
||||
"lineNumber": 449,
|
||||
"reasonCategory": "exampleCode",
|
||||
"updated": "2020-08-11T21:28:50.868Z"
|
||||
},
|
||||
{
|
||||
"rule": "jQuery-wrap(",
|
||||
"path": "js/models/conversations.js",
|
||||
"line": " await wrap(",
|
||||
"lineNumber": 665,
|
||||
"lineNumber": 673,
|
||||
"reasonCategory": "falseMatch",
|
||||
"updated": "2020-06-09T20:26:46.515Z"
|
||||
},
|
||||
|
@ -12067,4 +12083,4 @@
|
|||
"reasonCategory": "falseMatch",
|
||||
"updated": "2020-04-05T23:45:16.746Z"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue