Skip to content

Commit 908215f

Browse files
authored
refactor: use internalAccount instead of account address for granular updates (#4693)
This PR replaces the parameter for `UserStorageController` `saveInternalAccountToUserStorage` from an account address to an `InternalAccount`. This helps because we're listening to `AccountsController` events and they are passing an `InternalAccount` as their return value. By using this return value directly, we remove some unnecessary logic & queries. ## Explanation ## References ## Changelog ### `@metamask/profile-sync-controller` - **CHANGED**: use `InternalAccount` instead of account address for `saveInternalAccountToUserStorage` parameter ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate
1 parent 6f716b6 commit 908215f

File tree

2 files changed

+21
-36
lines changed

2 files changed

+21
-36
lines changed

packages/profile-sync-controller/src/controllers/user-storage/UserStorageController.test.ts

+6-7
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
11041104
});
11051105

11061106
await controller.saveInternalAccountToUserStorage(
1107-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1107+
MOCK_INTERNAL_ACCOUNTS.ONE[0] as InternalAccount,
11081108
);
11091109

11101110
expect(
@@ -1132,7 +1132,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
11321132
});
11331133

11341134
await controller.saveInternalAccountToUserStorage(
1135-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1135+
MOCK_INTERNAL_ACCOUNTS.ONE[0] as InternalAccount,
11361136
);
11371137

11381138
expect(mockAPI.isDone()).toBe(false);
@@ -1158,7 +1158,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
11581158
});
11591159

11601160
await controller.saveInternalAccountToUserStorage(
1161-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1161+
MOCK_INTERNAL_ACCOUNTS.ONE[0] as InternalAccount,
11621162
);
11631163

11641164
expect(mockAPI.isDone()).toBe(true);
@@ -1186,7 +1186,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
11861186

11871187
await expect(
11881188
controller.saveInternalAccountToUserStorage(
1189-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1189+
MOCK_INTERNAL_ACCOUNTS.ONE[0] as InternalAccount,
11901190
),
11911191
).rejects.toThrow(expect.any(Error));
11921192
});
@@ -1212,7 +1212,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
12121212
);
12131213

12141214
expect(mockSaveInternalAccountToUserStorage).toHaveBeenCalledWith(
1215-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1215+
MOCK_INTERNAL_ACCOUNTS.ONE[0],
12161216
);
12171217
});
12181218

@@ -1237,7 +1237,7 @@ describe('user-storage/user-storage-controller - saveInternalAccountToUserStorag
12371237
);
12381238

12391239
expect(mockSaveInternalAccountToUserStorage).toHaveBeenCalledWith(
1240-
MOCK_INTERNAL_ACCOUNTS.ONE[0].address,
1240+
MOCK_INTERNAL_ACCOUNTS.ONE[0],
12411241
);
12421242
});
12431243
});
@@ -1274,7 +1274,6 @@ function mockUserStorageMessenger(options?: {
12741274
'NotificationServicesController:selectIsNotificationServicesEnabled',
12751275
'AccountsController:listAccounts',
12761276
'AccountsController:updateAccountMetadata',
1277-
'AccountsController:getAccountByAddress',
12781277
'KeyringController:addNewAccount',
12791278
],
12801279
allowedEvents: [

packages/profile-sync-controller/src/controllers/user-storage/UserStorageController.ts

+15-29
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type {
22
AccountsControllerListAccountsAction,
33
AccountsControllerUpdateAccountMetadataAction,
4-
AccountsControllerGetAccountByAddressAction,
54
AccountsControllerAccountRenamedEvent,
65
AccountsControllerAccountAddedEvent,
76
} from '@metamask/accounts-controller';
@@ -176,7 +175,6 @@ export type AllowedActions =
176175
| NotificationServicesControllerSelectIsNotificationServicesEnabled
177176
// Account syncing
178177
| AccountsControllerListAccountsAction
179-
| AccountsControllerGetAccountByAddressAction
180178
| AccountsControllerUpdateAccountMetadataAction
181179
| KeyringControllerAddNewAccountAction;
182180

@@ -285,7 +283,7 @@ export default class UserStorageController extends BaseController<
285283
if (this.#accounts.isAccountSyncingInProgress) {
286284
return;
287285
}
288-
await this.saveInternalAccountToUserStorage(account.address);
286+
await this.saveInternalAccountToUserStorage(account);
289287
},
290288
);
291289

