-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added COW to common tokens * Update the COW place in token list * Add a list of prioritised tokens
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/custom/components/SearchModal/CurrencySearch/sorting.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { Currency, CurrencyAmount, Token } from '@uniswap/sdk-core' | ||
import { useMemo } from 'react' | ||
|
||
import { useAllTokenBalances } from 'state/wallet/hooks' | ||
|
||
const PRIORITISED_TOKENS = ['COW', 'GNO'] | ||
|
||
// compare two token amounts with highest one coming first | ||
function balanceComparator(balanceA?: CurrencyAmount<Currency>, balanceB?: CurrencyAmount<Currency>) { | ||
if (balanceA && balanceB) { | ||
return balanceA.greaterThan(balanceB) ? -1 : balanceA.equalTo(balanceB) ? 0 : 1 | ||
} else if (balanceA && balanceA.greaterThan('0')) { | ||
return -1 | ||
} else if (balanceB && balanceB.greaterThan('0')) { | ||
return 1 | ||
} | ||
return 0 | ||
} | ||
|
||
function getTokenComparator(balances: { | ||
[tokenAddress: string]: CurrencyAmount<Currency> | undefined | ||
}): (tokenA: Token, tokenB: Token) => number { | ||
return function sortTokens(tokenA: Token, tokenB: Token): number { | ||
// -1 = a is first | ||
// 1 = b is first | ||
|
||
// sort by balances | ||
const balanceA = balances[tokenA.address] | ||
const balanceB = balances[tokenB.address] | ||
|
||
const balanceComp = balanceComparator(balanceA, balanceB) | ||
if (balanceComp !== 0) return balanceComp | ||
|
||
// Mod: modify tokens list by prioritised list | ||
const indexA = PRIORITISED_TOKENS.indexOf(tokenA.symbol || '') | ||
const indexB = PRIORITISED_TOKENS.indexOf(tokenB.symbol || '') | ||
|
||
if (indexA !== -1 && indexB !== -1) { | ||
return indexB < indexA ? 1 : -1 | ||
} else if (indexA !== -1 || indexB !== -1) { | ||
return indexB !== -1 ? 1 : -1 | ||
} | ||
|
||
if (tokenA.symbol && tokenB.symbol) { | ||
// sort by symbol | ||
return tokenA.symbol.toLowerCase() < tokenB.symbol.toLowerCase() ? -1 : 1 | ||
} else { | ||
return tokenA.symbol ? -1 : tokenB.symbol ? -1 : 0 | ||
} | ||
} | ||
} | ||
|
||
export function useTokenComparator(inverted: boolean): (tokenA: Token, tokenB: Token) => number { | ||
const balances = useAllTokenBalances() | ||
const comparator = useMemo(() => getTokenComparator(balances ?? {}), [balances]) | ||
return useMemo(() => { | ||
if (inverted) { | ||
return (tokenA: Token, tokenB: Token) => comparator(tokenA, tokenB) * -1 | ||
} else { | ||
return comparator | ||
} | ||
}, [inverted, comparator]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters