Skip to content

Commit

Permalink
Merge pull request #57 from techmannih/graph
Browse files Browse the repository at this point in the history
improve graph with score and star
  • Loading branch information
ShiboSoftwareDev authored Feb 9, 2025
2 parents 910eb0a + 82cbd7c commit 3ab9266
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion contribution-overviews/2024-12-04.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2024-12-11.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2024-12-18.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2024-12-25.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@
"bountiedIssuesTotal": 0,
"score": 2
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-01-01.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@
"bountiedIssuesTotal": 0,
"score": 2
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-01-08.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-01-15.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-01-22.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,4 +292,4 @@
"tiny": 0,
"stars": ""
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-01-29.json
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,4 @@
"tiny": 0,
"stars": ""
}
}
}
2 changes: 1 addition & 1 deletion contribution-overviews/2025-02-05.json
Original file line number Diff line number Diff line change
Expand Up @@ -297,4 +297,4 @@
"bountiedIssuesCount": 0,
"bountiedIssuesTotal": 0
}
}
}
11 changes: 6 additions & 5 deletions frontend/src/components/ContributorGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ const DROPDOWN_MENU_ITEMS = [
]

const SCORE_LABELS = {
10: "⭐",
30: "⭐⭐",
50: "⭐⭐⭐",
75: "👑",
100: "👑👑",
4: "⭐",
11: "⭐⭐",
31: "⭐⭐⭐",
51: "👑",
76: "👑👑",
101: "👑👑👑",
}

export default function ContributorGraph({ username }: { username: string }) {
Expand Down

0 comments on commit 3ab9266

Please sign in to comment.