|
| 1 | +// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. |
| 2 | +// See the LICENCE file in the repository root for full licence text. |
| 3 | + |
| 4 | +import StringWithComponent from 'components/string-with-component'; |
| 5 | +import TimeWithTooltip from 'components/time-with-tooltip'; |
| 6 | +import UserLink from 'components/user-link'; |
| 7 | +import LegacyMatchEventJson from 'interfaces/legacy-match-event-json'; |
| 8 | +import UserJson from 'interfaces/user-json'; |
| 9 | +import * as React from 'react'; |
| 10 | +import { classWithModifiers } from 'utils/css'; |
| 11 | +import { trans } from 'utils/lang'; |
| 12 | + |
| 13 | +interface Props { |
| 14 | + event: LegacyMatchEventJson; |
| 15 | + users: Partial<Record<number, UserJson>>; |
| 16 | +} |
| 17 | + |
| 18 | +const icons = { |
| 19 | + 'host-changed': ['fas fa-exchange-alt'], |
| 20 | + 'match-created': ['fas fa-plus'], |
| 21 | + 'match-disbanded': ['fas fa-times'], |
| 22 | + 'player-joined': ['fas fa-arrow-right', 'far fa-circle'], |
| 23 | + 'player-kicked': ['fas fa-arrow-left', 'fas fa-ban'], |
| 24 | + 'player-left': ['fas fa-arrow-left', 'far fa-circle'], |
| 25 | +}; |
| 26 | + |
| 27 | +export default function Event(props: Props) { |
| 28 | + const user = props.event.user_id != null ? props.users[props.event.user_id] : undefined; |
| 29 | + |
| 30 | + const eventType = props.event.detail.type; |
| 31 | + if (eventType === 'other') { |
| 32 | + return null; |
| 33 | + } |
| 34 | + |
| 35 | + return ( |
| 36 | + <div className='mp-history-event'> |
| 37 | + <div className='mp-history-event__time'> |
| 38 | + <TimeWithTooltip dateTime={props.event.timestamp} format='LTS' /> |
| 39 | + </div> |
| 40 | + <div className={classWithModifiers('mp-history-event__type', [eventType])}> |
| 41 | + {icons[eventType].map((m) => <i key={m} className={m} />)} |
| 42 | + </div> |
| 43 | + <div className='mp-history-event__text'> |
| 44 | + { |
| 45 | + user == null |
| 46 | + ? trans(`matches.match.events.${eventType}-no-user`) |
| 47 | + : <StringWithComponent |
| 48 | + mappings={{ |
| 49 | + user: (<UserLink |
| 50 | + className='mp-history-event__username' |
| 51 | + user={user} |
| 52 | + />), |
| 53 | + }} |
| 54 | + pattern={trans(`matches.match.events.${eventType}`)} /> |
| 55 | + } |
| 56 | + </div> |
| 57 | + </div> |
| 58 | + ); |
| 59 | +} |
0 commit comments