Compare commits
4 Commits
master
...
spencer/ac
Author | SHA1 | Date | |
---|---|---|---|
|
d2cdc53d91 | ||
|
ab4cb59975 | ||
|
b6e81bcbe1 | ||
|
1411116d24 |
@ -37,7 +37,8 @@
|
|||||||
"scripts": [
|
"scripts": [
|
||||||
"node_modules/jquery/dist/jquery.js",
|
"node_modules/jquery/dist/jquery.js",
|
||||||
"node_modules/bootstrap/dist/js/bootstrap.js"
|
"node_modules/bootstrap/dist/js/bootstrap.js"
|
||||||
]
|
],
|
||||||
|
"webWorkerTsConfig": "tsconfig.worker.json"
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
@ -126,7 +127,8 @@
|
|||||||
"tsConfig": [
|
"tsConfig": [
|
||||||
"tsconfig.app.json",
|
"tsconfig.app.json",
|
||||||
"tsconfig.spec.json",
|
"tsconfig.spec.json",
|
||||||
"e2e/tsconfig.json"
|
"e2e/tsconfig.json",
|
||||||
|
"tsconfig.worker.json"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"**/node_modules/**"
|
"**/node_modules/**"
|
||||||
|
@ -200,11 +200,32 @@ export class UserService {
|
|||||||
async loadAccounts(limit: number = 100, offset: number = 0): Promise<void> {
|
async loadAccounts(limit: number = 100, offset: number = 0): Promise<void> {
|
||||||
try {
|
try {
|
||||||
const accountRegistry = await RegistryService.getAccountRegistry();
|
const accountRegistry = await RegistryService.getAccountRegistry();
|
||||||
const accountAddresses: Array<string> = await accountRegistry.last(limit);
|
const accountAddresses: Array<string> = await accountRegistry.last(offset + limit);
|
||||||
this.loggingService.sendInfoLevelMessage(accountAddresses);
|
this.loggingService.sendInfoLevelMessage(accountAddresses);
|
||||||
|
if (typeof Worker !== 'undefined') {
|
||||||
|
const worker = new Worker('@app/_workers/fetch-accounts.worker', { type: 'module' });
|
||||||
|
worker.onmessage = ({ data }) => {
|
||||||
|
this.tokenService.load.subscribe(async (status: boolean) => {
|
||||||
|
if (status) {
|
||||||
|
data.balance = await this.tokenService.getTokenBalance(
|
||||||
|
data.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.addAccount(data, limit);
|
||||||
|
};
|
||||||
|
worker.postMessage({
|
||||||
|
addresses: accountAddresses.slice(offset, offset + limit),
|
||||||
|
url: environment.cicMetaUrl,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.loggingService.sendInfoLevelMessage(
|
||||||
|
'Web workers are not supported in this environment'
|
||||||
|
);
|
||||||
for (const accountAddress of accountAddresses.slice(offset, offset + limit)) {
|
for (const accountAddress of accountAddresses.slice(offset, offset + limit)) {
|
||||||
await this.getAccountByAddress(accountAddress, limit);
|
await this.getAccountByAddress(accountAddress, limit);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.loggingService.sendErrorLevelMessage('Unable to load accounts.', 'user.service', error);
|
this.loggingService.sendErrorLevelMessage('Unable to load accounts.', 'user.service', error);
|
||||||
throw error;
|
throw error;
|
||||||
|
50
src/app/_workers/fetch-accounts.worker.ts
Normal file
50
src/app/_workers/fetch-accounts.worker.ts
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
/// <reference lib="webworker" />
|
||||||
|
|
||||||
|
import { Envelope, Syncable, User } from 'cic-client-meta';
|
||||||
|
import { add0x } from '@src/assets/js/ethtx/dist/hex';
|
||||||
|
import { personValidation, vcardValidation } from '@app/_helpers/schema-validation';
|
||||||
|
import * as vCard from 'vcard-parser';
|
||||||
|
|
||||||
|
const headers = {
|
||||||
|
'x-cic-automerge': 'client',
|
||||||
|
};
|
||||||
|
const options = {
|
||||||
|
headers,
|
||||||
|
};
|
||||||
|
|
||||||
|
addEventListener('message', async ({ data }) => {
|
||||||
|
if (data.addresses instanceof Array) {
|
||||||
|
for (const accountAddress of data.addresses) {
|
||||||
|
try {
|
||||||
|
const account = await getAccountByAddress(accountAddress, data.url);
|
||||||
|
postMessage(account);
|
||||||
|
} catch (error) {
|
||||||
|
throw Error(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
async function getAccountByAddress(accountAddress: string, metaUrl: string): Promise<any> {
|
||||||
|
const userKey = await User.toKey(add0x(accountAddress));
|
||||||
|
const response = await fetch(`${metaUrl}/${userKey}`, options)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.ok) {
|
||||||
|
return res.json();
|
||||||
|
} else {
|
||||||
|
return Promise.reject({
|
||||||
|
status: res.status,
|
||||||
|
statusText: res.statusText,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
throw Error(`${error.status}: ${error.statusText}`);
|
||||||
|
});
|
||||||
|
const account: Syncable = Envelope.fromJSON(JSON.stringify(response)).unwrap();
|
||||||
|
const accountInfo = account.m.data;
|
||||||
|
await personValidation(accountInfo);
|
||||||
|
accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));
|
||||||
|
await vcardValidation(accountInfo.vcard);
|
||||||
|
return accountInfo;
|
||||||
|
}
|
15
tsconfig.worker.json
Normal file
15
tsconfig.worker.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "./out-tsc/worker",
|
||||||
|
"lib": [
|
||||||
|
"es2018",
|
||||||
|
"webworker"
|
||||||
|
],
|
||||||
|
"types": []
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"src/**/*.worker.ts"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user