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

Pulling refs/heads/staging into test-staging #1996

Merged
merged 5 commits into from
Nov 17, 2023
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: 2 additions & 2 deletions components/liquidity/MarketLiquiditySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ const LiquidityHeaderButtonItem: FC<
};

const LiquidityHeader = ({ market }: { market: FullMarketFragment }) => {
const { pool } = market;
const { pool, neoPool } = market;
const { data: liquidity } = usePoolLiquidity(
pool?.poolId ? { poolId: pool.poolId } : undefined,
);

const swapFee = new Decimal(Number(pool?.swapFee) ?? 0)
const swapFee = new Decimal(Number(pool?.swapFee ?? neoPool?.swapFee ?? 0))
.div(ZTG)
.mul(100)
.toNumber();
Expand Down
2 changes: 1 addition & 1 deletion components/markets/MarketChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const MarketChart = ({
}: {
marketId: number;
chartSeries: ChartSeries[];
baseAsset: string;
baseAsset?: string;
poolCreationDate: Date;
marketStatus: MarketStatus;
resolutionDate: Date;
Expand Down
18 changes: 13 additions & 5 deletions components/markets/MarketHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,14 +323,22 @@ const MarketHeader: FC<{
rejectReason,
promotionData,
}) => {
const { categories, status, question, period, marketType, pool, scalarType } =
market;
const {
categories,
status,
question,
period,
marketType,
pool,
scalarType,
neoPool,
} = market;
const [showMarketHistory, setShowMarketHistory] = useState(false);
const starts = Number(period.start);
const ends = Number(period.end);
const volume = pool?.volume
? new Decimal(pool?.volume).div(ZTG).toNumber()
: 0;
const volume = new Decimal(pool?.volume ?? neoPool?.volume ?? 0)
.div(ZTG)
.toNumber();

const { outcome, by } = getMarketStatusDetails(
marketType,
Expand Down
1 change: 1 addition & 0 deletions components/markets/MarketsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ const MarketsList = ({ className = "" }: MarketsListProps) => {
marketType={marketType}
scalarType={scalarType}
pool={pool}
neoPool={market.neoPool}
status={market.status}
baseAsset={market.baseAsset}
volume={new Decimal(volume).div(ZTG).toNumber()}
Expand Down
1 change: 1 addition & 0 deletions components/markets/SimilarMarketsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const SimilarMarketsSection = ({
marketType={marketType}
scalarType={scalarType}
pool={market.pool ?? null}
neoPool={market?.neoPool}
status={market.status}
baseAsset={market.baseAsset}
volume={new Decimal(market.pool?.volume ?? 0)
Expand Down
13 changes: 7 additions & 6 deletions components/markets/market-card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
} from "@zeitgeistpm/sdk";
import { lookupAssetImagePath } from "lib/constants/foreign-asset";
import Image from "next/image";
import { FullMarketFragment } from "@zeitgeistpm/indexer";

export interface IndexedMarketCardData {
marketId: number;
Expand All @@ -30,6 +31,7 @@ export interface IndexedMarketCardData {
prediction: { name: string; price: number };
volume: number;
pool?: { poolId?: number; volume: string } | null;
neoPool?: FullMarketFragment["neoPool"] | null;
baseAsset: string;
tags?: string[];
status: string;
Expand All @@ -50,13 +52,11 @@ export interface MarketCardProps extends IndexedMarketCardData {

const MarketCardPredictionBar = ({
prediction: { name, price },
pool,
}: {
prediction: { name: string; price: number };
pool: {};
}) => {
// check if market has liquidity
if (Object.keys(pool).length !== 0) {
if (price != null) {
const impliedPercentage = Math.round(Number(price) * 100);

return (
Expand Down Expand Up @@ -180,6 +180,7 @@ export const MarketCard = ({
marketType,
prediction,
pool,
neoPool,
scalarType,
volume,
baseAsset,
Expand Down Expand Up @@ -257,9 +258,9 @@ export const MarketCard = ({
: formatNumberCompact(Number(prediction.name))}
</span>
</span>
) : pool && marketType?.categorical ? (
<MarketCardPredictionBar pool={pool} prediction={prediction} />
) : pool && scalarType && Object.keys(pool).length !== 0 ? (
) : (pool || neoPool) && marketType?.categorical ? (
<MarketCardPredictionBar prediction={prediction} />
) : (pool || neoPool) && scalarType ? (
<ScalarPriceRange
scalarType={scalarType}
lowerBound={lower}
Expand Down
1 change: 1 addition & 0 deletions lib/gql/featured-markets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const getFeaturedMarkets = async (
baseAsset: market.baseAsset,
outcomes: marketCategories,
pool: market.pool,
neoPool: market.neoPool,
marketType: market.marketType as MarketType,
scalarType: (market.scalarType ?? null) as ScalarRangeType,
tags: market.tags?.filter(isPresent) ?? [],
Expand Down
4 changes: 2 additions & 2 deletions lib/gql/markets-stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export const getMarketsStats = async (
ids: number[],
): Promise<MarketStats[]> => {
if (ids.length === 0) return [];
const response = await client.request<{
const { marketStats } = await client.request<{
marketStats: MarketStats[];
}>(query, { ids });
return response.marketStats;
return marketStats;
};
12 changes: 11 additions & 1 deletion lib/gql/markets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ const marketQuery = gql`
volume
baseAsset
}
neoPool {
createdAt
collateral
volume
}
question
slug
status
Expand Down Expand Up @@ -97,12 +102,17 @@ export interface MarketPageIndexedData {
categories: { name: string; color: string }[];
outcomeAssets: string[];
resolvedOutcome: string;
pool: {
pool?: {
poolId: number;
volume: string;
createdAt: string;
baseAsset: string;
};
neoPool?: {
collateral: string;
createdAt: string;
volume: string;
};
scalarType: ScalarRangeType;
marketType: {
scalar: string[];
Expand Down
21 changes: 15 additions & 6 deletions pages/markets/[marketid].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,23 +278,32 @@ const Market: NextPage<MarketPageProps> = ({
</div>
)}

{chartSeries && indexedMarket?.pool?.poolId ? (
{chartSeries && (indexedMarket?.pool || indexedMarket.neoPool) ? (
<div className="mt-4">
<MarketChart
marketId={indexedMarket.marketId}
chartSeries={chartSeries}
baseAsset={indexedMarket.pool.baseAsset}
poolCreationDate={new Date(indexedMarket.pool.createdAt)}
baseAsset={
indexedMarket.pool?.baseAsset ??
indexedMarket.neoPool?.collateral
}
poolCreationDate={
new Date(
indexedMarket.pool?.createdAt ??
indexedMarket.neoPool?.createdAt ??
"",
)
}
marketStatus={indexedMarket.status}
resolutionDate={new Date(resolutionTimestamp)}
/>
</div>
) : (
<></>
)}
{marketHasPool && market.neoPool == null && (
<div className="flex h-ztg-22 items-center rounded-ztg-5 bg-vermilion-light p-ztg-20 text-vermilion">
<div className="h-ztg-20 w-ztg-20">
{marketHasPool === false && (
<div className="flex h-ztg-22 items-center bg-vermilion-light text-vermilion p-ztg-20 rounded-ztg-5">
<div className="w-ztg-20 h-ztg-20">
<AlertTriangle size={20} />
</div>
<div
Expand Down