forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
fix: Align Networks/Tokens/lanes Alphabetically #27
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
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -28,14 +28,16 @@ const supportedTokens = getAllSupportedTokens({ | |
|
|
||
| const tokens = Object.keys(supportedTokens).sort((a, b) => a.localeCompare(b, undefined, { sensitivity: "base" })) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same apply here |
||
|
|
||
| const allTokens = tokens.map((token) => { | ||
| const logo = getTokenIconUrl(token) || "" | ||
| return { | ||
| name: token, | ||
| logo, | ||
| totalNetworks: getChainsOfToken({ token, filter: environment }).length, | ||
| } | ||
| }) | ||
| const allTokens = tokens | ||
| .map((token) => { | ||
| const logo = getTokenIconUrl(token) || "" | ||
| return { | ||
| name: token, | ||
| logo, | ||
| totalNetworks: getChainsOfToken({ token, filter: environment }).length, | ||
| } | ||
| }) | ||
| .sort((a, b) => a.name.localeCompare(b.name)) | ||
|
|
||
| const data = getTokenData({ | ||
| environment: environment, | ||
|
|
@@ -72,25 +74,27 @@ const searchLanes = getSearchLanes({ environment }) | |
| <Table | ||
| client:only="react" | ||
| environment={environment} | ||
| networks={Object.keys(data).map((key) => { | ||
| const directory = directoryToSupportedChain(key || "") | ||
| const title = getTitle(directory) || "" | ||
| const networkLogo = getChainIcon(directory) || "" | ||
| const explorerUrl = getExplorer(directory) | ||
| return { | ||
| name: title, | ||
| token: data[key].name || "", | ||
| key: key, | ||
| logo: networkLogo, | ||
| symbol: token, | ||
| tokenLogo: logo || "", | ||
| decimals: data[key].decimals || 0, | ||
| tokenAddress: data[key].tokenAddress || "", | ||
| tokenPoolType: data[key].poolType || "", | ||
| tokenPoolAddress: data[key].poolAddress || "", | ||
| explorerUrl: explorerUrl || "", | ||
| } | ||
| })} | ||
| networks={Object.keys(data) | ||
| .map((key) => { | ||
| const directory = directoryToSupportedChain(key || "") | ||
| const title = getTitle(directory) || "" | ||
| const networkLogo = getChainIcon(directory) || "" | ||
| const explorerUrl = getExplorer(directory) | ||
| return { | ||
| name: title, | ||
| token: data[key].name || "", | ||
| key: key, | ||
| logo: networkLogo, | ||
| symbol: token, | ||
| tokenLogo: logo || "", | ||
| decimals: data[key].decimals || 0, | ||
| tokenAddress: data[key].tokenAddress || "", | ||
| tokenPoolType: data[key].poolType || "", | ||
| tokenPoolAddress: data[key].poolAddress || "", | ||
| explorerUrl: explorerUrl || "", | ||
| } | ||
| }) | ||
| .sort((a, b) => a.name.localeCompare(b.name))} | ||
| lanes={lanes} | ||
| token={{ | ||
| name: data[Object.keys(data)[0]]?.name || "", | ||
|
|
||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we were already doing sort here. Why do we have to do below too?! I would keep just once
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
another thought.. Should we not actually sort it at the initial methods (so within the "getTokens" and "getNetworks" instead than do it in this individual files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes the
.sort()is not needed hereabout your second comment: because
getAllSupportedTokensis a function that returns an object and it's not guaranteed to organize an object so I'm doing it here in the top level of the pageAlso it's being used in other places all over the app not just CCIP so it will be hard to change this function