Skip to content

Commit b795603

Browse files
authored
Merge pull request #12030 from bdach/mp-history-ts/match-event
Convert multiplayer match history event component to typescript
2 parents 16a0028 + 0fa80d7 commit b795603

File tree

8 files changed

+130
-46
lines changed

8 files changed

+130
-46
lines changed

app/Models/LegacyMatch/Score.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @property mixed $rank
2626
* @property int $score
2727
* @property int $slot
28-
* @property int $team
28+
* @property mixed $team
2929
* @property int $user_id
3030
*/
3131
class Score extends Model
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 LegacyMatchGameJson from './legacy-match-game-json';
5+
6+
export default interface LegacyMatchEventJson {
7+
detail: LegacyMatchEventDetail;
8+
game?: LegacyMatchGameJson;
9+
id: number;
10+
timestamp: string;
11+
user_id?: number;
12+
}
13+
14+
export type LegacyMatchEventType =
15+
| 'host-changed'
16+
| 'match-created'
17+
| 'match-disbanded'
18+
| 'other'
19+
| 'player-joined'
20+
| 'player-kicked'
21+
| 'player-left';
22+
23+
export interface LegacyMatchEventDetail {
24+
text?: string;
25+
type: LegacyMatchEventType;
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 BeatmapJson from './beatmap-json';
5+
import Ruleset from './ruleset';
6+
import ScoreJson from './score-json';
7+
8+
export default interface LegacyMatchGameJson {
9+
beatmap?: BeatmapJson;
10+
beatmap_id: number;
11+
end_time?: string;
12+
id: number;
13+
mode: Ruleset;
14+
mode_int: number;
15+
mods: string[]; // TODO: use ModJson
16+
scores: ScoreJson[]; // TODO: use SoloScoreJson
17+
scoring_type: LegacyMatchScoringType;
18+
start_time: string;
19+
team_type: LegacyMatchTeamType;
20+
}
21+
22+
export type LegacyMatchScoringType =
23+
| 'accuracy'
24+
| 'combo'
25+
| 'score'
26+
| 'scorev2';
27+
28+
export type LegacyMatchTeamType =
29+
| 'head-to-head'
30+
| 'tag-coop'
31+
| 'tag-team-vs'
32+
| 'team-vs';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
export default interface LegacyMatchJson {
5+
end_time?: string;
6+
id: number;
7+
name: string;
8+
start_time: string;
9+
}

resources/js/interfaces/score-json.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface ScoreCurrentUserAttributesJson {
2121
interface Match {
2222
pass: boolean;
2323
slot: number;
24-
team: number;
24+
team: 'blue' | 'none' | 'red';
2525
}
2626

2727
interface PpWeight {
@@ -59,7 +59,7 @@ interface ScoreJsonDefaultAttributes {
5959
replay: boolean;
6060
score: number;
6161
statistics: Record<ScoreStatisticsAttribute, number>;
62-
type: 'solo_score' | `score_best_${Ruleset}` | `score_${Ruleset}`;
62+
type: 'legacy_match_score' | 'solo_score' | `score_best_${Ruleset}` | `score_${Ruleset}`;
6363
user_id: number;
6464
}
6565

resources/js/mp-history/content.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { button, div, h3 } from 'react-dom-factories'
77
import { classWithModifiers } from 'utils/css'
88
import { bottomPageDistance } from 'utils/html'
99
import { trans } from 'utils/lang'
10-
import { Event } from './event'
10+
import Event from './event'
1111
import { Game } from './game'
1212

1313
el = React.createElement

resources/js/mp-history/event.coffee

-42
This file was deleted.

resources/js/mp-history/event.tsx

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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

Comments
 (0)