mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-03 23:37:09 +08:00
193 lines
5.5 KiB
C#
193 lines
5.5 KiB
C#
using System.Reactive;
|
|
using DynamicData.Binding;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace ServiceLib.ViewModels;
|
|
|
|
public class RoutingSettingViewModel : MyReactiveObject
|
|
{
|
|
#region Reactive
|
|
|
|
public IObservableCollection<RoutingItemModel> RoutingItems { get; } = new ObservableCollectionExtended<RoutingItemModel>();
|
|
|
|
[Reactive]
|
|
public RoutingItemModel SelectedSource { get; set; }
|
|
|
|
public IList<RoutingItemModel> SelectedSources { get; set; }
|
|
|
|
[Reactive]
|
|
public string DomainStrategy { get; set; }
|
|
|
|
[Reactive]
|
|
public string DomainStrategy4Singbox { get; set; }
|
|
|
|
public ReactiveCommand<Unit, Unit> RoutingAdvancedAddCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> RoutingAdvancedRemoveCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> RoutingAdvancedSetDefaultCmd { get; }
|
|
public ReactiveCommand<Unit, Unit> RoutingAdvancedImportRulesCmd { get; }
|
|
|
|
public ReactiveCommand<Unit, Unit> SaveCmd { get; }
|
|
public bool IsModified { get; set; }
|
|
|
|
#endregion Reactive
|
|
|
|
public RoutingSettingViewModel(Func<EViewAction, object?, Task<bool>>? updateView)
|
|
{
|
|
_config = AppManager.Instance.Config;
|
|
_updateView = updateView;
|
|
|
|
var canEditRemove = this.WhenAnyValue(
|
|
x => x.SelectedSource,
|
|
selectedSource => selectedSource != null && !selectedSource.Remarks.IsNullOrEmpty());
|
|
|
|
RoutingAdvancedAddCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await RoutingAdvancedEditAsync(true);
|
|
});
|
|
RoutingAdvancedRemoveCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await RoutingAdvancedRemoveAsync();
|
|
}, canEditRemove);
|
|
RoutingAdvancedSetDefaultCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await RoutingAdvancedSetDefault();
|
|
}, canEditRemove);
|
|
RoutingAdvancedImportRulesCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await RoutingAdvancedImportRules();
|
|
});
|
|
|
|
SaveCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await SaveRoutingAsync();
|
|
});
|
|
|
|
_ = Init();
|
|
}
|
|
|
|
private async Task Init()
|
|
{
|
|
SelectedSource = new();
|
|
|
|
DomainStrategy = _config.RoutingBasicItem.DomainStrategy;
|
|
DomainStrategy4Singbox = _config.RoutingBasicItem.DomainStrategy4Singbox;
|
|
|
|
await ConfigHandler.InitBuiltinRouting(_config);
|
|
await RefreshRoutingItems();
|
|
}
|
|
|
|
#region Refresh Save
|
|
|
|
public async Task RefreshRoutingItems()
|
|
{
|
|
RoutingItems.Clear();
|
|
|
|
var routings = await AppManager.Instance.RoutingItems();
|
|
foreach (var item in routings)
|
|
{
|
|
var it = new RoutingItemModel()
|
|
{
|
|
IsActive = item.IsActive,
|
|
RuleNum = item.RuleNum,
|
|
Id = item.Id,
|
|
Remarks = item.Remarks,
|
|
Url = item.Url,
|
|
CustomIcon = item.CustomIcon,
|
|
CustomRulesetPath4Singbox = item.CustomRulesetPath4Singbox,
|
|
Sort = item.Sort,
|
|
};
|
|
RoutingItems.Add(it);
|
|
}
|
|
}
|
|
|
|
private async Task SaveRoutingAsync()
|
|
{
|
|
_config.RoutingBasicItem.DomainStrategy = DomainStrategy;
|
|
_config.RoutingBasicItem.DomainStrategy4Singbox = DomainStrategy4Singbox;
|
|
|
|
if (await ConfigHandler.SaveConfig(_config) == 0)
|
|
{
|
|
NoticeManager.Instance.Enqueue(ResUI.OperationSuccess);
|
|
_updateView?.Invoke(EViewAction.CloseWindow, null);
|
|
}
|
|
else
|
|
{
|
|
NoticeManager.Instance.Enqueue(ResUI.OperationFailed);
|
|
}
|
|
}
|
|
|
|
#endregion Refresh Save
|
|
|
|
public async Task RoutingAdvancedEditAsync(bool blNew)
|
|
{
|
|
RoutingItem item;
|
|
if (blNew)
|
|
{
|
|
item = new();
|
|
}
|
|
else
|
|
{
|
|
item = await AppManager.Instance.GetRoutingItem(SelectedSource?.Id);
|
|
if (item is null)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
if (await _updateView?.Invoke(EViewAction.RoutingRuleSettingWindow, item) == true)
|
|
{
|
|
await RefreshRoutingItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
|
|
public async Task RoutingAdvancedRemoveAsync()
|
|
{
|
|
if (SelectedSource is null || SelectedSource.Remarks.IsNullOrEmpty())
|
|
{
|
|
NoticeManager.Instance.Enqueue(ResUI.PleaseSelectRules);
|
|
return;
|
|
}
|
|
if (await _updateView?.Invoke(EViewAction.ShowYesNo, null) == false)
|
|
{
|
|
return;
|
|
}
|
|
foreach (var it in SelectedSources ?? [SelectedSource])
|
|
{
|
|
var item = await AppManager.Instance.GetRoutingItem(it?.Id);
|
|
if (item != null)
|
|
{
|
|
await ConfigHandler.RemoveRoutingItem(item);
|
|
}
|
|
}
|
|
|
|
await RefreshRoutingItems();
|
|
IsModified = true;
|
|
}
|
|
|
|
public async Task RoutingAdvancedSetDefault()
|
|
{
|
|
var item = await AppManager.Instance.GetRoutingItem(SelectedSource?.Id);
|
|
if (item is null)
|
|
{
|
|
NoticeManager.Instance.Enqueue(ResUI.PleaseSelectRules);
|
|
return;
|
|
}
|
|
|
|
if (await ConfigHandler.SetDefaultRouting(_config, item) == 0)
|
|
{
|
|
await RefreshRoutingItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
|
|
private async Task RoutingAdvancedImportRules()
|
|
{
|
|
if (await ConfigHandler.InitRouting(_config, true) == 0)
|
|
{
|
|
await RefreshRoutingItems();
|
|
IsModified = true;
|
|
}
|
|
}
|
|
}
|