13
13
// limitations under the License.
14
14
15
15
import React from 'react' ;
16
- import { Link } from 'react-router-dom' ;
16
+ import { Link , useLocation } from 'react-router-dom' ;
17
17
18
18
import FixedRatioThumbnail from '../common/FixedRatioThumbnail' ;
19
19
import GridFlow from '../common/GridFlow' ;
@@ -51,11 +51,13 @@ function TeamLink({ id, children }: TeamLinkProps) {
51
51
type TeamItemProps = {
52
52
teamId : string ;
53
53
team : Team ;
54
+ highlight ?: boolean ,
54
55
} ;
55
56
56
57
function TeamItem ( {
57
58
teamId,
58
59
team : { name, university, country, photo, members } ,
60
+ highlight,
59
61
} : TeamItemProps ) {
60
62
const displayNames = [ ] ;
61
63
for ( const profile of members ) {
@@ -67,7 +69,7 @@ function TeamItem({
67
69
const memberNames = displayNames . join ( ' / ' ) ;
68
70
return (
69
71
< div
70
- className = "card mb-3"
72
+ className = { "card mb-3" + ( highlight ? " team-highlight" : undefined ) }
71
73
style = { { backgroundColor : hasInfo ? undefined : 'inherit !important' } }
72
74
id = { teamId }
73
75
>
@@ -122,14 +124,17 @@ type TeamListSimpleProps = {
122
124
} ;
123
125
124
126
function TeamListSimple ( { teams } : TeamListSimpleProps ) {
127
+ const { hash } = useLocation ( ) ;
128
+ const highlightTeamId = ( hash . length > 1 ) ? hash . slice ( 1 ) : null ;
129
+ console . log ( highlightTeamId ) ;
125
130
const items = Object . keys ( teams )
126
131
. sort (
127
132
( a , b ) =>
128
133
teams [ a ] . university . localeCompare ( teams [ b ] . university ) ||
129
134
teams [ a ] . name . localeCompare ( teams [ b ] . name ) ||
130
135
a . localeCompare ( b )
131
136
)
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 } /> ) ;
133
138
return < TeamItemFlow > { items } </ TeamItemFlow > ;
134
139
}
135
140
0 commit comments