Skip to content
Draft
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
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"@apollo/client": "^3.8.1",
"@bosonprotocol/chat-sdk": "^1.3.1-alpha.9",
"@bosonprotocol/react-kit": "^0.22.0-alpha.2",
"@bosonprotocol/react-kit": "^0.22.0-alpha.3",
"@davatar/react": "^1.10.4",
"@ethersproject/address": "^5.6.1",
"@ethersproject/units": "^5.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/detail/DetailWidget/DetailWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ const DetailWidget: React.FC<IDetailWidget> = ({
const offerCurationList = useCustomStoreQueryParameter("offerCurationList");
const { isConditionMet } = useCheckTokenGatedOffer({
commitProxyAddress,
condition: offer.condition
offer
});
const numSellers = new Set(
sellerCurationList
Expand Down
71 changes: 39 additions & 32 deletions src/components/detail/DetailWidget/TokenGated.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { EvaluationMethod, TokenType } from "@bosonprotocol/common";
import { EvaluationMethod, GatingType, TokenType } from "@bosonprotocol/common";
import { useConfigContext } from "components/config/ConfigContext";
import { Check, X } from "phosphor-react";
import { CSSProperties, useEffect, useMemo, useState } from "react";
Expand Down Expand Up @@ -55,63 +55,70 @@ const getBuildMessage =
const {
method,
tokenType,
minTokenId: tokenId,
minTokenId,
maxTokenId,
gatingType,
tokenAddress,
threshold
} = condition;

const perWalletOrPerToken =
gatingType === GatingType.PerAddress ? " (per wallet)" : " (per token)";

const TokenLink = (
<a
href={config.envConfig.getTxExplorerUrl?.(tokenAddress, true)}
target="_blank"
>
{tokenAddress.slice(0, 10)}...
</a>
);

if (tokenType === TokenType.FungibleToken) {
return (
<>
{tokenInfo.convertedValue.price} {tokenInfo.symbol} tokens (
<a
href={config.envConfig.getTxExplorerUrl?.(tokenAddress, true)}
target="_blank"
>
{tokenAddress.slice(0, 10)}...
</a>
)
{tokenInfo.convertedValue.price} {tokenInfo.symbol} tokens
{TokenLink}
</>
);
}
if (tokenType === TokenType.NonFungibleToken) {
if (method === EvaluationMethod.Threshold) {
return (
<>
{threshold} tokens from{" "}
<a
href={config.envConfig.getTxExplorerUrl?.(tokenAddress, true)}
target="_blank"
>
{tokenAddress.slice(0, 10)}...
</a>
{threshold} tokens {perWalletOrPerToken} from {TokenLink}
</>
);
}
if (method === EvaluationMethod.SpecificToken) {
if (method === EvaluationMethod.TokenRange) {
if (minTokenId === maxTokenId) {
return (
<>
Token ID {perWalletOrPerToken}: {minTokenId} from {TokenLink}
</>
);
}
return (
<>
Token ID: {tokenId} from{" "}
<a
href={config.envConfig.getTxExplorerUrl?.(tokenAddress, true)}
target="_blank"
>
{tokenAddress.slice(0, 15)}...
</a>
From token ID {minTokenId} to token ID {maxTokenId}{" "}
{perWalletOrPerToken} from {TokenLink}
</>
);
}
}
if (tokenType === TokenType.MultiToken) {
if (minTokenId === maxTokenId) {
return (
<>
{threshold} x token(s) with id: {minTokenId} {perWalletOrPerToken}{" "}
from {TokenLink}
</>
);
}
return (
<>
{threshold} x token(s) with id: {tokenId} from{" "}
<a
href={config.envConfig.getTxExplorerUrl?.(tokenAddress, true)}
target="_blank"
>
{tokenAddress.slice(0, 10)}...
</a>
{threshold} x token(s) from token ID {minTokenId} to token ID{" "}
{maxTokenId} {perWalletOrPerToken} from {TokenLink}
</>
);
}
Expand Down
Loading