2022-06-22 12:02:33 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2022-06-22 06:00:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2024-02-23 11:40:02 +08:00
|
|
|
|
using System.Linq;
|
2022-06-22 06:00:03 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Localisation;
|
2022-07-27 15:46:23 +08:00
|
|
|
|
using osu.Game.Collections;
|
2022-06-22 06:00:03 +08:00
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.Localisation;
|
2022-07-27 14:59:36 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2022-06-22 06:00:03 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
|
|
|
|
public partial class CollectionsSettings : SettingsSubsection
|
|
|
|
|
{
|
2022-09-16 20:08:25 +08:00
|
|
|
|
protected override LocalisableString Header => CommonStrings.Collections;
|
2022-06-22 06:00:03 +08:00
|
|
|
|
|
2022-07-27 14:59:36 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private RealmAccess realm { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
2022-07-28 13:35:27 +08:00
|
|
|
|
private INotificationOverlay? notificationOverlay { get; set; }
|
2022-07-27 14:59:36 +08:00
|
|
|
|
|
2022-06-22 12:07:44 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2023-01-10 02:17:40 +08:00
|
|
|
|
private void load(IDialogOverlay? dialogOverlay)
|
2022-06-22 06:00:03 +08:00
|
|
|
|
{
|
2022-06-22 06:41:25 +08:00
|
|
|
|
Add(new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = MaintenanceSettingsStrings.DeleteAllCollections,
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2022-07-27 14:59:36 +08:00
|
|
|
|
dialogOverlay?.Push(new MassDeleteConfirmationDialog(deleteAllCollections));
|
2022-06-22 06:41:25 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2022-06-22 06:00:03 +08:00
|
|
|
|
}
|
2022-07-27 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
private void deleteAllCollections()
|
|
|
|
|
{
|
2024-02-23 11:40:02 +08:00
|
|
|
|
bool anyDeleted = realm.Write(r =>
|
|
|
|
|
{
|
|
|
|
|
if (r.All<BeatmapCollection>().Any())
|
|
|
|
|
{
|
|
|
|
|
r.RemoveAll<BeatmapCollection>();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
notificationOverlay?.Post(new ProgressCompletionNotification { Text = anyDeleted ? MaintenanceSettingsStrings.DeletedAllCollections : MaintenanceSettingsStrings.NoCollectionsFoundToDelete });
|
2022-07-27 14:59:36 +08:00
|
|
|
|
}
|
2022-06-22 06:00:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|