Compare commits

...

3 Commits

Author SHA1 Message Date
fc8592f8ab
fix: bar height 2025-03-24 14:19:05 +01:00
195d240a87
feat: use better query 2025-03-24 14:18:40 +01:00
df16497476
feat: add Team nav link 2025-03-24 14:14:11 +01:00
3 changed files with 24 additions and 8 deletions

View File

@ -6,7 +6,7 @@ from fastapi.responses import JSONResponse
from pydantic import BaseModel, Field
from sqlmodel import Session, func, select
from sqlmodel.sql.expression import SelectOfScalar
from cutt.db import Chemistry, MVPRanking, Player, Team, engine
from cutt.db import Chemistry, MVPRanking, Player, PlayerTeamLink, Team, engine
import networkx as nx
import numpy as np
import matplotlib
@ -63,8 +63,12 @@ def graph_json(
edges = []
player_map = {}
with Session(engine) as session:
statement = select(Team).where(Team.id == request.team_id)
players = [t.players for t in session.exec(statement)][0]
players = session.exec(
select(P)
.join(PlayerTeamLink)
.join(Team)
.where(Team.id == request.team_id, P.disabled == False)
).all()
if not players:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
for p in players:
@ -227,8 +231,12 @@ def mvp(
):
ranks = dict()
with Session(engine) as session:
statement = select(Team).where(Team.id == request.team_id)
players = [t.players for t in session.exec(statement)][0]
players = session.exec(
select(P)
.join(PlayerTeamLink)
.join(Team)
.where(Team.id == request.team_id, P.disabled == False)
).all()
if not players:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
player_map = {p.id: p.display_name for p in players}
@ -268,8 +276,12 @@ async def turnout(
):
player_map = {}
with Session(engine) as session:
statement = select(Team).where(Team.id == request.team_id)
players = [t.players for t in session.exec(statement)][0]
players = session.exec(
select(P)
.join(PlayerTeamLink)
.join(Team)
.where(Team.id == request.team_id, P.disabled == False)
).all()
if not players:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
for p in players:

View File

@ -20,6 +20,10 @@ export default function Footer() {
<Link to="/mvp">
<span>MVP</span>
</Link>
<span>|</span>
<Link to="/team">
<span>Team</span>
</Link>
</div>
)}
<p className="grey extra-margin">

View File

@ -16,7 +16,7 @@ const determineNiceWidth = (width: number) => {
const RaceChart: FC<RaceChartProps> = ({ players, std }) => {
const [width, setWidth] = useState(determineNiceWidth(window.innerWidth));
//const [height, setHeight] = useState(window.innerHeight);
const height = Math.max(3, players.length) * 40;
const height = (players.length + 1) * 40;
useEffect(() => {
const handleResize = () => {