mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-15 20:58:07 +00:00
102 lines
No EOL
3.1 KiB
C#
102 lines
No EOL
3.1 KiB
C#
using DynamicData;
|
|
using DynamicData.Binding;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Splat;
|
|
using System.Reactive;
|
|
|
|
namespace ServiceLib.ViewModels
|
|
{
|
|
public class SubSettingViewModel : MyReactiveObject
|
|
{
|
|
private IObservableCollection<SubItem> _subItems = new ObservableCollectionExtended<SubItem>();
|
|
public IObservableCollection<SubItem> SubItems => _subItems;
|
|
|
|
[Reactive]
|
|
public SubItem SelectedSource { get; set; }
|
|
|
|
public IList<SubItem> SelectedSources { get; set; }
|
|
|
|
public ReactiveCommand<Unit, Unit> SubAddCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> SubDeleteCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> SubEditCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> SubShareCmd { get; }
|
|
public bool IsModified { get; set; }
|
|
|
|
public SubSettingViewModel(Func<EViewAction, object?, Task<bool>>? updateView)
|
|
{
|
|
_config = LazyConfig.Instance.Config;
|
|
_noticeHandler = Locator.Current.GetService<NoticeHandler>();
|
|
_updateView = updateView;
|
|
|
|
SelectedSource = new();
|
|
|
|
RefreshSubItems();
|
|
|
|
var canEditRemove = this.WhenAnyValue(
|
|
x => x.SelectedSource,
|
|
selectedSource => selectedSource != null && !selectedSource.id.IsNullOrEmpty());
|
|
|
|
SubAddCmd = ReactiveCommand.Create(() =>
|
|
{
|
|
EditSubAsync(true);
|
|
});
|
|
SubDeleteCmd = ReactiveCommand.Create(() =>
|
|
{
|
|
DeleteSubAsync();
|
|
}, canEditRemove);
|
|
SubEditCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await EditSubAsync(false);
|
|
}, canEditRemove);
|
|
SubShareCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await _updateView?.Invoke(EViewAction.ShareSub, SelectedSource?.url);
|
|
}, canEditRemove);
|
|
}
|
|
|
|
public void RefreshSubItems()
|
|
{
|
|
_subItems.Clear();
|
|
_subItems.AddRange(LazyConfig.Instance.SubItems().OrderBy(t => t.sort));
|
|
}
|
|
|
|
public async Task EditSubAsync(bool blNew)
|
|
{
|
|
SubItem item;
|
|
if (blNew)
|
|
{
|
|
item = new();
|
|
}
|
|
else
|
|
{
|
|
item = LazyConfig.Instance.GetSubItem(SelectedSource?.id);
|
|
if (item is null)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
if (await _updateView?.Invoke(EViewAction.SubEditWindow, item) == true)
|
|
{
|
|
RefreshSubItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
|
|
private async Task DeleteSubAsync()
|
|
{
|
|
if (await _updateView?.Invoke(EViewAction.ShowYesNo, null) == false)
|
|
{
|
|
return;
|
|
}
|
|
|
|
foreach (var it in SelectedSources ?? [SelectedSource])
|
|
{
|
|
ConfigHandler.DeleteSubItem(_config, it.id);
|
|
}
|
|
RefreshSubItems();
|
|
_noticeHandler?.Enqueue(ResUI.OperationSuccess);
|
|
IsModified = true;
|
|
}
|
|
}
|
|
} |