using System.Collections.ObjectModel; using AutoMapper; using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; using DMS.Application.DTOs; using DMS.Application.Interfaces; using DMS.Application.Interfaces.Database; using DMS.Core.Enums; using DMS.WPF.Interfaces; using DMS.WPF.Services; using DMS.WPF.ViewModels.Dialogs; using DMS.WPF.ViewModels.Items; using iNKORE.UI.WPF.Modern.Common.IconKeys; using ObservableCollections; namespace DMS.WPF.ViewModels; /// /// 设备管理视图模型,负责设备的增删改查操作。 /// public partial class DevicesViewModel : ViewModelBase, INavigatable { private readonly IWPFDataService _wpfDataService; private readonly IDeviceAppService _deviceAppService; private readonly IMapper _mapper; private readonly IDataStorageService _dataStorageService; private readonly IDialogService _dialogService; private readonly INavigationService _navigationService; /// /// 设备列表。 /// [ObservableProperty] private INotifyCollectionChangedSynchronizedViewList _devices; /// /// 当前选中的设备。 /// [ObservableProperty] private DeviceItemViewModel _selectedDevice; private readonly INotificationService _notificationService; /// /// 初始化 类的新实例。 /// /// 对象映射器。 /// 数据存储服务。 /// 对话框服务。 /// 导航服务。 /// 主数据服务。 /// 设备应用服务。 /// 通知服务。 public DevicesViewModel(IMapper mapper, IDataStorageService dataStorageService, IDialogService dialogService, INavigationService navigationService, IWPFDataService wpfDataService, IDeviceAppService deviceAppService, INotificationService notificationService) { _mapper = mapper; _dataStorageService = dataStorageService; _dialogService = dialogService; _navigationService = navigationService; _wpfDataService = wpfDataService; _deviceAppService = deviceAppService; _notificationService = notificationService; Devices = _dataStorageService.Devices.ToNotifyCollectionChanged(x => x.Value); } /// /// 添加设备命令。 /// [RelayCommand] public async Task AddDevice() { try { // 1. 显示添加设备对话框 DeviceItemViewModel device = await _dialogService.ShowDialogAsync(new DeviceDialogViewModel() { Title = "添加设备", PrimaryButText = "添加设备" }); // 如果用户取消或对话框未返回设备,则直接返回 if (device == null) { return; } CreateDeviceWithDetailsDto dto = new CreateDeviceWithDetailsDto(); // 添加null检查 if (_mapper != null) { dto.Device = _mapper.Map(device); } else { _notificationService?.ShowError("映射服务未初始化"); return; } dto.DeviceMenu = new MenuBeanDto() { Header = device.Name, Icon = SegoeFluentIcons.Devices2.Glyph, TargetViewKey = "DeviceDetailView" }; 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" }; } // 添加设备 // 添加null检查 if (_wpfDataService != null && _wpfDataService.DeviceDataService != null) { var addDto = await _wpfDataService.DeviceDataService.AddDevice(dto); // 添加null检查 if (addDto != null && addDto.Device != null && _notificationService != null) { _notificationService.ShowSuccess($"设备添加成功:{addDto.Device.Name}"); } else if (_notificationService != null) { _notificationService.ShowError("设备添加失败"); } } else if (_notificationService != null) { _notificationService.ShowError("数据服务未初始化"); } } catch (Exception e) { Console.WriteLine(e); // 添加null检查 if (_notificationService != null) { _notificationService.ShowError($"添加设备的过程中发生错误:{e.Message}", e); } } } /// /// 删除设备命令。 /// [RelayCommand] private async Task DeleteDevice(DeviceItemViewModel parmDeviceItem) { try { if (parmDeviceItem != null) { SelectedDevice = parmDeviceItem; } if (SelectedDevice == null) { _notificationService.ShowError("你没有选择任何设备,请选择设备后再点击删除设备"); return; } var viewModel = new ConfirmDialogViewModel("删除设备", $"确认要删除设备名为:{SelectedDevice.Name}", "删除设备"); if (await _dialogService.ShowDialogAsync(viewModel)) { var deviceName = SelectedDevice.Name; if (await _wpfDataService.DeviceDataService.DeleteDevice(SelectedDevice)) { _notificationService.ShowSuccess($"删除设备成功,设备名:{deviceName}"); } } } catch (Exception e) { _notificationService.ShowError($"删除设备的过程中发生错误:{e.Message}", e); } } /// /// 编辑设备命令。 /// [RelayCommand] private async Task EditDevice(DeviceItemViewModel parmDeviceItem) { try { if (parmDeviceItem != null) { SelectedDevice = parmDeviceItem; } if (SelectedDevice == null) { _notificationService.ShowError("你没有选择任何设备,请选择设备后再点击编辑设备"); return; } DeviceDialogViewModel deviceDialogViewModel = new DeviceDialogViewModel(SelectedDevice) { PrimaryButText = "编辑设备" }; // 1. 显示设备对话框 DeviceItemViewModel device = await _dialogService.ShowDialogAsync(deviceDialogViewModel); // 如果用户取消或对话框未返回设备,则直接返回 if (device == null) { return; } if (await _wpfDataService.DeviceDataService.UpdateDevice(device)) { _notificationService.ShowSuccess($"编辑设备成功:{device.Name}"); } } catch (Exception e) { _notificationService.ShowError($"编辑设备的过程中发生错误:{e.Message}", e); } } [RelayCommand] public void NavigateToDetail() { if (SelectedDevice == null) return; var menu = _dataStorageService.Menus.FirstOrDefault(m => m.MenuType == MenuType.DeviceMenu && m.TargetId == SelectedDevice.Id); if (menu == null) return; _navigationService.NavigateToAsync(menu); } public async Task OnNavigatedToAsync(MenuItemViewModel menu) { } private void OnDeviceIsActiveChanged(object? sender, bool isActive) { if (sender is DeviceItemViewModel deviceItemViewModel) { } } }