File tree 3 files changed +13
-20
lines changed
3 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 9
9
use App \Jobs \EsDocument ;
10
10
use App \Libraries \Transactions \AfterCommit ;
11
11
use App \Traits \Memoizes ;
12
- use DB ;
13
12
use Illuminate \Database \Eloquent \Builder ;
14
13
use Illuminate \Database \Eloquent \Collection ;
15
14
use Illuminate \Database \Eloquent \SoftDeletes ;
@@ -166,21 +165,18 @@ public function scopeScoreable($query)
166
165
167
166
public function scopeWithMaxCombo ($ query )
168
167
{
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 ]);
184
180
}
185
181
186
182
public function scopeWithUserPlaycount (Builder $ query , ?int $ userId ): Builder
Original file line number Diff line number Diff line change 76
76
77
77
&__actor {
78
78
color : @osu-colour-l1 ;
79
-
80
- & ::before {
81
- content : " " ;
82
- }
83
79
}
84
80
}
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ const ColumnDescription = ({ history }: ColumnProps) => (
43
43
44
44
{ history . actor != null && (
45
45
< span className = { `${ bn } __actor` } >
46
+ { ' ' }
46
47
< StringWithComponent
47
48
mappings = { { username : < UserLink user = { history . actor } /> } }
48
49
pattern = { trans ( 'users.show.extra.account_standing.recent_infringements.actor' ) }
You can’t perform that action at this time.
0 commit comments