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.
|
|
|
|
|
|
|
|
|
|
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 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-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]
|
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]
|
2022-07-27 14:59:36 +08:00
|
|
|
|
private void load(LegacyImportManager? legacyImportManager, IDialogOverlay? dialogOverlay)
|
2022-06-22 06:00:03 +08:00
|
|
|
|
{
|
2022-06-22 06:41:25 +08:00
|
|
|
|
if (legacyImportManager?.SupportsImportFromStable == true)
|
|
|
|
|
{
|
|
|
|
|
Add(importCollectionsButton = new SettingsButton
|
2022-06-22 06:00:03 +08:00
|
|
|
|
{
|
2022-06-22 06:41:25 +08:00
|
|
|
|
Text = MaintenanceSettingsStrings.ImportCollectionsFromStable,
|
2022-06-22 06:00:03 +08:00
|
|
|
|
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: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()
|
|
|
|
|
{
|
2022-07-27 15:46:23 +08:00
|
|
|
|
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
|
|
|
|
}
|
2022-06-22 06:00:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|