Commit 96d37c70 authored by anuraghazra's avatar anuraghazra
Browse files

fix: fixed stars count #39 & fixed progressbar percentage

parent 3a24ad62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ const fetcher = (variables, token) => {
          followers {
            totalCount
          }
          repositories(first: 100, orderBy: { direction: DESC, field: STARGAZERS }) {
          repositories(first: 100, ownerAffiliations: OWNER, isFork: false, orderBy: {direction: DESC, field: STARGAZERS}) {
            totalCount
            nodes {
              stargazers {
+3 −8
Original line number Diff line number Diff line
@@ -127,14 +127,9 @@ const renderStatsCard = (stats = {}, options = { hide: [] }) => {
        </text>
      </g>`;

  // re-adjust circle progressbar's value until the ranking algo is improved
  let progress = rank.score;
  if (rank.score > 86) {
    progress = (40 + rank.score) * 0.6;
  }
  if (rank.score < 40) {
    progress = 40 + rank.score;
  }
  // the better user's score the the rank will be closer to zero so
  // subtracting 100 to get the progress in 100%
  let progress = 100 - rank.score;

  const styles = getStyles({
    titleColor,