@@ -296,16 +294,10 @@ export default class UserStorageController extends BaseController<
296294
if (this.#accounts.isAccountSyncingInProgress) {
297295
return;
298296
}
299-
await this.saveInternalAccountToUserStorage(account.address);
297+
await this.saveInternalAccountToUserStorage(account);
300298
},
301299
);
302300
},
303-
getInternalAccountByAddress: async (address: string) => {
304-
return this.messagingSystem.call(
305-
'AccountsController:getAccountByAddress',
306-
address,
307-
);
308-
},
309301
getInternalAccountsList: async (): Promise<InternalAccount[]> => {
310302
return this.messagingSystem.call('AccountsController:listAccounts');
311303
},
@@ -320,21 +312,15 @@ export default class UserStorageController extends BaseController<
320312
null
321313
);
322314
},
323-
saveInternalAccountToUserStorage: async (address: string) => {
324-
const internalAccount = await this.#accounts.getInternalAccountByAddress(
325-
address,
326-
);
327-
328-
if (!internalAccount) {
329-
return;
330-
}
331-
315+
saveInternalAccountToUserStorage: async (
316+
internalAccount: InternalAccount,
317+
) => {
332318
// Map the internal account to the user storage account schema
333319
const mappedAccount =
334320
mapInternalAccountToUserStorageAccount(internalAccount);
335321

336322
await this.performSetStorage(
337-
`accounts.${address}`,
323+
`accounts.${internalAccount.address}`,
338324
JSON.stringify(mappedAccount),
339325
);
340326
},
@@ -782,7 +768,7 @@ export default class UserStorageController extends BaseController<
782768

783769
if (!userStorageAccount) {
784770
await this.#accounts.saveInternalAccountToUserStorage(
785-
internalAccount.address,
771+
internalAccount,
786772
);
787773
continue;
788774
}
@@ -812,7 +798,7 @@ export default class UserStorageController extends BaseController<
812798
// Internal account has custom name but user storage account has default name
813799
if (isUserStorageAccountNameDefault) {
814800
await this.#accounts.saveInternalAccountToUserStorage(
815-
internalAccount.address,
801+
internalAccount,
816802
);
817803
continue;
818804
}
@@ -829,7 +815,7 @@ export default class UserStorageController extends BaseController<
829815

830816
if (isInternalAccountNameNewer) {
831817
await this.#accounts.saveInternalAccountToUserStorage(
832-
internalAccount.address,
818+
internalAccount,
833819
);
834820
continue;
835821
}
@@ -847,7 +833,7 @@ export default class UserStorageController extends BaseController<
847833
continue;
848834
} else if (internalAccount.metadata.nameLastUpdatedAt !== undefined) {
849835
await this.#accounts.saveInternalAccountToUserStorage(
850-
internalAccount.address,
836+
internalAccount,
851837
);
852838
continue;
853839
}
@@ -864,17 +850,17 @@ export default class UserStorageController extends BaseController<
864850

865851
/**
866852
* Saves an individual internal account to the user storage.
867-
* @param address - The address of the internal account to save
853+
* @param internalAccount - The internal account to save
868854
*/
869-
async saveInternalAccountToUserStorage(address: string): Promise<void> {
855+
async saveInternalAccountToUserStorage(
856+
internalAccount: InternalAccount,
857+
): Promise<void> {
870858
if (!this.#accounts.canSync()) {
871859
return;
872860
}
873861

874862
try {
875-
this.#assertProfileSyncingEnabled();
876-
877-
await this.#accounts.saveInternalAccountToUserStorage(address);
863+
await this.#accounts.saveInternalAccountToUserStorage(internalAccount);
878864
} catch (e) {
879865
const errorMessage = e instanceof Error ? e.message : JSON.stringify(e);
880866
throw new Error(

0 commit comments

Comments
 (0)