Skip to content

Commit 243c23c

Browse files
committed
frontend: improve team highlight handling
1 parent feec35e commit 243c23c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

frontend/src/components/standings/StandingsTable.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ class TeamGenericCol extends React.Component<TeamGenericColProps> {
7878
// FIXME: get the correct hight.
7979
const yOffset = -80;
8080
window.scrollTo({ top: yCoordinate + yOffset, behavior: 'smooth' });
81-
el.className += ' team-highlight';
8281
};
8382
const inner = to ? (
8483
<HashLink

frontend/src/components/teams/TeamList.tsx

+8-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
import React from 'react';
16-
import { Link } from 'react-router-dom';
16+
import { Link, useLocation } from 'react-router-dom';
1717

1818
import FixedRatioThumbnail from '../common/FixedRatioThumbnail';
1919
import GridFlow from '../common/GridFlow';
@@ -51,11 +51,13 @@ function TeamLink({ id, children }: TeamLinkProps) {
5151
type TeamItemProps = {
5252
teamId: string;
5353
team: Team;
54+
highlight?: boolean,
5455
};
5556

5657
function TeamItem({
5758
teamId,
5859
team: { name, university, country, photo, members },
60+
highlight,
5961
}: TeamItemProps) {
6062
const displayNames = [];
6163
for (const profile of members) {
@@ -67,7 +69,7 @@ function TeamItem({
6769
const memberNames = displayNames.join(' / ');
6870
return (
6971
<div
70-
className="card mb-3"
72+
className={"card mb-3" + (highlight ? " team-highlight" : undefined)}
7173
style={{ backgroundColor: hasInfo ? undefined : 'inherit !important' }}
7274
id={teamId}
7375
>
@@ -122,14 +124,17 @@ type TeamListSimpleProps = {
122124
};
123125

124126
function TeamListSimple({ teams }: TeamListSimpleProps) {
127+
const { hash } = useLocation();
128+
const highlightTeamId = (hash.length > 1) ? hash.slice(1) : null;
129+
console.log(highlightTeamId);
125130
const items = Object.keys(teams)
126131
.sort(
127132
(a, b) =>
128133
teams[a].university.localeCompare(teams[b].university) ||
129134
teams[a].name.localeCompare(teams[b].name) ||
130135
a.localeCompare(b)
131136
)
132-
.map((id) => <TeamItem key={id} teamId={id} team={teams[id]} />);
137+
.map((id) => <TeamItem key={id} teamId={id} team={teams[id]} highlight={highlightTeamId === id} />);
133138
return <TeamItemFlow>{items}</TeamItemFlow>;
134139
}
135140

0 commit comments

Comments
 (0)