Newer
Older
CrypticOreWallet / src / pages / wallets / info / WalletDescAdvancedInfo.tsx
@BuildTools BuildTools on 9 Jun 2021 1 KB im gay
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of TenebraWeb 2 under AGPL-3.0.
// Full details: https://github.com/tmpim/TenebraWeb2/blob/master/LICENSE.txt
import { Descriptions } from "antd";

import { useTranslation } from "react-i18next";

import { OptionalField } from "@comp/OptionalField";
import { DecryptReveal } from "./DecryptReveal";
import { BooleanText } from "./BooleanText";

import { WalletDescProps } from "./WalletInfoModal";

export function WalletDescAdvancedInfo({ wallet, descProps }: WalletDescProps): JSX.Element {
  const { t } = useTranslation();

  return <Descriptions title={t("myWallets.info.titleAdvancedInfo")} {...descProps}>
    {/* Wallet Encrypted Password */}
    <Descriptions.Item label={t("myWallets.info.encPassword")}>
      <OptionalField value={
        <DecryptReveal copyable value={wallet.encPassword} />
      }/>
    </Descriptions.Item>

    {/* Wallet Encrypted Private key */}
    <Descriptions.Item label={t("myWallets.info.encPrivatekey")}>
      <OptionalField value={
        <DecryptReveal copyable value={wallet.encPrivatekey} />
      }/>
    </Descriptions.Item>

    {/* Wallet Saved */}
    <Descriptions.Item label={t("myWallets.info.saved")}>
      <BooleanText value={!wallet.dontSave} />
    </Descriptions.Item>
  </Descriptions>;
}