mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2025-06-19 20:04:20 -04:00

- create account - login - change password - haveno hooks - electron-store hooks - haveno-ts --- Authored-by: schowdhuri Reviewed-by: localredhead
57 lines
2 KiB
TypeScript
57 lines
2 KiB
TypeScript
// =============================================================================
|
|
// Copyright 2022 Haveno
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// =============================================================================
|
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import type { FC } from "react";
|
|
import type { PaymentAccount } from "haveno-ts";
|
|
import { CurrencyLogos } from "@molecules/PaymentMethodCard/_constants";
|
|
import type { SupportedCurrencies } from "@molecules/PaymentMethodCard/_types";
|
|
import { ReactComponent as UnknownLogo } from "@assets/unknown.svg";
|
|
|
|
export function getPaymentAccountName(account: PaymentAccount): string {
|
|
const name = account.getAccountName();
|
|
try {
|
|
return name.split(" ")[0];
|
|
} catch (_ex) {
|
|
return name;
|
|
}
|
|
}
|
|
|
|
export function getPaymentAccountCode(account: PaymentAccount): string {
|
|
return (
|
|
account.getSelectedTradeCurrency()?.getCode() ??
|
|
account.getPaymentMethod()?.getId() ??
|
|
getPaymentAccountName(account)
|
|
);
|
|
}
|
|
|
|
export function getPaymentAccountNumber(account: PaymentAccount): string {
|
|
// TODO: how to get account id/number for other payment accounts?
|
|
return (
|
|
account
|
|
.getPaymentAccountPayload()
|
|
?.getCryptoCurrencyAccountPayload()
|
|
?.getAddress() ?? ""
|
|
);
|
|
}
|
|
|
|
export function getPaymentAccountLogo(account: PaymentAccount): FC<any> {
|
|
return (
|
|
CurrencyLogos[
|
|
getPaymentAccountCode(account) as unknown as SupportedCurrencies
|
|
]?.Logo ?? UnknownLogo
|
|
);
|
|
}
|