-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The redesigned webpages provides a enhanced UI/UX design to web-page with additional functionality of searching the contributors. Closes #260
- Loading branch information
Showing
7 changed files
with
579 additions
and
56 deletions.
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
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
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 |
---|---|---|
@@ -1,10 +1,79 @@ | ||
from django.shortcuts import render | ||
import json | ||
|
||
from gamification.models import Participant | ||
from django.views.generic import TemplateView | ||
|
||
from community.views import get_header_and_footer | ||
from gamification.models import Participant, Level, Badge | ||
|
||
def index(request): | ||
Participant.objects.filter(username__startswith='testuser').delete() | ||
|
||
class GamificationResults(TemplateView): | ||
template_name = 'gamification.html' | ||
participants = Participant.objects.all() | ||
args = {'participants': participants} | ||
return render(request, 'gamification.html', args) | ||
|
||
def get_users_username(self, users): | ||
""" | ||
:param users: A Queryset, with a field username | ||
:return: A list of usernames | ||
""" | ||
usernames = list() | ||
for user in users: | ||
usernames.append(user.username) | ||
return usernames | ||
|
||
def group_participants_by_score(self): | ||
""" | ||
Divide the participants according to their scores. For example, if | ||
there are 10 contributors who have different scores and there are | ||
possibly 4 ranges i.e. score_gt 80, score_between (70,80), | ||
score_between (60,70) and score_lt 60. So, divide them and put them | ||
in their respective lists. | ||
:return: A Dict, with key as score_range and value a list of | ||
contributors username | ||
""" | ||
scores = set() | ||
for contrib in self.participants: | ||
scores.add(contrib.score) | ||
|
||
scores = list(scores) | ||
scores.sort() | ||
|
||
try: | ||
min_score, max_score = scores[0], scores[-1] | ||
except IndexError: | ||
return dict() | ||
|
||
difference_bw_groups_score = int(max_score/5) | ||
score_ranges = [ | ||
min_score + i * difference_bw_groups_score for i in range(6) | ||
] | ||
score_ranges[-1] += max_score % 5 | ||
|
||
grouped_participants = dict() | ||
for index, score in enumerate(score_ranges[1:]): | ||
begin_score, end_score = score_ranges[index], score | ||
|
||
filtered_participants = self.participants.filter( | ||
score__range=[begin_score, end_score] | ||
) | ||
|
||
if begin_score == min_score: | ||
grp_lvl = f'<{end_score}' | ||
elif end_score < max_score: | ||
grp_lvl = f'>={begin_score} and <{end_score}' | ||
else: | ||
grp_lvl = f'>={begin_score}' | ||
|
||
grouped_participants[grp_lvl] = json.dumps( | ||
self.get_users_username(filtered_participants) | ||
) | ||
return grouped_participants | ||
|
||
def get_context_data(self, **kwargs): | ||
context = super().get_context_data(**kwargs) | ||
context = get_header_and_footer(context) | ||
context['gamification_results'] = self.participants | ||
context['levels'] = Level.objects.all() | ||
context['badges'] = Badge.objects.all() | ||
context['grouped_participants'] = self.group_participants_by_score() | ||
|
||
return context |
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,165 @@ | ||
.badge-filter { | ||
width: 150px; | ||
} | ||
|
||
.bottom-center { | ||
position: absolute; | ||
width: 100px; | ||
bottom: 2%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.clear-filters { | ||
cursor: pointer; | ||
} | ||
|
||
.gamifier-details { | ||
max-width: 79%; | ||
display: flex; | ||
} | ||
|
||
.gamifier-details-part-1, | ||
.gamifier-details-part-2, | ||
.gamifier-details-part-3 { | ||
max-width: 44%; | ||
max-height: 80%; | ||
padding: 10px 5px; | ||
} | ||
|
||
.gamifier-card { | ||
width: 100%; | ||
min-height: 380px; | ||
} | ||
|
||
.gamifier-image { | ||
width: 20%; | ||
} | ||
|
||
.gamifier-image img{ | ||
width: 90%; | ||
margin-right: 0; | ||
margin-left: 1%; | ||
min-width: 100px; | ||
|
||
} | ||
|
||
.github-icon { | ||
color: white; | ||
background-color: black; | ||
border-radius: 100px; | ||
} | ||
|
||
.gitlab-icon { | ||
color: #e33834; | ||
border-radius: 100px; | ||
} | ||
|
||
.filter-btn { | ||
width: 250px; | ||
margin-top: 3%; | ||
margin-left: 3%; | ||
z-index: 0; | ||
} | ||
|
||
.filter-btn .btn-large { | ||
border-radius: 100px; | ||
} | ||
|
||
.filter-btn .btn { | ||
text-transform: none; | ||
border-radius: 100px; | ||
box-shadow: 0 0 25px 2px black; | ||
} | ||
|
||
.filters-option { | ||
margin: 3% auto auto; | ||
display: none; | ||
-webkit-animation-duration: 1s; | ||
animation-duration: 1s; | ||
-webkit-animation-fill-mode: both; | ||
animation-fill-mode: both; | ||
} | ||
|
||
.filter-select-fields { | ||
width: 50%; | ||
min-width: 350px; | ||
box-shadow: 0 0 15px 2px black; | ||
border-radius: 20px; | ||
} | ||
|
||
.level-filter { | ||
width: 145px; | ||
} | ||
|
||
.no-contribs-found { | ||
display: none; | ||
justify-content: center; | ||
} | ||
|
||
.no-contribs-found h5 { | ||
margin: 0; | ||
} | ||
|
||
.score-filter { | ||
width: 175px; | ||
} | ||
|
||
.social-icons { | ||
font-size: 1.5em; | ||
} | ||
|
||
@media only screen and (max-width: 890px){ | ||
|
||
.gamifier-card { | ||
max-width: 100%; | ||
width: auto; | ||
margin: 10px; | ||
} | ||
|
||
.gamifier-details { | ||
max-width: 100%; | ||
padding: 0 10px; | ||
} | ||
|
||
.gamifier-image { | ||
margin: auto; | ||
width: 35%; | ||
} | ||
|
||
.bottom-center { | ||
bottom: 2%; | ||
} | ||
|
||
@media only screen and (max-width: 526px){ | ||
|
||
.gamifier-details-part-3 { | ||
display: none; | ||
} | ||
|
||
.gamifier-details-part-1, | ||
.gamifier-details-part-2 { | ||
max-width: 50%; | ||
} | ||
|
||
.gamifier-image { | ||
width: 50%; | ||
} | ||
|
||
} | ||
} | ||
|
||
@-webkit-keyframes fade-in { | ||
0% {opacity: 0;} | ||
100% {opacity: 1;} | ||
} | ||
|
||
@keyframes fade-in { | ||
0% {opacity: 0;} | ||
100% {opacity: 1;} | ||
} | ||
|
||
.fade-in { | ||
-webkit-animation-name: fade-in; | ||
animation-name: fade-in; | ||
} |
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
Oops, something went wrong.