-
Notifications
You must be signed in to change notification settings - Fork 49
feat: jurors page #1840
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
feat: jurors page #1840
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
ed63810
feat: initial jurors page setup, jurors explore navlink, small stylin…
kemuru 1b22294
feat: filter by totalresolvedvotes bigger than 0, types fix
kemuru 63c308b
fix: subgraph bug which has not counting missed votes
kemuru ac069a3
Merge branch 'dev' into feat(web)/jurors-page
kemuru 118feb6
Merge branch 'dev' into feat(web)/jurors-page
kemuru af51757
Merge branch 'dev' into feat(web)/jurors-page
kemuru db29a3d
feat: myprofile links, subgraph changes, pagination, query optimizati…
kemuru c95ee8a
Merge branch 'dev' into feat(web)/jurors-page
kemuru f2867a2
feat: add subgraph field, ranking icon, fix extra stats bug, filters,…
kemuru c749b2d
fix: nitpick text change
kemuru 132743a
chore: add arrow back into the accordiontitle
kemuru 07f83fa
chore: layout improvement
kemuru 94c7637
fix: search to lower case in query
kemuru 22e54d7
chore: move coherence percent function to utils, change name for clarity
kemuru 81a3412
fix: layout shift if there is no rank, hide pagination if searching
kemuru b5d969b
Merge branch 'dev' into feat(web)/jurors-page
kemuru 535508a
fix: few code smells
kemuru d04f0e1
chore: change label in mobile if search is active
kemuru 876e208
Merge branch 'dev' into feat(web)/jurors-page
alcercu e6875eb
chore: subgraphs redeploy, scripts tweaks
jaybuidl 2bb0a19
chore: txt
kemuru 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import styled from "styled-components"; | ||
import { hoverShortTransitionTiming } from "styles/commonStyles"; | ||
|
||
export const BlueIconTextButtonContainer = styled.div` | ||
${hoverShortTransitionTiming} | ||
display: flex; | ||
align-items: center; | ||
font-size: 14px; | ||
font-weight: 400; | ||
gap: 8px; | ||
cursor: pointer; | ||
color: ${({ theme }) => theme.primaryBlue}; | ||
|
||
svg path { | ||
fill: ${({ theme }) => theme.primaryBlue}; | ||
} | ||
|
||
&:hover { | ||
color: ${({ theme }) => theme.secondaryBlue}; | ||
svg path { | ||
fill: ${({ theme }) => theme.secondaryBlue}; | ||
} | ||
} | ||
`; |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
|
||
import RankingIcon from "svgs/icons/ranking.svg"; | ||
|
||
import { BlueIconTextButtonContainer } from "./BlueIconTextButtonContainer"; | ||
import { InternalLink } from "./InternalLink"; | ||
|
||
const JurorsLeaderboardButton: React.FC = () => { | ||
return ( | ||
<> | ||
<InternalLink to={"/jurors/1/desc/all"}> | ||
<BlueIconTextButtonContainer> | ||
<RankingIcon /> | ||
Jurors Leaderboard | ||
</BlueIconTextButtonContainer> | ||
</InternalLink> | ||
</> | ||
); | ||
}; | ||
|
||
export default JurorsLeaderboardButton; |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.