2022-06-23 08:07:52 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
import { formatMoney } from 'common/util/format'
|
|
|
|
import { fromNow } from 'web/lib/util/time'
|
|
|
|
import { Col } from 'web/components/layout/col'
|
|
|
|
import { Row } from 'web/components/layout/row'
|
2022-07-21 05:45:53 +00:00
|
|
|
import { Claim, Manalink } from 'common/manalink'
|
|
|
|
import { useState } from 'react'
|
|
|
|
import { ShareIconButton } from './share-icon-button'
|
|
|
|
import { DotsHorizontalIcon } from '@heroicons/react/solid'
|
|
|
|
import { contractDetailsButtonClassName } from './contract/contract-info-dialog'
|
|
|
|
import { useUserById } from 'web/hooks/use-user'
|
|
|
|
import getManalinkUrl from 'web/get-manalink-url'
|
2022-06-23 08:07:52 +00:00
|
|
|
export type ManalinkInfo = {
|
|
|
|
expiresTime: number | null
|
|
|
|
maxUses: number | null
|
|
|
|
uses: number
|
|
|
|
amount: number
|
|
|
|
message: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ManalinkCard(props: {
|
|
|
|
info: ManalinkInfo
|
2022-07-21 05:45:53 +00:00
|
|
|
className?: string
|
|
|
|
preview?: boolean
|
2022-06-23 08:07:52 +00:00
|
|
|
}) {
|
2022-07-21 05:45:53 +00:00
|
|
|
const { className, info, preview = false } = props
|
2022-06-23 08:07:52 +00:00
|
|
|
const { expiresTime, maxUses, uses, amount, message } = info
|
|
|
|
return (
|
2022-07-21 05:45:53 +00:00
|
|
|
<Col>
|
2022-07-22 01:22:17 +00:00
|
|
|
<Col
|
2022-07-21 05:45:53 +00:00
|
|
|
className={clsx(
|
|
|
|
className,
|
2022-07-22 01:22:17 +00:00
|
|
|
'min-h-20 group rounded-lg bg-gradient-to-br drop-shadow-sm transition-all',
|
2022-07-21 05:45:53 +00:00
|
|
|
getManalinkGradient(info.amount)
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<Col className="mx-4 mt-2 -mb-4 text-right text-sm text-gray-100">
|
|
|
|
<div>
|
|
|
|
{maxUses != null
|
|
|
|
? `${maxUses - uses}/${maxUses} uses left`
|
|
|
|
: `Unlimited use`}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{expiresTime != null
|
|
|
|
? `Expires ${fromNow(expiresTime)}`
|
|
|
|
: 'Never expires'}
|
2022-06-23 08:07:52 +00:00
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
|
2022-07-21 05:45:53 +00:00
|
|
|
<img
|
|
|
|
className={clsx(
|
|
|
|
'block h-1/3 w-1/3 self-center transition-all group-hover:rotate-12',
|
|
|
|
preview ? 'my-2' : 'w-1/2 md:mb-6 md:h-1/2'
|
|
|
|
)}
|
|
|
|
src="/logo-white.svg"
|
|
|
|
/>
|
2022-07-22 01:22:17 +00:00
|
|
|
<Row className="rounded-b-lg bg-white p-4">
|
|
|
|
<div
|
|
|
|
className={clsx(
|
|
|
|
'mb-1 text-xl text-indigo-500',
|
|
|
|
getManalinkAmountColor(amount)
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{formatMoney(amount)}
|
|
|
|
</div>
|
2022-07-21 05:45:53 +00:00
|
|
|
</Row>
|
2022-07-22 01:22:17 +00:00
|
|
|
</Col>
|
|
|
|
<div className="text-md mt-2 mb-4 text-gray-500">{message}</div>
|
2022-07-21 05:45:53 +00:00
|
|
|
</Col>
|
2022-06-23 08:07:52 +00:00
|
|
|
)
|
|
|
|
}
|
2022-07-13 21:57:34 +00:00
|
|
|
|
2022-07-21 05:45:53 +00:00
|
|
|
export function ManalinkCardFromView(props: {
|
2022-07-13 21:57:34 +00:00
|
|
|
className?: string
|
2022-07-21 05:45:53 +00:00
|
|
|
link: Manalink
|
|
|
|
highlightedSlug: string
|
2022-07-13 21:57:34 +00:00
|
|
|
}) {
|
2022-07-21 05:45:53 +00:00
|
|
|
const { className, link, highlightedSlug } = props
|
|
|
|
const { message, amount, expiresTime, maxUses, claims } = link
|
2022-07-22 01:22:17 +00:00
|
|
|
const [showDetails, setShowDetails] = useState(false)
|
2022-07-21 05:45:53 +00:00
|
|
|
|
2022-07-13 21:57:34 +00:00
|
|
|
return (
|
2022-07-22 01:22:17 +00:00
|
|
|
<Col>
|
|
|
|
<Col
|
2022-07-21 05:45:53 +00:00
|
|
|
className={clsx(
|
2022-07-22 01:22:17 +00:00
|
|
|
'group z-10 rounded-lg drop-shadow-sm transition-all hover:drop-shadow-lg',
|
|
|
|
className,
|
|
|
|
link.slug === highlightedSlug ? 'shadow-md shadow-indigo-400' : ''
|
2022-07-21 05:45:53 +00:00
|
|
|
)}
|
|
|
|
>
|
2022-07-22 01:22:17 +00:00
|
|
|
<Col
|
|
|
|
className={clsx(
|
|
|
|
'relative rounded-t-lg bg-gradient-to-br transition-all',
|
|
|
|
getManalinkGradient(link.amount)
|
|
|
|
)}
|
|
|
|
onClick={() => setShowDetails(!showDetails)}
|
|
|
|
>
|
|
|
|
{showDetails && (
|
|
|
|
<ClaimsList
|
|
|
|
className="absolute h-full w-full bg-white opacity-90"
|
|
|
|
link={link}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Col className="mx-4 mt-2 -mb-4 text-right text-xs text-gray-100">
|
|
|
|
<div>
|
|
|
|
{maxUses != null
|
|
|
|
? `${maxUses - claims.length}/${maxUses} uses left`
|
|
|
|
: `Unlimited use`}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{expiresTime != null
|
|
|
|
? `Expires ${fromNow(expiresTime)}`
|
|
|
|
: 'Never expires'}
|
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
<img
|
|
|
|
className={clsx('my-auto block w-1/3 select-none self-center py-3')}
|
|
|
|
src="/logo-white.svg"
|
2022-07-21 05:45:53 +00:00
|
|
|
/>
|
|
|
|
</Col>
|
2022-07-22 01:22:17 +00:00
|
|
|
<Row className="relative w-full gap-1 rounded-b-lg bg-white px-4 py-2 text-lg">
|
2022-07-21 05:45:53 +00:00
|
|
|
<div
|
|
|
|
className={clsx(
|
|
|
|
'my-auto mb-1 w-full',
|
|
|
|
getManalinkAmountColor(amount)
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{formatMoney(amount)}
|
|
|
|
</div>
|
|
|
|
<ShareIconButton
|
|
|
|
toastClassName={'-left-48 min-w-[250%]'}
|
|
|
|
buttonClassName={'transition-colors'}
|
|
|
|
onCopyButtonClassName={
|
|
|
|
'bg-gray-200 text-gray-600 transition-none hover:bg-gray-200 hover:text-gray-600'
|
|
|
|
}
|
|
|
|
copyPayload={getManalinkUrl(link.slug)}
|
|
|
|
/>
|
|
|
|
<button
|
2022-07-22 01:22:17 +00:00
|
|
|
onClick={() => setShowDetails(!showDetails)}
|
2022-07-21 05:45:53 +00:00
|
|
|
className={clsx(
|
|
|
|
contractDetailsButtonClassName,
|
2022-07-22 01:22:17 +00:00
|
|
|
showDetails
|
2022-07-21 05:45:53 +00:00
|
|
|
? 'bg-gray-200 text-gray-600 hover:bg-gray-200 hover:text-gray-600'
|
|
|
|
: ''
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<DotsHorizontalIcon className="h-[24px] w-5" />
|
|
|
|
</button>
|
|
|
|
</Row>
|
|
|
|
</Col>
|
2022-07-22 01:22:17 +00:00
|
|
|
<div className="mt-2 mb-4 text-xs text-gray-500 md:text-sm">
|
|
|
|
{message || ''}
|
|
|
|
</div>
|
2022-07-21 05:45:53 +00:00
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function ClaimsList(props: { link: Manalink; className: string }) {
|
|
|
|
const { link, className } = props
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Col className={clsx('px-4 py-2', className)}>
|
|
|
|
<div className="text-md mb-1 mt-2 w-full font-semibold">
|
|
|
|
Claimed by...
|
2022-07-13 21:57:34 +00:00
|
|
|
</div>
|
2022-07-21 05:45:53 +00:00
|
|
|
<div className="overflow-auto">
|
|
|
|
{link.claims.length > 0 ? (
|
|
|
|
<>
|
|
|
|
{link.claims.map((claim) => (
|
|
|
|
<Row key={claim.txnId}>
|
|
|
|
<Claim claim={claim} />
|
|
|
|
</Row>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<div className="h-full">
|
|
|
|
No one has claimed this manalink yet! Share your manalink to start
|
|
|
|
spreading the wealth.
|
|
|
|
</div>
|
|
|
|
)}
|
2022-07-13 21:57:34 +00:00
|
|
|
</div>
|
|
|
|
</Col>
|
2022-07-21 05:45:53 +00:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
2022-07-13 21:57:34 +00:00
|
|
|
|
2022-07-21 05:45:53 +00:00
|
|
|
function Claim(props: { claim: Claim }) {
|
|
|
|
const { claim } = props
|
|
|
|
const who = useUserById(claim.toId)
|
|
|
|
return (
|
|
|
|
<Row className="my-1 gap-2 text-xs">
|
|
|
|
<div>{who?.name || 'Loading...'}</div>
|
|
|
|
<div className="text-gray-500">{fromNow(claim.claimedTime)}</div>
|
|
|
|
</Row>
|
2022-07-13 21:57:34 +00:00
|
|
|
)
|
|
|
|
}
|
2022-07-21 05:45:53 +00:00
|
|
|
|
|
|
|
function getManalinkGradient(amount: number) {
|
|
|
|
if (amount < 20) {
|
|
|
|
return 'from-indigo-200 via-indigo-500 to-indigo-800'
|
|
|
|
} else if (amount >= 20 && amount < 50) {
|
|
|
|
return 'from-fuchsia-200 via-fuchsia-500 to-fuchsia-800'
|
|
|
|
} else if (amount >= 50 && amount < 100) {
|
|
|
|
return 'from-rose-100 via-rose-400 to-rose-700'
|
|
|
|
} else if (amount >= 100) {
|
|
|
|
return 'from-amber-200 via-amber-500 to-amber-700'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getManalinkAmountColor(amount: number) {
|
|
|
|
if (amount < 20) {
|
|
|
|
return 'text-indigo-500'
|
|
|
|
} else if (amount >= 20 && amount < 50) {
|
|
|
|
return 'text-fuchsia-600'
|
|
|
|
} else if (amount >= 50 && amount < 100) {
|
|
|
|
return 'text-rose-600'
|
|
|
|
} else if (amount >= 100) {
|
|
|
|
return 'text-amber-600'
|
|
|
|
}
|
|
|
|
}
|