Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/holders of xudt #383

Merged
merged 3 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,10 @@
"repeat_inscription_symbol": "This inscription is a duplicate with an earlier release of the same symbol."
},
"xudt": {
"holder_allocation": "Holder Allocation",
"holder_allocation_description": "There are {{ckb}} CKB Holders and {{btc}} BTC holders of current asset.",
"lock_hash": "Lock Hash",
"count": "Count",
"xudt": "xUDT",
"xudts": "xUDTs",
"name": "Name",
Expand Down
4 changes: 4 additions & 0 deletions src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,10 @@
"repeat_inscription_symbol": "此铭文与早期发布的铭文同名"
},
"xudt": {
"holder_allocation": "地址分布",
"holder_allocation_description": "当前地址有{{ckb}} CKB地址持有人及{{btc}} BTC 地址持有人",
"lock_hash": "Lock Hash",
"count": "Count",
"xudt": "xUDT",
"xudts": "xUDTs",
"name": "名称",
Expand Down
8 changes: 8 additions & 0 deletions src/models/Xudt/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ export interface XUDT {
typeScript: Script
udtType: 'xudt'
xudtTags?: string[]
holderAllocation: {
ckbHoldersCount: string
btcHoldersCount: string
lockHoderAmount: {
lock: string
holderAmount: string
}[]
}
iconFile: string
operatorWebsite: string
email: string
Expand Down
109 changes: 109 additions & 0 deletions src/pages/Xudt/HolderAllocation.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
@import '../../styles/variables.module';

.holderAllocationContainer {
background-color: #fff;
margin: 15% auto;
padding: 20px 24px 20px 40px;
width: 497px;
border-radius: 4px;
display: flex;
justify-content: space-between;

@media (max-width: $mobileBreakPoint) {
width: 90%;
margin-top: 20vh;
padding: 24px 16px;
}

.closeIcon {
img {
width: 16px;
height: 16px;
}
}

.holderAllocationContent {
background-color: #fff;
border-radius: 4px;
display: flex;
flex-direction: column;
align-items: center;
gap: 24px;

@media (max-width: $mobileBreakPoint) {
align-items: flex-start;

p {
line-height: 24px;
}
}

h2 {
color: #333;
font-size: 16px;
font-style: normal;
font-weight: 700;
margin: 0;
}

p {
margin: 0;
color: #333;
font-size: 14px;
font-style: normal;
font-weight: 400;
width: 100%;
word-wrap: break-word;
}

.table {
border-radius: 4px;
border: 1px solid #e5e5e5;
padding: 1px;

table {
thead {
background: #fafafa;

tr {
div {
color: #666;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}
}
}

tbody {
tr {
div {
color: #333;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
}
}

thead,
tbody {
tr {
border-radius: 4px;

div {
font-size: 14px;
padding: 12px 16px;
}
}
}

width: 312px;
background: #fff;
}
}
}
}
69 changes: 69 additions & 0 deletions src/pages/Xudt/HolderAllocation.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import { useTranslation } from 'react-i18next'
import { MouseEventHandler } from 'react'
import styles from './HolderAllocation.module.scss'
import { localeNumberString } from '../../utils/number'
import CloseIcon from '../../assets/modal_close.png'
import SimpleButton from '../../components/SimpleButton'

const HolderAllocation = ({
ckbHolderAmount,
btcHolderAmount,
lockHoderAmount,
onClose,
}: {
ckbHolderAmount: string
btcHolderAmount: string
lockHoderAmount?: {
lock: string
holderAmount: string
}[]
onClose: MouseEventHandler<HTMLDivElement>
}) => {
const [t] = useTranslation()
return (
<div className={styles.holderAllocationContainer}>
<div className={styles.holderAllocationContent}>
<h2>{t('xudt.holder_allocation')}</h2>
<p>
{t('xudt.holder_allocation_description', {
ckb: localeNumberString(ckbHolderAmount),
btc: localeNumberString(btcHolderAmount),
})}
</p>
{lockHoderAmount && (
<div className={styles.table}>
<table>
<thead>
<tr>
<td>
<div>{t('xudt.lock_hash')}</div>
</td>
<td>
<div>{t('xudt.count')}</div>
</td>
</tr>
</thead>
<tbody>
{lockHoderAmount.map(amount => (
<tr>
<td>
<div>{amount.lock}</div>
</td>
<td>
<div>{amount.holderAmount}</div>
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</div>
<SimpleButton onClick={onClose} className={styles.closeIcon}>
<img src={CloseIcon} alt="close icon" />
</SimpleButton>
</div>
)
}

export default HolderAllocation
42 changes: 32 additions & 10 deletions src/pages/Xudt/UDTComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { EyeClosedIcon, EyeOpenIcon } from '@radix-ui/react-icons'
import { Link } from '../../components/Link'
import { CsvExport } from '../../components/CsvExport'
import TransactionItem from '../../components/TransactionItem/index'
import { UDTTransactionsPagination, UDTTransactionsPanel, TypeScriptController, UDTNoResultPanel } from './styled'
import { parseUDTAmount } from '../../utils/number'
import { ReactComponent as OpenInNew } from '../../assets/open_in_new.svg'
import { deprecatedAddrToNewAddr, getBtcUtxo } from '../../utils/util'
Expand All @@ -24,6 +23,9 @@ import { RawBtcRPC } from '../../services/ExplorerService'
import { XUDT } from '../../models/Xudt'
import { getBtcTxList } from '../../services/ExplorerService/fetcher'
import XUDTTag from '../../components/XUDTTag'
import SimpleButton from '../../components/SimpleButton'
import SimpleModal from '../../components/Modal'
import HolderAllocation from './HolderAllocation'
import { ReactComponent as EditIcon } from '../../assets/edit.svg'
import XUDTTokenIcon from '../../assets/sudt_token.png'

Expand Down Expand Up @@ -67,6 +69,7 @@ export const UDTOverviewCard = ({
const { t } = useTranslation()
const isMobile = useIsMobile()
const [isScriptDisplayed, setIsScriptDisplayed] = useState(false)
const [showHolderAmountModal, setShowHolderAmountModal] = useState(false)
const [isModifyTokenInfoModalOpen, setIsModifyTokenInfoModalOpen] = useState<boolean>(false)

const issuer = xudt?.issuerAddress
Expand Down Expand Up @@ -116,7 +119,18 @@ export const UDTOverviewCard = ({
},
{
title: t('xudt.holder_addresses'),
content: xudt?.addressesCount ?? '-',
content: xudt?.addressesCount ? (
<SimpleButton
className={styles.holderAddressesButton}
onClick={() => {
setShowHolderAmountModal(true)
}}
>
{xudt.addressesCount}
</SimpleButton>
) : (
'-'
),
},
{
title: t('xudt.symbol'),
Expand Down Expand Up @@ -181,8 +195,16 @@ export const UDTOverviewCard = ({
</div>

<CardCellsLayout type="left-right" cells={items} borderTop />
<SimpleModal isShow={showHolderAmountModal} setIsShow={setShowHolderAmountModal}>
<HolderAllocation
onClose={() => setShowHolderAmountModal(false)}
ckbHolderAmount={xudt?.holderAllocation.ckbHoldersCount ?? '0'}
btcHolderAmount={xudt?.holderAllocation.btcHoldersCount ?? '0'}
lockHoderAmount={xudt?.holderAllocation.lockHoderAmount}
/>
</SimpleModal>

<TypeScriptController onClick={toggleScriptDisplay}>
<SimpleButton className={styles.typeScriptController} onClick={toggleScriptDisplay}>
{isScriptDisplayed ? (
<div className={styles.scriptToggle}>
<EyeOpenIcon />
Expand All @@ -194,7 +216,7 @@ export const UDTOverviewCard = ({
<div>{t('xudt.type_script_hash')}</div>
</div>
)}
</TypeScriptController>
</SimpleButton>

{isScriptDisplayed ? (
script && <Script script={script} />
Expand Down Expand Up @@ -236,14 +258,14 @@ export const UDTComp = ({

if (filterNoResult) {
return (
<UDTNoResultPanel>
<div className={styles.udtNoResultPanel}>
<span>{t('search.udt_filter_no_result')}</span>
</UDTNoResultPanel>
</div>
)
}
return (
<>
<UDTTransactionsPanel>
<div className={styles.udtTransactionsPanel}>
{transactions.map(
(transaction, index) =>
transaction && (
Expand All @@ -256,15 +278,15 @@ export const UDTComp = ({
/>
),
)}
</UDTTransactionsPanel>
<UDTTransactionsPagination>
</div>
<div className={styles.udtTransactionsPagination}>
<PaginationWithRear
currentPage={currentPage}
totalPages={totalPages}
onChange={onPageChange}
rear={xudt ? <CsvExport link={`/export-xudt-holders?id=${xudt.typeHash}`} /> : null}
/>
</UDTTransactionsPagination>
</div>
</>
)
}
Expand Down
14 changes: 7 additions & 7 deletions src/pages/Xudt/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useParams } from 'react-router-dom'
import { useTranslation } from 'react-i18next'
import { useQuery } from '@tanstack/react-query'
import classNames from 'classnames'
import Content from '../../components/Content'
import { UDTContentPanel, UDTTransactionTitlePanel } from './styled'
import UDTComp, { UDTOverviewCard } from './UDTComp'
import { usePaginationParamsInPage, useSearchParams, useUpdateSearchParams } from '../../hooks'
import Filter from '../../components/Filter'
Expand Down Expand Up @@ -68,12 +68,12 @@ export const Xudt = () => {

return (
<Content>
<UDTContentPanel className="container">
<div className={classNames(styles.container, 'container')}>
<UDTOverviewCard typeHash={typeHash} xudt={xudt} refetchUDT={queryUDT.refetch} />

<UDTTransactionTitlePanel>
<div className="udtTransactionContainer">
<div className="udtTransactionTitle">
<div className={styles.udtTransactionTitlePanel}>
<div className={styles.udtTransactionContainer}>
<div className={styles.udtTransactionTitle}>
{`${t('transaction.transactions')} (${localeNumberString(total)})`}
</div>
<div className={styles.searchAndfilter}>
Expand All @@ -86,7 +86,7 @@ export const Xudt = () => {
/>
</div>
</div>
</UDTTransactionTitlePanel>
</div>

<QueryResult query={querySimpleUDTTransactions} delayLoading>
{data => (
Expand All @@ -101,7 +101,7 @@ export const Xudt = () => {
/>
)}
</QueryResult>
</UDTContentPanel>
</div>
</Content>
)
}
Expand Down
Loading