2019-01-24 17:43:03 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-07-17 14:57:05 +02:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.Profile.Sections.Beatmaps;
|
2021-07-17 14:57:05 +02:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class BeatmapsSection : ProfileSection
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-07-17 14:57:05 +02:00
|
|
|
|
public override LocalisableString Title => UsersStrings.ShowExtraBeatmapsTitle;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-07-19 18:15:09 +09:00
|
|
|
|
public override string Identifier => @"beatmaps";
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public BeatmapsSection()
|
|
|
|
|
{
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2021-07-17 15:45:17 +02:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Favourite, User, UsersStrings.ShowExtraBeatmapsFavouriteTitle),
|
2021-07-20 21:48:38 +02:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Ranked, User, UsersStrings.ShowExtraBeatmapsRankedTitle),
|
2021-07-17 15:45:17 +02:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Loved, User, UsersStrings.ShowExtraBeatmapsLovedTitle),
|
2022-04-22 09:18:42 +03:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Guest, User, UsersStrings.ShowExtraBeatmapsGuestTitle),
|
2022-04-22 09:28:27 +03:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Pending, User, UsersStrings.ShowExtraBeatmapsPendingTitle),
|
2022-12-06 23:36:11 -08:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Graveyard, User, UsersStrings.ShowExtraBeatmapsGraveyardTitle),
|
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Nominated, User, UsersStrings.ShowExtraBeatmapsNominatedTitle),
|
2018-04-13 18:19:50 +09:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|