-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add FT and NFT approvals component. (#173)
- Loading branch information
1 parent
3f5ed9e
commit 0fba643
Showing
7 changed files
with
475 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/components/Molecules/Address/NFTApprovalList/NFTApprovalList.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { type Meta, type StoryObj } from "@storybook/react"; | ||
import { NFTApprovalList as NFTApprovalListComponent } from "./NFTApprovalList"; | ||
|
||
type Story = StoryObj<typeof NFTApprovalListComponent>; | ||
|
||
const meta: Meta<typeof NFTApprovalListComponent> = { | ||
title: "Molecules/Address/Approval/NFT Approval List", | ||
component: NFTApprovalListComponent, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const NFTApprovalList: Story = { | ||
args: { | ||
chain_name: "eth-mainnet", | ||
address: "demo.eth", | ||
}, | ||
}; |
188 changes: 188 additions & 0 deletions
188
src/components/Molecules/Address/NFTApprovalList/NFTApprovalList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
import { type Option, None, Some } from "@/utils/option"; | ||
import type { NftApprovalsItem } from "@covalenthq/client-sdk"; | ||
import { useEffect, useState } from "react"; | ||
import { type NFTApprovalListProps } from "@/utils/types/molecules.types"; | ||
import { useGoldRush } from "@/utils/store"; | ||
import { type CovalentAPIError } from "@/utils/types/shared.types"; | ||
import { defaultErrorMessage } from "@/utils/constants/shared.constants"; | ||
import { TableHeaderSorting, TableList } from "@/components/Shared"; | ||
import type { ColumnDef } from "@tanstack/react-table"; | ||
import { Address } from "@/components/Atoms"; | ||
import { Button } from "@/components/ui/button"; | ||
|
||
export const NFTApprovalList: React.FC<NFTApprovalListProps> = ({ | ||
chain_name, | ||
address, | ||
on_revoke_approval, | ||
}) => { | ||
const { covalentClient } = useGoldRush(); | ||
|
||
const [maybeResult, setMaybeResult] = | ||
useState<Option<NftApprovalsItem[] | null>>(None); | ||
const [errorMessage, setErrorMessage] = useState<string | null>(null); | ||
|
||
useEffect(() => { | ||
(async () => { | ||
setMaybeResult(None); | ||
setErrorMessage(null); | ||
try { | ||
const { data, ...error } = | ||
await covalentClient.SecurityService.getNftApprovals( | ||
chain_name, | ||
address.trim() | ||
); | ||
if (error.error) { | ||
throw error; | ||
} | ||
setMaybeResult(new Some(data.items)); | ||
} catch (error: CovalentAPIError | any) { | ||
setErrorMessage(error?.error_message ?? defaultErrorMessage); | ||
setMaybeResult(new Some(null)); | ||
console.error(error); | ||
} | ||
})(); | ||
}, [chain_name, address]); | ||
|
||
const columns: ColumnDef<NftApprovalsItem>[] = [ | ||
{ | ||
id: "token_details", | ||
accessorKey: "token_details", | ||
header: ({ column }) => ( | ||
<TableHeaderSorting<NftApprovalsItem> | ||
align="left" | ||
header={"Token"} | ||
column={column} | ||
/> | ||
), | ||
cell: ({ row }) => { | ||
return ( | ||
<div className="flex flex-col"> | ||
<div className="flex items-center gap-1"> | ||
{row.original.contract_ticker_symbol || ( | ||
<Address | ||
address={row.original.contract_address} | ||
/> | ||
)} | ||
</div> | ||
<p className="text-xs opacity-80"> | ||
<Address address={row.original.contract_address} /> | ||
</p> | ||
</div> | ||
); | ||
}, | ||
}, | ||
{ | ||
id: "token_balance", | ||
accessorKey: "token_balance", | ||
header: ({ column }) => ( | ||
<TableHeaderSorting<NftApprovalsItem> | ||
align="left" | ||
header={"Wallet Balance"} | ||
column={column} | ||
/> | ||
), | ||
cell: ({ row }) => row.original.token_balances.length, | ||
}, | ||
{ | ||
id: "token_id", | ||
accessorKey: "token_id", | ||
header: ({ column }) => ( | ||
<TableHeaderSorting<NftApprovalsItem> | ||
align="left" | ||
header={"Token ID"} | ||
column={column} | ||
/> | ||
), | ||
cell: ({ row }) => { | ||
const token_ids = row.original.token_balances.map( | ||
(balance) => balance.token_id | ||
); | ||
return ( | ||
<p className="max-w-40 break-all">{token_ids.join(", ")}</p> | ||
); | ||
}, | ||
}, | ||
{ | ||
id: "spender_address_label", | ||
accessorKey: "spender_address_label", | ||
header: ({ column }) => ( | ||
<TableHeaderSorting<NftApprovalsItem> | ||
align="left" | ||
header={"Spender"} | ||
column={column} | ||
/> | ||
), | ||
cell: ({ row }) => { | ||
return ( | ||
<p className="flex flex-col"> | ||
{row.original.spenders.map((spender) => | ||
spender.spender_address_label ? ( | ||
spender.spender_address_label | ||
) : ( | ||
<Address | ||
address={spender.spender_address} | ||
key={spender.spender_address} | ||
/> | ||
) | ||
)} | ||
</p> | ||
); | ||
}, | ||
}, | ||
{ | ||
id: "risk_factor", | ||
accessorKey: "risk_factor", | ||
header: ({ column }) => ( | ||
<TableHeaderSorting<NftApprovalsItem> | ||
align="left" | ||
header={"Risk Factor"} | ||
column={column} | ||
/> | ||
), | ||
cell: ({ row }) => { | ||
return ( | ||
<span | ||
className={`${ | ||
row.original.spenders[0].allowance === "Unlimited" | ||
? "bg-red-500" | ||
: "bg-green-500" | ||
} rounded px-2 py-1 text-white`} | ||
> | ||
{row.original.spenders[0].allowance === "Unlimited" | ||
? "High" | ||
: "Low"} | ||
</span> | ||
); | ||
}, | ||
}, | ||
]; | ||
|
||
if (on_revoke_approval) { | ||
columns.push({ | ||
id: "revoke", | ||
accessorKey: "revoke", | ||
header: () => <div className="w-12"></div>, | ||
cell: ({ row }) => { | ||
return ( | ||
<Button onClick={() => on_revoke_approval(row.original)}> | ||
Revoke | ||
</Button> | ||
); | ||
}, | ||
}); | ||
} | ||
|
||
return ( | ||
<TableList<NftApprovalsItem> | ||
columns={columns} | ||
errorMessage={errorMessage} | ||
maybeData={maybeResult} | ||
sorting_state={[ | ||
{ | ||
id: "value_at_risk", | ||
desc: true, | ||
}, | ||
]} | ||
/> | ||
); | ||
}; |
18 changes: 18 additions & 0 deletions
18
src/components/Molecules/Address/TokenApprovalList/TokenApprovalList.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { type Meta, type StoryObj } from "@storybook/react"; | ||
import { TokenApprovalList as TokenApprovalListComponent } from "./TokenApprovalList"; | ||
|
||
type Story = StoryObj<typeof TokenApprovalListComponent>; | ||
|
||
const meta: Meta<typeof TokenApprovalListComponent> = { | ||
title: "Molecules/Address/Approval/Token Approval List", | ||
component: TokenApprovalListComponent, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const TokenApprovalList: Story = { | ||
args: { | ||
chain_name: "eth-mainnet", | ||
address: "demo.eth", | ||
}, | ||
}; |
Oops, something went wrong.