mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-25 07:48:01 +03:00
101 lines
2.8 KiB
C#
101 lines
2.8 KiB
C#
namespace ServiceLib.ViewModels;
|
|
|
|
public partial class SubSettingViewModel : MyReactiveObject
|
|
{
|
|
public Interaction<string, bool> ShowYesNoInteraction { get; } = new();
|
|
public Interaction<string, RxVoid> ShareSubInteraction { get; } = new();
|
|
|
|
public BulkObservableCollection<SubItem> SubItems { get; } = [];
|
|
|
|
[Reactive]
|
|
public partial SubItem SelectedSource { get; set; }
|
|
|
|
public IList<SubItem> SelectedSources { get; set; }
|
|
|
|
public ReactiveCommand<RxVoid, RxVoid> SubAddCmd { get; }
|
|
public ReactiveCommand<RxVoid, RxVoid> SubDeleteCmd { get; }
|
|
public ReactiveCommand<RxVoid, RxVoid> SubEditCmd { get; }
|
|
public ReactiveCommand<RxVoid, RxVoid> SubShareCmd { get; }
|
|
public bool IsModified { get; set; }
|
|
|
|
public SubSettingViewModel()
|
|
{
|
|
_config = AppManager.Instance.Config;
|
|
|
|
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 ShareSubInteraction.HandleSafe(SelectedSource?.Url);
|
|
}, canEditRemove);
|
|
|
|
_ = Init();
|
|
}
|
|
|
|
private async Task Init()
|
|
{
|
|
SelectedSource = new();
|
|
|
|
await RefreshSubItems();
|
|
}
|
|
|
|
public async Task RefreshSubItems()
|
|
{
|
|
SubItems.Clear();
|
|
SubItems.AddRange(await AppManager.Instance.SubItems());
|
|
}
|
|
|
|
public async Task EditSubAsync(bool blNew)
|
|
{
|
|
SubItem item;
|
|
if (blNew)
|
|
{
|
|
item = new();
|
|
}
|
|
else
|
|
{
|
|
item = await AppManager.Instance.GetSubItem(SelectedSource?.Id);
|
|
if (item is null)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
var subEditViewModel = new SubEditViewModel(item);
|
|
if (await AppManager.Instance.WindowDialog.ShowDialogAsync(subEditViewModel) == true)
|
|
{
|
|
await RefreshSubItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
|
|
private async Task DeleteSubAsync()
|
|
{
|
|
if (await ShowYesNoInteraction.HandleSafe(ResUI.RemoveServer) == false)
|
|
{
|
|
return;
|
|
}
|
|
|
|
foreach (var it in SelectedSources ?? [SelectedSource])
|
|
{
|
|
await ConfigHandler.DeleteSubItem(_config, it.Id);
|
|
}
|
|
await RefreshSubItems();
|
|
NoticeManager.Instance.Enqueue(ResUI.OperationSuccess);
|
|
IsModified = true;
|
|
}
|
|
}
|