mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-20 06:02:23 +00:00
105 lines
No EOL
3.2 KiB
C#
105 lines
No EOL
3.2 KiB
C#
using DynamicData;
|
|
using DynamicData.Binding;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
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 = AppHandler.Instance.Config;
|
|
_updateView = updateView;
|
|
|
|
var canEditRemove = this.WhenAnyValue(
|
|
x => x.SelectedSource,
|
|
selectedSource => selectedSource != null && !selectedSource.Id.IsNullOrEmpty());
|
|
|
|
SubAddCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await EditSubAsync(true);
|
|
});
|
|
SubDeleteCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await DeleteSubAsync();
|
|
}, canEditRemove);
|
|
SubEditCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await EditSubAsync(false);
|
|
}, canEditRemove);
|
|
SubShareCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await _updateView?.Invoke(EViewAction.ShareSub, SelectedSource?.Url);
|
|
}, canEditRemove);
|
|
|
|
Init();
|
|
}
|
|
|
|
private async Task Init()
|
|
{
|
|
SelectedSource = new();
|
|
|
|
await RefreshSubItems();
|
|
}
|
|
|
|
public async Task RefreshSubItems()
|
|
{
|
|
_subItems.Clear();
|
|
_subItems.AddRange(await AppHandler.Instance.SubItems());
|
|
}
|
|
|
|
public async Task EditSubAsync(bool blNew)
|
|
{
|
|
SubItem item;
|
|
if (blNew)
|
|
{
|
|
item = new();
|
|
}
|
|
else
|
|
{
|
|
item = await AppHandler.Instance.GetSubItem(SelectedSource?.Id);
|
|
if (item is null)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
if (await _updateView?.Invoke(EViewAction.SubEditWindow, item) == true)
|
|
{
|
|
await RefreshSubItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
|
|
private async Task DeleteSubAsync()
|
|
{
|
|
if (await _updateView?.Invoke(EViewAction.ShowYesNo, null) == false)
|
|
{
|
|
return;
|
|
}
|
|
|
|
foreach (var it in SelectedSources ?? [SelectedSource])
|
|
{
|
|
await ConfigHandler.DeleteSubItem(_config, it.Id);
|
|
}
|
|
await RefreshSubItems();
|
|
NoticeHandler.Instance.Enqueue(ResUI.OperationSuccess);
|
|
IsModified = true;
|
|
}
|
|
}
|
|
} |