Skip to content

Commit 489f7bf

Browse files
authored
Merge branch 'master' into beatmapset-search-docs-title
2 parents 7526afb + 026c39d commit 489f7bf

File tree

3 files changed

+13
-20
lines changed

3 files changed

+13
-20
lines changed

app/Models/Beatmap.php

+12-16
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use App\Jobs\EsDocument;
1010
use App\Libraries\Transactions\AfterCommit;
1111
use App\Traits\Memoizes;
12-
use DB;
1312
use Illuminate\Database\Eloquent\Builder;
1413
use Illuminate\Database\Eloquent\Collection;
1514
use Illuminate\Database\Eloquent\SoftDeletes;
@@ -166,21 +165,18 @@ public function scopeScoreable($query)
166165

167166
public function scopeWithMaxCombo($query)
168167
{
169-
$mods = BeatmapDifficultyAttrib::NO_MODS;
170-
$attrib = BeatmapDifficultyAttrib::MAX_COMBO;
171-
$attribTable = (new BeatmapDifficultyAttrib())->tableName();
172-
$mode = $this->qualifyColumn('playmode');
173-
$id = $this->qualifyColumn('beatmap_id');
174-
175-
return $query
176-
->addSelect(['attrib_max_combo' => DB::raw("(
177-
SELECT value
178-
FROM {$attribTable}
179-
WHERE beatmap_id = {$id}
180-
AND mode = {$mode}
181-
AND mods = {$mods}
182-
AND attrib_id = {$attrib}
183-
)")]);
168+
$valueQuery = BeatmapDifficultyAttrib
169+
::select('value')
170+
->whereColumn([
171+
'beatmap_id' => $this->qualifyColumn('beatmap_id'),
172+
'mode' => $this->qualifyColumn('playmode'),
173+
])
174+
->where([
175+
'attrib_id' => BeatmapDifficultyAttrib::MAX_COMBO,
176+
'mods' => BeatmapDifficultyAttrib::NO_MODS,
177+
]);
178+
179+
return $query->addSelect(['attrib_max_combo' => $valueQuery]);
184180
}
185181

186182
public function scopeWithUserPlaycount(Builder $query, ?int $userId): Builder

resources/css/bem/profile-extra-recent-infringements.less

-4
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,5 @@
7676

7777
&__actor {
7878
color: @osu-colour-l1;
79-
80-
&::before {
81-
content: "";
82-
}
8379
}
8480
}

resources/js/profile-page/account-standing.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const ColumnDescription = ({ history }: ColumnProps) => (
4343

4444
{history.actor != null && (
4545
<span className={`${bn}__actor`}>
46+
{' '}
4647
<StringWithComponent
4748
mappings={{ username: <UserLink user={history.actor} /> }}
4849
pattern={trans('users.show.extra.account_standing.recent_infringements.actor')}

0 commit comments

Comments
 (0)