1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 00:53:20 +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.

50 lines
1.8 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.
#nullable disable
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Localisation;
using osu.Game.Collections;
using osu.Game.Database;
using osu.Game.Localisation;
namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public class CollectionsSettings : SettingsSubsection
{
protected override LocalisableString Header => "Collections";
private SettingsButton importCollectionsButton;
[BackgroundDependencyLoader(permitNulls: true)]
private void load([CanBeNull] CollectionManager collectionManager, [CanBeNull] LegacyImportManager legacyImportManager, IDialogOverlay dialogOverlay)
{
2022-06-22 06:41:25 +08:00
if (collectionManager == null) return;
if (legacyImportManager?.SupportsImportFromStable == true)
2022-06-22 06:41:25 +08:00
{
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;
legacyImportManager.ImportFromStableAsync(StableContent.Collections).ContinueWith(t => Schedule(() => importCollectionsButton.Enabled.Value = true));
}
});
}
2022-06-22 06:41:25 +08:00
Add(new DangerousSettingsButton
{
Text = MaintenanceSettingsStrings.DeleteAllCollections,
Action = () =>
{
dialogOverlay?.Push(new MassDeleteConfirmationDialog(collectionManager.DeleteAll));
}
});
}
}
}