1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 23:27:32 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Maintenance/CollectionsSettings.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.4 KiB
C#
Raw Normal View History

2022-06-22 12:02:33 +08: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.
using osu.Framework.Allocation;
using osu.Framework.Localisation;
using osu.Game.Collections;
using osu.Game.Database;
using osu.Game.Localisation;
2022-07-27 14:59:36 +08:00
using osu.Game.Overlays.Notifications;
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-07-27 14:59:36 +08:00
[Resolved]
private RealmAccess realm { get; set; } = null!;
[Resolved]
private INotificationOverlay? notificationOverlay { get; set; }
2022-07-27 14:59:36 +08:00
2022-06-22 12:07:44 +08:00
[BackgroundDependencyLoader]
private void load(IDialogOverlay? dialogOverlay)
{
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-07-27 14:59:36 +08:00
private void deleteAllCollections()
{
realm.Write(r => r.RemoveAll<BeatmapCollection>());
2022-09-16 17:31:02 +08:00
notificationOverlay?.Post(new ProgressCompletionNotification { Text = MaintenanceSettingsStrings.DeletedAllCollections });
2022-07-27 14:59:36 +08:00
}
}
}