2016-02-19 04:23:00 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-02-19 04:23:00 +01:00
|
|
|
*/
|
|
|
|
|
2017-05-28 16:27:34 +02:00
|
|
|
/**
|
|
|
|
* Interface to the wallet through WebExtension messaging.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2020-08-13 20:43:51 +02:00
|
|
|
import {
|
2021-09-13 20:32:06 +02:00
|
|
|
AcceptExchangeTosRequest,
|
2021-11-19 18:51:27 +01:00
|
|
|
AcceptManualWithdrawalResult, AcceptTipRequest, AcceptWithdrawalResponse,
|
2021-12-23 19:17:36 +01:00
|
|
|
AddExchangeRequest, AmountJson, AmountString, ApplyRefundResponse, BalancesResponse, ConfirmPayResult,
|
|
|
|
CoreApiResponse, CreateDepositGroupRequest, CreateDepositGroupResponse, DeleteTransactionRequest, ExchangesListRespose,
|
2021-11-19 18:51:27 +01:00
|
|
|
GetExchangeTosResult, GetExchangeWithdrawalInfo,
|
2021-12-23 19:17:36 +01:00
|
|
|
GetFeeForDepositRequest,
|
|
|
|
GetWithdrawalDetailsForUriRequest, KnownBankAccounts, NotificationType, PreparePayResult, PrepareTipRequest,
|
2021-11-19 18:51:27 +01:00
|
|
|
PrepareTipResult, RetryTransactionRequest,
|
|
|
|
SetWalletDeviceIdRequest, TransactionsResponse, WalletDiagnostics, WithdrawUriInfoResponse
|
2021-03-27 14:35:58 +01:00
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
2021-11-19 18:51:27 +01:00
|
|
|
AddBackupProviderRequest, BackupInfo, OperationFailedError,
|
2021-11-29 17:33:01 +01:00
|
|
|
PendingOperationsResponse,
|
2021-11-19 18:51:27 +01:00
|
|
|
RemoveBackupProviderRequest
|
2021-11-15 15:18:58 +01:00
|
|
|
} from "@gnu-taler/taler-wallet-core";
|
2021-12-23 19:17:36 +01:00
|
|
|
import { DepositFee } from "@gnu-taler/taler-wallet-core/src/operations/deposits";
|
2021-09-08 20:30:32 +02:00
|
|
|
import { ExchangeWithdrawDetails } from "@gnu-taler/taler-wallet-core/src/operations/withdraw";
|
2022-01-04 21:06:17 +01:00
|
|
|
import { MessageFromBackend } from "./wxBackend";
|
2020-08-03 09:30:48 +02:00
|
|
|
|
|
|
|
export interface ExtendedPermissionsResponse {
|
|
|
|
newValue: boolean;
|
|
|
|
}
|
|
|
|
|
2017-06-05 03:20:28 +02:00
|
|
|
/**
|
|
|
|
* Response with information about available version upgrades.
|
|
|
|
*/
|
|
|
|
export interface UpgradeResponse {
|
|
|
|
/**
|
|
|
|
* Is a reset required because of a new DB version
|
2021-04-27 23:42:25 +02:00
|
|
|
* that can't be automatically upgraded?
|
2017-06-05 03:20:28 +02:00
|
|
|
*/
|
|
|
|
dbResetRequired: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Current database version.
|
|
|
|
*/
|
|
|
|
currentDbVersion: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Old db version (if applicable).
|
|
|
|
*/
|
|
|
|
oldDbVersion: string;
|
|
|
|
}
|
|
|
|
|
2020-08-13 20:43:51 +02:00
|
|
|
async function callBackend(operation: string, payload: any): Promise<any> {
|
2020-07-28 10:52:35 +02:00
|
|
|
return new Promise<any>((resolve, reject) => {
|
2021-11-19 18:51:27 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-08-13 20:43:51 +02:00
|
|
|
chrome.runtime.sendMessage({ operation, payload, id: "(none)" }, (resp) => {
|
2021-11-19 18:51:27 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2019-12-28 16:21:21 +01:00
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
console.log("Error calling backend");
|
2020-03-11 20:14:28 +01:00
|
|
|
reject(
|
|
|
|
new Error(
|
2022-01-04 21:06:17 +01:00
|
|
|
`Error contacting backend: ${chrome.runtime.lastError.message}`,
|
2020-03-11 20:14:28 +01:00
|
|
|
),
|
|
|
|
);
|
2019-12-28 16:21:21 +01:00
|
|
|
}
|
2020-08-13 20:43:51 +02:00
|
|
|
console.log("got response", resp);
|
|
|
|
const r = resp as CoreApiResponse;
|
|
|
|
if (r.type === "error") {
|
|
|
|
reject(new OperationFailedError(r.error));
|
|
|
|
return;
|
2017-04-28 23:28:27 +02:00
|
|
|
}
|
2020-08-13 20:43:51 +02:00
|
|
|
resolve(r.result);
|
2016-10-12 02:55:53 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-28 16:27:34 +02:00
|
|
|
/**
|
|
|
|
* Start refreshing a coin.
|
|
|
|
*/
|
2017-05-30 18:33:28 +02:00
|
|
|
export function refresh(coinPub: string): Promise<void> {
|
|
|
|
return callBackend("refresh-coin", { coinPub });
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|
2017-05-01 04:33:47 +02:00
|
|
|
|
2017-05-29 16:27:53 +02:00
|
|
|
/**
|
2017-05-31 16:04:14 +02:00
|
|
|
* Pay for a proposal.
|
2017-05-29 16:27:53 +02:00
|
|
|
*/
|
2020-03-11 20:14:28 +01:00
|
|
|
export function confirmPay(
|
|
|
|
proposalId: string,
|
|
|
|
sessionId: string | undefined,
|
2020-08-12 09:11:00 +02:00
|
|
|
): Promise<ConfirmPayResult> {
|
2020-08-19 16:09:21 +02:00
|
|
|
return callBackend("confirmPay", { proposalId, sessionId });
|
2017-05-30 18:33:28 +02:00
|
|
|
}
|
|
|
|
|
2017-06-05 03:20:28 +02:00
|
|
|
/**
|
|
|
|
* Check upgrade information
|
|
|
|
*/
|
|
|
|
export function checkUpgrade(): Promise<UpgradeResponse> {
|
2020-03-11 20:14:28 +01:00
|
|
|
return callBackend("check-upgrade", {});
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset database
|
|
|
|
*/
|
|
|
|
export function resetDb(): Promise<void> {
|
2020-03-11 20:14:28 +01:00
|
|
|
return callBackend("reset-db", {});
|
2017-06-05 03:20:28 +02:00
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
|
2021-12-23 19:17:36 +01:00
|
|
|
export function getFeeForDeposit(depositPaytoUri: string, amount: AmountString): Promise<DepositFee> {
|
|
|
|
return callBackend("getFeeForDeposit", {
|
|
|
|
depositPaytoUri, amount
|
|
|
|
} as GetFeeForDepositRequest);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createDepositGroup(depositPaytoUri: string, amount: AmountString): Promise<CreateDepositGroupResponse> {
|
|
|
|
return callBackend("createDepositGroup", {
|
|
|
|
depositPaytoUri, amount
|
|
|
|
} as CreateDepositGroupRequest);
|
|
|
|
}
|
|
|
|
|
2017-08-14 04:16:12 +02:00
|
|
|
/**
|
|
|
|
* Get balances for all currencies/exchanges.
|
|
|
|
*/
|
2020-08-12 09:11:00 +02:00
|
|
|
export function getBalance(): Promise<BalancesResponse> {
|
2020-08-13 20:43:51 +02:00
|
|
|
return callBackend("getBalances", {});
|
2017-08-14 04:16:12 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 08:29:06 +02:00
|
|
|
/**
|
2021-06-30 23:24:08 +02:00
|
|
|
* Retrieve the full event history for this wallet.
|
2020-08-20 08:29:06 +02:00
|
|
|
*/
|
|
|
|
export function getTransactions(): Promise<TransactionsResponse> {
|
|
|
|
return callBackend("getTransactions", {});
|
|
|
|
}
|
|
|
|
|
2021-07-01 05:35:41 +02:00
|
|
|
interface CurrencyInfo {
|
|
|
|
name: string;
|
|
|
|
baseUrl: string;
|
|
|
|
pub: string;
|
|
|
|
}
|
|
|
|
interface ListOfKnownCurrencies {
|
2021-11-15 15:18:58 +01:00
|
|
|
auditors: CurrencyInfo[];
|
|
|
|
exchanges: CurrencyInfo[];
|
2021-07-01 05:35:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of currencies from known auditors and exchanges
|
|
|
|
*/
|
|
|
|
export function listKnownCurrencies(): Promise<ListOfKnownCurrencies> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("listCurrencies", {}).then((result) => {
|
|
|
|
console.log("result list", result);
|
|
|
|
const auditors = result.trustedAuditors.map(
|
|
|
|
(a: Record<string, string>) => ({
|
|
|
|
name: a.currency,
|
|
|
|
baseUrl: a.auditorBaseUrl,
|
|
|
|
pub: a.auditorPub,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
const exchanges = result.trustedExchanges.map(
|
|
|
|
(a: Record<string, string>) => ({
|
|
|
|
name: a.currency,
|
|
|
|
baseUrl: a.exchangeBaseUrl,
|
|
|
|
pub: a.exchangeMasterPub,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
return { auditors, exchanges };
|
2021-07-01 05:35:41 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-11 20:59:55 +02:00
|
|
|
export function listExchanges(): Promise<ExchangesListRespose> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("listExchanges", {});
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2021-12-23 19:17:36 +01:00
|
|
|
export function listKnownBankAccounts(currency?: string): Promise<KnownBankAccounts> {
|
|
|
|
return callBackend("listKnownBankAccounts", { currency });
|
|
|
|
}
|
2021-10-11 20:59:55 +02:00
|
|
|
|
2021-06-30 23:24:08 +02:00
|
|
|
/**
|
2021-07-01 05:35:41 +02:00
|
|
|
* Get information about the current state of wallet backups.
|
2021-06-30 23:24:08 +02:00
|
|
|
*/
|
2021-07-01 16:33:26 +02:00
|
|
|
export function getBackupInfo(): Promise<BackupInfo> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("getBackupInfo", {});
|
2021-06-30 23:24:08 +02:00
|
|
|
}
|
2021-07-01 16:33:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a backup provider and activate it
|
|
|
|
*/
|
2021-11-15 15:18:58 +01:00
|
|
|
export function addBackupProvider(
|
|
|
|
backupProviderBaseUrl: string,
|
|
|
|
name: string,
|
|
|
|
): Promise<void> {
|
2021-07-01 16:33:26 +02:00
|
|
|
return callBackend("addBackupProvider", {
|
2021-11-15 15:18:58 +01:00
|
|
|
backupProviderBaseUrl,
|
|
|
|
activate: true,
|
|
|
|
name,
|
|
|
|
} as AddBackupProviderRequest);
|
2021-07-01 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
2021-07-06 17:44:25 +02:00
|
|
|
export function setWalletDeviceId(walletDeviceId: string): Promise<void> {
|
|
|
|
return callBackend("setWalletDeviceId", {
|
2021-11-15 15:18:58 +01:00
|
|
|
walletDeviceId,
|
|
|
|
} as SetWalletDeviceIdRequest);
|
2021-07-06 17:44:25 +02:00
|
|
|
}
|
|
|
|
|
2021-07-01 16:33:26 +02:00
|
|
|
export function syncAllProviders(): Promise<void> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("runBackupCycle", {});
|
2021-07-01 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
2021-07-08 20:23:53 +02:00
|
|
|
export function syncOneProvider(url: string): Promise<void> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("runBackupCycle", { providers: [url] });
|
2021-07-08 20:23:53 +02:00
|
|
|
}
|
|
|
|
export function removeProvider(url: string): Promise<void> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("removeBackupProvider", {
|
|
|
|
provider: url,
|
|
|
|
} as RemoveBackupProviderRequest);
|
2021-07-08 20:23:53 +02:00
|
|
|
}
|
|
|
|
export function extendedProvider(url: string): Promise<void> {
|
2021-11-15 15:18:58 +01:00
|
|
|
return callBackend("extendBackupProvider", { provider: url });
|
2021-07-08 20:23:53 +02:00
|
|
|
}
|
2021-07-01 16:33:26 +02:00
|
|
|
|
2021-06-03 06:07:29 +02:00
|
|
|
/**
|
2021-06-28 16:38:29 +02:00
|
|
|
* Retry a transaction
|
2021-11-15 15:18:58 +01:00
|
|
|
* @param transactionId
|
|
|
|
* @returns
|
2021-06-28 16:38:29 +02:00
|
|
|
*/
|
2021-07-01 05:35:41 +02:00
|
|
|
export function retryTransaction(transactionId: string): Promise<void> {
|
2021-06-28 16:38:29 +02:00
|
|
|
return callBackend("retryTransaction", {
|
2021-11-15 15:18:58 +01:00
|
|
|
transactionId,
|
2021-06-28 16:38:29 +02:00
|
|
|
} as RetryTransactionRequest);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Permanently delete a transaction from the transaction list
|
2021-06-03 06:07:29 +02:00
|
|
|
*/
|
|
|
|
export function deleteTransaction(transactionId: string): Promise<void> {
|
|
|
|
return callBackend("deleteTransaction", {
|
2021-11-15 15:18:58 +01:00
|
|
|
transactionId,
|
2021-06-03 06:07:29 +02:00
|
|
|
} as DeleteTransactionRequest);
|
|
|
|
}
|
|
|
|
|
2018-01-22 01:12:08 +01:00
|
|
|
/**
|
|
|
|
* Download a refund and accept it.
|
|
|
|
*/
|
2020-05-15 09:23:35 +02:00
|
|
|
export function applyRefund(
|
2020-08-21 17:26:25 +02:00
|
|
|
talerRefundUri: string,
|
2020-09-09 09:15:49 +02:00
|
|
|
): Promise<ApplyRefundResponse> {
|
2020-08-21 17:26:25 +02:00
|
|
|
return callBackend("applyRefund", { talerRefundUri });
|
2018-09-20 02:56:13 +02:00
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get details about a pay operation.
|
|
|
|
*/
|
2020-08-12 09:11:00 +02:00
|
|
|
export function preparePay(talerPayUri: string): Promise<PreparePayResult> {
|
2020-08-19 16:09:21 +02:00
|
|
|
return callBackend("preparePay", { talerPayUri });
|
2019-08-29 23:12:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get details about a withdraw operation.
|
|
|
|
*/
|
2020-03-11 20:14:28 +01:00
|
|
|
export function acceptWithdrawal(
|
|
|
|
talerWithdrawUri: string,
|
|
|
|
selectedExchange: string,
|
2020-08-12 09:11:00 +02:00
|
|
|
): Promise<AcceptWithdrawalResponse> {
|
2020-08-19 16:09:21 +02:00
|
|
|
return callBackend("acceptBankIntegratedWithdrawal", {
|
2020-03-11 20:14:28 +01:00
|
|
|
talerWithdrawUri,
|
2020-08-19 16:09:21 +02:00
|
|
|
exchangeBaseUrl: selectedExchange,
|
2020-03-11 20:14:28 +01:00
|
|
|
});
|
2019-08-30 17:27:59 +02:00
|
|
|
}
|
2019-09-05 16:10:53 +02:00
|
|
|
|
2021-09-20 19:05:40 +02:00
|
|
|
/**
|
|
|
|
* Create a reserve into the exchange that expect the amount indicated
|
2021-11-15 15:18:58 +01:00
|
|
|
* @param exchangeBaseUrl
|
|
|
|
* @param amount
|
|
|
|
* @returns
|
2021-09-20 19:05:40 +02:00
|
|
|
*/
|
|
|
|
export function acceptManualWithdrawal(
|
|
|
|
exchangeBaseUrl: string,
|
|
|
|
amount: string,
|
|
|
|
): Promise<AcceptManualWithdrawalResult> {
|
|
|
|
return callBackend("acceptManualWithdrawal", {
|
2021-11-15 15:18:58 +01:00
|
|
|
amount,
|
|
|
|
exchangeBaseUrl,
|
2021-09-20 19:05:40 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:32:06 +02:00
|
|
|
export function setExchangeTosAccepted(
|
|
|
|
exchangeBaseUrl: string,
|
2021-11-15 15:18:58 +01:00
|
|
|
etag: string | undefined,
|
2021-09-13 20:32:06 +02:00
|
|
|
): Promise<void> {
|
|
|
|
return callBackend("setExchangeTosAccepted", {
|
2021-11-15 15:18:58 +01:00
|
|
|
exchangeBaseUrl,
|
|
|
|
etag,
|
|
|
|
} as AcceptExchangeTosRequest);
|
2021-09-13 20:32:06 +02:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:10:53 +02:00
|
|
|
/**
|
|
|
|
* Get diagnostics information
|
|
|
|
*/
|
2020-08-12 09:11:00 +02:00
|
|
|
export function getDiagnostics(): Promise<WalletDiagnostics> {
|
2020-08-21 17:26:25 +02:00
|
|
|
return callBackend("wxGetDiagnostics", {});
|
2019-09-05 16:10:53 +02:00
|
|
|
}
|
2020-05-01 10:46:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get diagnostics information
|
|
|
|
*/
|
2020-05-15 09:23:35 +02:00
|
|
|
export function setExtendedPermissions(
|
|
|
|
value: boolean,
|
|
|
|
): Promise<ExtendedPermissionsResponse> {
|
2020-08-21 17:26:25 +02:00
|
|
|
return callBackend("wxSetExtendedPermissions", { value });
|
2020-05-01 10:46:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get diagnostics information
|
|
|
|
*/
|
|
|
|
export function getExtendedPermissions(): Promise<ExtendedPermissionsResponse> {
|
2020-08-21 17:26:25 +02:00
|
|
|
return callBackend("wxGetExtendedPermissions", {});
|
2020-05-01 10:46:56 +02:00
|
|
|
}
|
2020-05-04 15:22:54 +02:00
|
|
|
|
2020-08-13 20:43:51 +02:00
|
|
|
/**
|
|
|
|
* Get diagnostics information
|
|
|
|
*/
|
|
|
|
export function getWithdrawalDetailsForUri(
|
|
|
|
req: GetWithdrawalDetailsForUriRequest,
|
|
|
|
): Promise<WithdrawUriInfoResponse> {
|
|
|
|
return callBackend("getWithdrawalDetailsForUri", req);
|
|
|
|
}
|
|
|
|
|
2021-09-08 20:30:32 +02:00
|
|
|
/**
|
|
|
|
* Get diagnostics information
|
|
|
|
*/
|
2021-09-13 20:32:06 +02:00
|
|
|
export function getExchangeWithdrawalInfo(
|
2021-09-08 20:30:32 +02:00
|
|
|
req: GetExchangeWithdrawalInfo,
|
|
|
|
): Promise<ExchangeWithdrawDetails> {
|
|
|
|
return callBackend("getExchangeWithdrawalInfo", req);
|
|
|
|
}
|
2021-10-13 19:26:18 +02:00
|
|
|
export function getExchangeTos(
|
|
|
|
exchangeBaseUrl: string,
|
|
|
|
acceptedFormat: string[],
|
|
|
|
): Promise<GetExchangeTosResult> {
|
|
|
|
return callBackend("getExchangeTos", {
|
2021-11-15 15:18:58 +01:00
|
|
|
exchangeBaseUrl,
|
|
|
|
acceptedFormat,
|
2021-10-13 19:26:18 +02:00
|
|
|
});
|
|
|
|
}
|
2021-10-13 11:40:16 +02:00
|
|
|
|
2021-11-29 17:33:01 +01:00
|
|
|
export function getPendingOperations(): Promise<PendingOperationsResponse> {
|
|
|
|
return callBackend("getPendingOperations", {});
|
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function addExchange(req: AddExchangeRequest): Promise<void> {
|
2021-10-13 11:40:16 +02:00
|
|
|
return callBackend("addExchange", req);
|
|
|
|
}
|
|
|
|
|
2020-11-18 12:44:06 +01:00
|
|
|
export function prepareTip(req: PrepareTipRequest): Promise<PrepareTipResult> {
|
|
|
|
return callBackend("prepareTip", req);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function acceptTip(req: AcceptTipRequest): Promise<void> {
|
|
|
|
return callBackend("acceptTip", req);
|
|
|
|
}
|
|
|
|
|
2021-12-01 18:57:37 +01:00
|
|
|
export function exportDB(): Promise<any> {
|
|
|
|
return callBackend("exportDb", {});
|
|
|
|
}
|
|
|
|
|
2021-11-24 12:57:26 +01:00
|
|
|
export function onUpdateNotification(messageTypes: Array<NotificationType>, doCallback: () => void): () => void {
|
2021-11-19 18:51:27 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-05-04 15:22:54 +02:00
|
|
|
const port = chrome.runtime.connect({ name: "notifications" });
|
2021-11-19 18:51:27 +01:00
|
|
|
const listener = (message: MessageFromBackend): void => {
|
2021-11-24 12:57:26 +01:00
|
|
|
const shouldNotify = messageTypes.includes(message.type)
|
|
|
|
console.log("Notification arrived, should notify?", shouldNotify, message.type, messageTypes)
|
|
|
|
if (shouldNotify) {
|
2021-11-19 18:51:27 +01:00
|
|
|
doCallback();
|
|
|
|
}
|
2020-05-04 15:22:54 +02:00
|
|
|
};
|
|
|
|
port.onMessage.addListener(listener);
|
|
|
|
return () => {
|
|
|
|
port.onMessage.removeListener(listener);
|
|
|
|
};
|
2020-05-15 09:23:35 +02:00
|
|
|
}
|