1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 05:47:25 +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.

58 lines
2.1 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
{
2022-11-24 13:32:20 +08:00
public partial class CollectionsSettings : SettingsSubsection
{
2022-09-16 20:08:25 +08:00
protected override LocalisableString Header => CommonStrings.Collections;
2022-06-22 12:07:44 +08:00
private SettingsButton importCollectionsButton = null!;
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]
2022-07-27 14:59:36 +08:00
private void load(LegacyImportManager? legacyImportManager, IDialogOverlay? dialogOverlay)
{
2022-06-22 06:41:25 +08:00
if (legacyImportManager?.SupportsImportFromStable == true)
{
Add(importCollectionsButton = new SettingsButton
{
2022-06-22 06:41:25 +08:00
Text = MaintenanceSettingsStrings.ImportCollectionsFromStable,
Action = () =>
{
2022-06-22 06:41:25 +08:00
importCollectionsButton.Enabled.Value = false;
2022-06-24 20:25:23 +08:00
legacyImportManager.ImportFromStableAsync(StableContent.Collections).ContinueWith(_ => Schedule(() => importCollectionsButton.Enabled.Value = true));
}
});
}
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
}
}
}