using System.Collections.ObjectModel;
using AutoMapper;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using DMS.Application.DTOs;
using DMS.Application.Interfaces;
using DMS.Core.Enums;
using DMS.Core.Helper;
using DMS.Core.Models;
using DMS.Helper;
using DMS.Services;
using DMS.WPF.Helper;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using DMS.WPF.Services;
using DMS.WPF.ViewModels.Dialogs;
using DMS.WPF.ViewModels.Items;
using iNKORE.UI.WPF.Modern.Common.IconKeys;
namespace DMS.WPF.ViewModels;
///
/// 设备管理视图模型,负责设备的增删改查操作。
///
public partial class DevicesViewModel : ViewModelBase, INavigatable
{
public DataServices DataServices { get; }
private readonly IDeviceAppService _deviceAppService;
private readonly IMapper _mapper;
private readonly IDialogService _dialogService;
///
/// 设备列表。
///
[ObservableProperty]
private ObservableCollection _devices;
///
/// 当前选中的设备。
///
[ObservableProperty]
private DeviceItemViewModel _selectedDevice;
///
/// 初始化 类的新实例。
///
/// 日志记录器。
/// 对话框服务。
/// 数据服务。
public DevicesViewModel(IMapper mapper,
IDialogService dialogService, DataServices dataServices, IDeviceAppService deviceAppService)
{
_mapper = mapper;
_dialogService = dialogService;
DataServices = dataServices;
_deviceAppService = deviceAppService;
Devices = new ObservableCollection();
DataServices.OnDeviceListChanged += (devices) => { };
}
// public override void OnLoaded()
// {
// if (_dataServices.Devices!=null && _dataServices.Devices.Count>0)
// {
// Devices=new ObservableCollection(_dataServices.Devices);
// foreach (var device in Devices)
// {
// device.OnDeviceIsActiveChanged += HandleDeviceIsActiveChanged;
//
// }
// }
// }
public override Task OnExitAsync()
{
// if (_dataServices.Devices!=null && _dataServices.Devices.Count>0)
// {
// foreach (var device in Devices)
// {
// device.OnDeviceIsActiveChanged -= HandleDeviceIsActiveChanged;
// }
// }
return Task.FromResult(true);
}
private async void HandleDeviceIsActiveChanged(Device device, bool isActive)
{
// try
// {
// await _deviceRepository.UpdateAsync(device);
// NotificationHelper.ShowSuccess($"设备 {device.Name} 的激活状态已更新。");
// }
// catch (Exception ex)
// {
// NotificationHelper.ShowError($"更新设备 {device.Name} 激活状态失败: {ex.Message}", ex);
// }
}
///
/// 添加设备命令。
///
[RelayCommand]
public async Task AddDevice()
{
try
{
DeviceItemViewModel deviceItemViewModel = new DeviceItemViewModel();
DeviceDialogViewModel deviceDialogViewModel = new DeviceDialogViewModel(deviceItemViewModel)
{
PrimaryButContent = "添加设备"
};
// 1. 显示添加设备对话框
DeviceItemViewModel device = await _dialogService.ShowDialogAsync(deviceDialogViewModel);
// 如果用户取消或对话框未返回设备,则直接返回
if (device == null)
{
return;
}
CreateDeviceWithDetailsDto dto = new CreateDeviceWithDetailsDto();
dto.Device = _mapper.Map(device);
dto.DeviceMenu = new MenuBeanDto()
{
Header = device.Name,
Icon = SegoeFluentIcons.Devices2.Glyph,
TargetViewKey = "DevicesView"
};
if (device.IsAddDefVarTable)
{
dto.VariableTable = new VariableTableDto()
{
Name = "默认变量表",
Description = "默认变量表",
IsActive = true
};
dto.VariableTableMenu = new MenuBeanDto()
{
Header = dto.VariableTable.Name,
Icon = SegoeFluentIcons.DataSense.Glyph,
TargetViewKey = "VariableTableView"
};
}
var addDto = await _deviceAppService.CreateDeviceWithDetailsAsync(dto);
// 更新界面
DataServices.Devices.Add(_mapper.Map(addDto.Device));
DataServices.AddMenuItem(_mapper.Map(addDto.DeviceMenu));
DataServices.AddVariableTable(_mapper.Map(addDto.VariableTable));
DataServices.AddMenuItem(_mapper.Map(addDto.VariableTableMenu));
NotificationHelper.ShowSuccess($"设备添加成功:{addDto.Device.Name}");
}
catch (Exception e)
{
Console.WriteLine(e);
NotificationHelper.ShowError($"添加设备的过程中发生错误:{e.Message}", e);
}
}
///
/// 删除设备命令。
///
[RelayCommand]
public async void DeleteDevice()
{
try
{
if (SelectedDevice == null)
{
NotificationHelper.ShowError("你没有选择任何设备,请选择设备后再点击删除设备");
return;
}
ConfrimDialogViewModel viewModel = new ConfrimDialogViewModel();
viewModel.Message = $"确认要删除设备名为:{SelectedDevice.Name}";
viewModel.Title = "删除设备";
viewModel.PrimaryButContent = "删除";
var resViewModel = await _dialogService.ShowDialogAsync(viewModel);
if (resViewModel.IsPrimaryButton)
{
var isDel = await _deviceAppService.DeleteDeviceByIdAsync(SelectedDevice.Id);
if (isDel)
{
// 更新界面
DataServices.DeleteDeviceById(SelectedDevice.Id);
NotificationHelper.ShowSuccess($"删除设备成功,设备名:{SelectedDevice.Name}");
}
}
}
catch (Exception e)
{
NotificationHelper.ShowError($"删除设备的过程中发生错误:{e.Message}", e);
}
}
///
/// 编辑设备命令。
///
[RelayCommand]
public async void EditDevice()
{
// try
// {
// if (SelectedDevice == null)
// {
// NotificationHelper.ShowError("你没有选择任何设备,请选择设备后再点击编辑设备");
// return;
// }
//
// var editDievce = await _dialogService.ShowEditDeviceDialog(SelectedDevice);
// if (editDievce != null)
// {
// // 更新菜单
// var res = await _deviceRepository.UpdateAsync(editDievce);
// var menu = DataServicesHelper.FindMenusForDevice(editDievce, _dataServices.MenuTrees);
// if (menu != null)
// await _menuRepository.UpdateAsync(menu);
//
// MessageHelper.SendLoadMessage(LoadTypes.Menu);
// MessageHelper.SendLoadMessage(LoadTypes.Devices);
// }
// }
// catch (Exception e)
// {
// NotificationHelper.ShowError($"编辑设备的过程中发生错误:{e.Message}", e);
// }
}
[RelayCommand]
public void NavigateToDetail()
{
if (SelectedDevice == null) return;
var deviceDetailVm = App.Current.Services.GetRequiredService();
deviceDetailVm.CurrentDevice = SelectedDevice;
MessageHelper.SendNavgatorMessage(deviceDetailVm);
}
public async Task OnNavigatedToAsync(object parameter)
{
}
}