forked from MarseyWorld/MarseyWorld
leaderboards: fix usernames in tables i think
i'm not *happy* about this, something seems inelegant about this solution...master
parent
55c8ce6e9d
commit
9048f5127d
|
@ -17,6 +17,7 @@ class Leaderboard:
|
||||||
all_users = None
|
all_users = None
|
||||||
v_position = 0
|
v_position = 0
|
||||||
v_value = None
|
v_value = None
|
||||||
|
user_func = None
|
||||||
value_func = None
|
value_func = None
|
||||||
|
|
||||||
def __init__(self, header_name:str, table_header_name:str, html_id:str, table_column_name:str,
|
def __init__(self, header_name:str, table_header_name:str, html_id:str, table_column_name:str,
|
||||||
|
@ -33,9 +34,11 @@ class Leaderboard:
|
||||||
self.v_position = lb[1]
|
self.v_position = lb[1]
|
||||||
self.v_value = lb[2]
|
self.v_value = lb[2]
|
||||||
if value_func:
|
if value_func:
|
||||||
|
self.user_func = lambda u:u
|
||||||
self.value_func = value_func
|
self.value_func = value_func
|
||||||
self.v_value = value_func(v)
|
self.v_value = value_func(v)
|
||||||
else:
|
else:
|
||||||
|
self.user_func = lambda u:u[0]
|
||||||
self.value_func = lambda u: u[1] or 0
|
self.value_func = lambda u: u[1] or 0
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
@ -94,4 +97,3 @@ class Leaderboard:
|
||||||
if not position: position = (leaderboard.count() + 1, 0)
|
if not position: position = (leaderboard.count() + 1, 0)
|
||||||
leaderboard = leaderboard.limit(limit).all()
|
leaderboard = leaderboard.limit(limit).all()
|
||||||
return (leaderboard, position[0], position[1])
|
return (leaderboard, position[0], position[1])
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
{% if v.id == user.id %}
|
{% if v.id == user.id %}
|
||||||
{% set style="class=\"self\"" %}
|
{% set style="class=\"self\"" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{format_user_in_table(user, style, loop.index, lb.value_func(user), lb.user_relative_url)}}
|
{{format_user_in_table(lb.user_func(user), style, loop.index, lb.value_func(user), lb.user_relative_url)}}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if lb.v_position %}
|
{% if lb.v_position %}
|
||||||
{{format_user_in_table(v, "style=\"border-top:2px solid var(--primary)\"", lb.v_position, lb.v_value, lb.user_relative_url)}}
|
{{format_user_in_table(v, "style=\"border-top:2px solid var(--primary)\"", lb.v_position, lb.v_value, lb.user_relative_url)}}
|
||||||
|
|
Loading…
Reference in New Issue