haveno-ui/packages/renderer/src/components/organisms/MyWalletTransactions/MyWalletTransactions.tsx
Ahmed Bouhuolia b40fe25930
feat: my wallet
- transaction list
- primary address and qr code
- generate sub address
- send and receive xmr

---

Reviewed-by: @schowdhuri
2022-05-28 02:04:22 +05:30

50 lines
1.7 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.
// =============================================================================
import type { FC } from "react";
import { useMemo } from "react";
import { Group, Loader } from "@mantine/core";
import { useXmrTxs } from "@hooks/haveno/useXmrTxs";
import { WalletTransactions } from "@molecules/WalletTransactions";
import { transfromXmrTxs } from "./_utils";
export function MyWalletTransactionsTable() {
const { data: xmrTxs } = useXmrTxs();
const transactions = useMemo(() => transfromXmrTxs(xmrTxs || []), [xmrTxs]);
return xmrTxs ? <WalletTransactions data={transactions} /> : null;
}
const MyWalletTransactionsBoot: FC = ({ children }) => {
const { isLoading: isXmrTxsLoading } = useXmrTxs();
return isXmrTxsLoading ? (
<Group position="center" pt="lg" pb="lg">
<Loader color="gray" size="sm" />
</Group>
) : (
<>{children}</>
);
};
export function MyWalletTransactions() {
return (
<MyWalletTransactionsBoot>
<MyWalletTransactionsTable />
</MyWalletTransactionsBoot>
);
}