Skip to content

Commit 7732162

Browse files
authored
Merge pull request #12042 from tsunyoku/separate-user-tags
Separate user tags on beatmapset info
2 parents 1edd27e + 007aedc commit 7732162

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

resources/js/beatmapsets-show/info.tsx

+24-12
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,6 @@ export default class Info extends React.Component<Props> {
6565
return ret;
6666
}
6767

68-
private get tags() {
69-
const tags = this.controller.tags;
70-
71-
return [
72-
...tags.userTags.map((tag) => tag.name),
73-
...tags.mapperTags,
74-
];
75-
}
76-
7768
private get withEditDescription() {
7869
return this.controller.beatmapset.description.bbcode != null;
7970
}
@@ -196,13 +187,34 @@ export default class Info extends React.Component<Props> {
196187
</div>
197188
</div>
198189

199-
{this.tags.length > 0 &&
190+
{this.controller.tags.userTags.length > 0 &&
191+
<div className='beatmapset-info__row beatmapset-info__row--value-overflow'>
192+
<h3 className='beatmapset-info__header'>
193+
{trans('beatmapsets.show.info.user_tags')}
194+
</h3>
195+
<div className='beatmapset-info__value-overflow'>
196+
{this.controller.tags.userTags.map((tag, i) => (
197+
<React.Fragment key={`${tag.name}-${i}`}>
198+
<a
199+
className='beatmapset-info__link'
200+
href={route('beatmapsets.index', { q: tag.name })}
201+
>
202+
{tag.name}
203+
</a>
204+
{' '}
205+
</React.Fragment>
206+
))}
207+
</div>
208+
</div>
209+
}
210+
211+
{this.controller.tags.mapperTags.length > 0 &&
200212
<div className='beatmapset-info__row beatmapset-info__row--value-overflow'>
201213
<h3 className='beatmapset-info__header'>
202-
{trans('beatmapsets.show.info.tags')}
214+
{trans('beatmapsets.show.info.mapper_tags')}
203215
</h3>
204216
<div className='beatmapset-info__value-overflow'>
205-
{this.tags.map((tag, i) => (
217+
{this.controller.tags.mapperTags.map((tag, i) => (
206218
<React.Fragment key={`${tag}-${i}`}>
207219
<a
208220
className='beatmapset-info__link'

resources/js/beatmapsets-show/metadata-editor.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default class MetadataEditor extends React.Component<Props> {
124124
{this.canEditTags &&
125125
<label className='simple-form__row'>
126126
<div className='simple-form__label'>
127-
{trans('beatmapsets.show.info.tags')}
127+
{trans('beatmapsets.show.info.mapper_tags')}
128128
</div>
129129

130130
<textarea

resources/lang/en/beatmapsets.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@
148148
'source' => 'Source',
149149
'storyboard' => 'This beatmap contains storyboard',
150150
'success-rate' => 'Success Rate',
151-
'tags' => 'Tags',
152151
'video' => 'This beatmap contains video',
152+
'user_tags' => 'User Tags',
153+
'mapper_tags' => 'Mapper Tags',
153154
],
154155

155156
'nsfw_warning' => [

0 commit comments

Comments
 (0)