123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- using Aitex.Core.RT.DataCenter;
- using Aitex.Core.RT.Log;
- using Aitex.Core.UI.Dialog;
- using Aitex.Core.UI.MVVM;
- using Aitex.Core.Utilities;
- using Caliburn.Micro.Core;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.Common.RecipeCenter;
- using CyberX8_Core;
- using CyberX8_MainPages.PMs;
- using CyberX8_Themes.UserControls;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.ComponentModel;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Input;
- namespace CyberX8_MainPages.ViewModels
- {
- public class PwtRecipeViewModel : BindableBase
- {
- #region 常量
- private const string ENGINEERING = "Engineering";
- private const string PWT = "pwt";
- #endregion
- #region 内部变量
- /// <summary>
- /// Recipe节点字典
- /// </summary>
- private Dictionary<string, RecipeNode> _recipeNodeDic = new Dictionary<string, RecipeNode>();
- /// <summary>
- /// 属性检验结果字典
- /// </summary>
- private Dictionary<string, bool> _propertyValidResultDic = new Dictionary<string, bool>();
- /// <summary>
- /// Recipe节点集合
- /// </summary>
- private ObservableCollection<RecipeNode> _recipeNodes;
- /// <summary>
- /// uiRecipeManager
- /// </summary>
- private UiRecipeManager _uiRecipeManager = new UiRecipeManager();
- /// <summary>
- /// recipe
- /// </summary>
- private PwtRecipe _recipe;
- /// <summary>
- /// 编辑可用性
- /// </summary>
- private bool _editEnable;
- /// <summary>
- /// 创建可用性
- /// </summary>
- private bool _createEnable;
- /// <summary>
- /// 当前节点
- /// </summary>
- private RecipeNode _currentNode;
- /// <summary>
- /// 是否可用
- /// </summary>
- private bool _enable = false;
- /// <summary>
- /// 是否为编辑(true-Edit,false-add)
- /// </summary>
- private bool _isEdit = false;
- #endregion
- #region 属性
- public ObservableCollection<RecipeNode> RecipeNodes
- {
- get { return _recipeNodes; }
- set { SetProperty(ref _recipeNodes, value); }
- }
- /// <summary>
- /// Recipe
- /// </summary>
- public PwtRecipe Recipe
- {
- get { return _recipe; }
- set { SetProperty(ref _recipe, value); }
- }
- /// <summary>
- /// 创建可用性
- /// </summary>
- public bool CreateEnable
- {
- get { return _createEnable; }
- set { SetProperty(ref _createEnable, value);}
- }
- /// <summary>
- /// 编辑可用性
- /// </summary>
- public bool EditEnable
- {
- get { return _editEnable; }
- set { SetProperty(ref _editEnable, value);}
- }
- /// <summary>
- /// 当前节点
- /// </summary>
- public RecipeNode CurrentNode
- {
- get { return _currentNode; }
- set { SetProperty(ref _currentNode, value);}
- }
- /// <summary>
- /// 可用性
- /// </summary>
- public bool Enable
- {
- get { return _enable; }
- set { SetProperty(ref _enable, value); }
- }
- /// <summary>
- /// 属性数据检验结果
- /// </summary>
- public Dictionary<string, bool> PropertyValidResultDic
- {
- get { return _propertyValidResultDic; }
- set { SetProperty(ref _propertyValidResultDic, value); }
- }
- #endregion
- #region 指令
- [IgnorePropertyChange]
- public ICommand OperationCommand
- {
- get;
- private set;
- }
- [IgnorePropertyChange]
- public ICommand CreateCommand { get; private set; }
- [IgnorePropertyChange]
- public ICommand EditCommand { get; private set; }
- [IgnorePropertyChange]
- public ICommand SaveRecipeCommand { get; private set; }
- [IgnorePropertyChange]
- public ICommand SaveAsRecipeCommand { get; private set; }
- #endregion
- /// <summary>
- /// 构造函数
- /// </summary>
- public PwtRecipeViewModel()
- {
- OperationCommand = new DelegateCommand<object>(SelectionChangedAction);
- CreateCommand = new DelegateCommand<object>(CreateAction);
- EditCommand = new DelegateCommand<object>(EditAction);
- SaveRecipeCommand = new DelegateCommand<object>(SaveAction);
- InitializeProprtyValidResultDictionary();
- }
- /// <summary>
- /// 初始化属性数据检验结果字典
- /// </summary>
- private void InitializeProprtyValidResultDictionary()
- {
- PropertyValidResultDic["NumberOfScans"] = false;
- }
- /// <summary>
- /// 加载数据
- /// </summary>
- public void LoadRecipeData()
- {
- RecipeNodes = _uiRecipeManager.GetRecipesByType(PWT);
- _recipeNodeDic.Clear();
- InitializeDictionary(RecipeNodes);
- }
- /// <summary>
- /// 初始化字典
- /// </summary>
- /// <param name="nodes"></param>
- private void InitializeDictionary(ObservableCollection<RecipeNode> nodes)
- {
- if (nodes != null)
- {
- foreach (var node in nodes)
- {
- if (node.NodeType == RecipeNodeType.File)
- {
- _recipeNodeDic[node.Name] = node;
- }
- InitializeDictionary(node.Children);
- }
- }
- }
- /// <summary>
- /// 操作
- /// </summary>
- /// <param name="param"></param>
- private void SelectionChangedAction(object param)
- {
- if(_recipeNodeDic.ContainsKey(param.ToString()))
- {
- CurrentNode = _recipeNodeDic[param.ToString()];
- if(CurrentNode.NodeType==RecipeNodeType.File)
- {
- if (CurrentNode.RecipeLocation == ENGINEERING)
- {
- EditEnable = true;
- CreateEnable = true;
- }
- else
- {
- EditEnable= false;
- CreateEnable = false;
- }
- }
- Recipe = _uiRecipeManager.LoadRecipe<PwtRecipe>(CurrentNode.RecipeFullFileName);
- if(Recipe==null)
- {
- MessageBox.Show("Invalid Recipe", "Load Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
- EditEnable = false;
- CreateEnable = false;
- }
- Enable = false;
- }
- else
- {
- if(param.ToString()==ENGINEERING)
- {
- CreateEnable= true;
- }
- else
- {
- CreateEnable = false;
- }
- CurrentNode = null;
- Recipe = null;
- EditEnable = false;
- Enable = false;
- }
- }
- #region Action
- /// <summary>
- /// 创建
- /// </summary>
- /// <param name="param"></param>
- private void CreateAction(object param)
- {
- RecipeNameDialog recipeNameDialog = new RecipeNameDialog();
- if (recipeNameDialog.ShowDialog().Value)
- {
- Recipe = new PwtRecipe();
- Recipe.CreateDate = DateTime.Now;
- Recipe.Ppid = recipeNameDialog.RecipeName;
- Recipe.Description = recipeNameDialog.RecipeDescription;
- Enable = true;
- _isEdit = false;
- }
- }
- /// <summary>
- /// 编辑
- /// </summary>
- /// <param name="param"></param>
- private void EditAction(object param)
- {
- Enable = true;
- _isEdit= false;
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="param"></param>
- private void SaveAction(object param)
- {
- if (CheckValid(_isEdit))
- {
- Recipe.SaveDate = DateTime.Now;
- try
- {
- _uiRecipeManager.SaveRecipe<PwtRecipe>(ENGINEERING, Recipe.Ppid,"pwt", Recipe);
- LoadRecipeData();
- MessageBox.Show("Save Recipe Success", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Information);
- Enable = false;
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.Message, "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
- }
- }
- }
- /// <summary>
- /// 检验合法性
- /// </summary>
- /// <param name="editType"></param>
- /// <returns></returns>
- private bool CheckValid(bool editType)
- {
- foreach(string key in _propertyValidResultDic.Keys)
- {
- bool valid = _propertyValidResultDic[key];
- if(!valid)
- {
- MessageBox.Show($"{key} data invalid", "Save Recipe", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- return true;
- }
- #endregion
- }
- }
|