mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-07-23 23:35:45 +00:00
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-nfts authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { BN } from '@pezkuwi/util';
|
|
import type { CollectionInfo } from '../types.js';
|
|
|
|
import React from 'react';
|
|
|
|
import { AddressSmall, IconLink, Table } from '@pezkuwi/react-components';
|
|
import { formatNumber } from '@pezkuwi/util';
|
|
|
|
import { useTranslation } from '../translate.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
value: CollectionInfo;
|
|
}
|
|
|
|
function Collection ({ className, value: { details, id, ipfsData } }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
const name = ipfsData?.name || '';
|
|
let imageLink = '';
|
|
|
|
if (ipfsData?.image) {
|
|
imageLink = ipfsData.image.toLowerCase().startsWith('http') ? ipfsData.image : `https://ipfs.io/ipfs/${ipfsData.image}`;
|
|
}
|
|
|
|
return (
|
|
<tr className={className}>
|
|
<Table.Column.Id value={id} />
|
|
<td className='together all'>
|
|
{ name && imageLink
|
|
? (
|
|
<IconLink
|
|
href={imageLink}
|
|
icon='braille'
|
|
label={name}
|
|
rel='noopener'
|
|
target='_blank'
|
|
/>)
|
|
: name
|
|
}
|
|
</td>
|
|
<td className='address media--1000'>{details && <AddressSmall value={details.owner} />}</td>
|
|
<td className='string'>{details && details.isFrozen.isTrue && t('Frozen')}</td>
|
|
<td className='number'>{details && formatNumber(details.items || (details as unknown as { instances: BN }).instances)}</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Collection);
|