using Aitex.Core.RT.Log; using Caliburn.Micro; using Caliburn.Micro.Core; using MECF.Framework.Common.DataCenter; using MECF.Framework.UI.Client.CenterViews.Editors; using MECF.Framework.UI.Client.CenterViews.Editors.Recipe; using MECF.Framework.UI.Client.CenterViews.Editors.Sequence; using MECF.Framework.UI.Client.ClientBase; using OpenSEMI.ClientBase; using OpenSEMI.ClientBase.Command; using RecipeEditorLib.RecipeModel.Params; using Aitex.Core.RT.Log; using Aitex.Sorter.Common; using Caliburn.Micro; using Caliburn.Micro.Core; using FurnaceUI.Common; using FurnaceUI.Models; using FurnaceUI.Views.Editors; using MECF.Framework.Common.CommonData; using MECF.Framework.Common.DataCenter; using MECF.Framework.Common.Utilities; using MECF.Framework.UI.Client.CenterViews.Editors; using MECF.Framework.UI.Client.CenterViews.Editors.Recipe; using MECF.Framework.UI.Client.CenterViews.Editors.Sequence; using MECF.Framework.UI.Client.ClientBase; using OpenSEMI.ClientBase; using OpenSEMI.ClientBase.Command; using RecipeEditorLib.RecipeModel.Params; using SciChart.Charting.Common.Extensions; using SciChart.Core.Extensions; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; namespace FurnaceUI.Views.Recipes { public class RecipeLayoutViewModel : FurnaceUIViewModelBase { public bool IsPermission { get => this.Permission == 3; }//&& RtStatus != "AutoRunning"; private ICommand _RenameFolderCommand; public ICommand RenameFolderCommand { get { if (this._RenameFolderCommand == null) this._RenameFolderCommand = new BaseCommand(() => this.RenameFolder()); return this._RenameFolderCommand; } } private ICommand _DeleteFolderCommand; public ICommand DeleteFolderCommand { get { if (this._DeleteFolderCommand == null) this._DeleteFolderCommand = new BaseCommand(() => this.DeleteFolder()); return this._DeleteFolderCommand; } } private ICommand _NewFolderCommand; public ICommand NewFolderCommand { get { if (this._NewFolderCommand == null) this._NewFolderCommand = new BaseCommand(() => this.NewFolder()); return this._NewFolderCommand; } } private ICommand _NewFolderRootCommand; public ICommand NewFolderRootCommand { get { if (this._NewFolderRootCommand == null) this._NewFolderRootCommand = new BaseCommand(() => this.NewFolderRoot()); return this._NewFolderRootCommand; } } private ICommand _NewRecipeCommand; public ICommand NewRecipeCommand { get { if (this._NewRecipeCommand == null) this._NewRecipeCommand = new BaseCommand(() => this.NewRecipe()); return this._NewRecipeCommand; } } private ICommand _NewRecipeRootCommand; public ICommand NewRecipeRootCommand { get { if (this._NewRecipeRootCommand == null) this._NewRecipeRootCommand = new BaseCommand(() => this.NewRecipeRoot()); return this._NewRecipeRootCommand; } } private ICommand _RenameRecipeCommand; public ICommand RenameRecipeCommand { get { if (this._RenameRecipeCommand == null) this._RenameRecipeCommand = new BaseCommand(() => this.RenameRecipe()); return this._RenameRecipeCommand; } } private ICommand _DeleteRecipeCommand; public ICommand DeleteRecipeCommand { get { if (this._DeleteRecipeCommand == null) this._DeleteRecipeCommand = new BaseCommand(() => this.DeleteRecipe()); return this._DeleteRecipeCommand; } } private ICommand _SaveAsRecipeCommand; public ICommand SaveAsRecipeCommand { get { if (this._SaveAsRecipeCommand == null) this._SaveAsRecipeCommand = new BaseCommand(() => this.SaveAsRecipe()); return this._SaveAsRecipeCommand; } } private ICommand _EditRecipeCommand; public ICommand EditRecipeCommand { get { if (this._EditRecipeCommand == null) this._EditRecipeCommand = new BaseCommand(() => this.EditRecipe()); return this._EditRecipeCommand; } } private ICommand _SelectRecipeTypeCommand; public ICommand SelectRecipeTypeCommand { get { if (this._SelectRecipeTypeCommand == null) this._SelectRecipeTypeCommand = new BaseCommand(() => this.SelectRecipeType()); return this._SelectRecipeTypeCommand; } } private ICommand _ViewRecipeCommand; public ICommand ViewRecipeCommand { get { if (this._ViewRecipeCommand == null) this._ViewRecipeCommand = new BaseCommand(() => this.ViewRecipe()); return this._ViewRecipeCommand; } } private ICommand _ChangePermission; public ICommand ChangePermission { get { if (this._ChangePermission == null) this._ChangePermission = new BaseCommand(() => this.SavePermission()); return this._ChangePermission; } } private ICommand _ExportRecipeCommand; public ICommand ExportRecipeCommand { get { //if (this._ExportRecipeCommand == null) // this._ExportRecipeCommand = new BaseCommand(() => this.ExportRecipe()); return this._ExportRecipeCommand; } } private ICommand _historyRecipeCommand; public ICommand HistoryRecipeCommand { get { //if (this._historyRecipeCommand == null) // this._historyRecipeCommand = new BaseCommand(() => this.HistoryRecipe()); return this._historyRecipeCommand; } } private List _recipeFileList = new List(); public List RecipeFileList { get { return _recipeFileList; } set { _recipeFileList = value; this.NotifyOfPropertyChange(nameof(RecipeFileList)); } } private List _processTypeFileList = new List(); public List ProcessTypeFileList { get { return _processTypeFileList; } set { _processTypeFileList = value; this.NotifyOfPropertyChange(nameof(ProcessTypeFileList)); } } public RecipeDataLayout CurrentRecipe { get; private set; } public FileNode CurrentFileNode { get; set; } public bool IsCurrentNodePath { get => CurrentFileNode != null; } public bool IsCurrentNodeFile { get => CurrentFileNode != null && CurrentFileNode.IsFile; } private bool _isReadAndWritePermission = false; public bool IsReadAndWritePermission { get { // _isReadAndWritePermission = IsSelectPermission; return _isReadAndWritePermission; } set { _isReadAndWritePermission = value; NotifyOfPropertyChange(nameof(IsReadAndWritePermission)); } } private bool _isFreePermission = false; public bool IsFreePermission { get { //_isFreePermission = IsSelectPermission; return _isFreePermission; } set { _isFreePermission = value; NotifyOfPropertyChange(nameof(IsFreePermission)); } } private bool _isSelectPermission = false; public bool IsSelectPermission { get { _isSelectPermission = LevelDisplay != "LEVEL1" && IsCurrentNodeFile; return _isSelectPermission; } set { _isSelectPermission = value; NotifyOfPropertyChange(nameof(IsSelectPermission)); } } public bool IsSingleSelectPermission { get => _isSelectPermission && !IsSingleFile; } private bool _isEnabledFolderPermission = false; public bool IsEnabledFolderPermission { get { _isEnabledFolderPermission = !IsCurrentNodeFile && !IsSingleFile; return _isEnabledFolderPermission; } set { _isEnabledFolderPermission = value; NotifyOfPropertyChange(nameof(IsEnabledFolderPermission)); } } private bool _isEnabledNewRecipe = false; public bool IsEnabledNewRecipe { get { return _isEnabledNewRecipe; } set { _isEnabledNewRecipe = value; NotifyOfPropertyChange(nameof(IsEnabledNewRecipe)); } } private bool IsChanged { get { return editMode == EditMode.Edit || (CurrentRecipe != null && CurrentRecipe.IsChanged); } } private RecipeFormatBuilder _columnBuilder = new RecipeFormatBuilder(); private EditMode editMode; private RecipeProvider _recipeProvider = new RecipeProvider(); public ObservableCollection ChamberType { get; set; } = new ObservableCollection(); public int ChamberTypeIndexSelection { get; set; } private int _ProcessTypeIndexSelection; public int ProcessTypeIndexSelection { get { return _ProcessTypeIndexSelection; } set { _ProcessTypeIndexSelection = value; NotifyOfPropertyChange(nameof(ProcessTypeIndexSelection)); } } public string CurrentChamberType { get { return ChamberType[ChamberTypeIndexSelection]; } } public string CurrentProcessType { get { return ProcessTypeFileList[ProcessTypeIndexSelection].ProcessType; } } public Visibility MultiChamberVisibility { get; set; } public Visibility ToleranceVisibility { get; set; } public ObservableCollection Chambers { get; set; } public string SelectedChamber { get; set; } public object View { get; set; } private string _SelectRecipeTypeName; public string SelectRecipeTypeName { get { return _SelectRecipeTypeName; } set { _SelectRecipeTypeName = value; NotifyOfPropertyChange("SelectRecipeTypeName"); } } private bool IsSingleFile { get; set; } = false; protected override void OnInitialize() { base.OnInitialize(); InitializeDefault(); } private void InitializeDefault() { var chamberType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedChamberType"); ChamberType.Clear(); if (chamberType == null) { ChamberType.Add("Default"); } else { (((string)(chamberType)).Split(',')).ToList().ForEach(x => ChamberType.Add(x)); } ChamberTypeIndexSelection = 0; //Etch:Process,Clean,Chuck,Dechuck;CVD:Process,Clean; var processType = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.{CurrentMenuID}"); if (processType == null) { processType = CurrentMenuID; } if (processType == null) processType = "alarm"; string[] recipeProcessType = ((string)processType).Split(','); for (int i = 0; i < recipeProcessType.Length; i++) { var type = new ProcessTypeFileItem(); type.ProcessType = recipeProcessType[i]; var prefix = $"{ChamberType[ChamberTypeIndexSelection]}\\{recipeProcessType[i]}"; // var recipes = _recipeProvider.GetXmlRecipeList(prefix); type.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);// RecipeSequenceTreeBuilder.BuildFileNode(prefix, "", false, recipes)[0].Files; ProcessTypeFileList.Add(type); RecipeFileList = type.FileListByProcessType.FirstOrDefault()?.Files.ToList(); } //if (ProcessTypeFileList[0].FileListByProcessType.Count > 0) // CurrentFileNode = ProcessTypeFileList[0].FileListByProcessType[ProcessTypeFileList[0].FileListByProcessType.Count - 1]; SelectRecipeTypeName = processType + " Recipe"; UpdateRecipeFormat(); if (CurrentFileNode != null && CurrentFileNode.IsFile) { if (CurrentRecipe != null) { CurrentRecipe.PrefixPath = CurrentFileNode.PrefixPath; CurrentRecipe.Name = CurrentFileNode.FullPath; } //this.LoadData(CurrentFileNode.PrefixPath, CurrentFileNode.FullPath); } GetRecipeType(); _columnBuilder.Build(CurrentProcessType); } private void GetRecipeType() { var single = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.SingleRecipeFileType"); if (single != null && !string.IsNullOrEmpty((string)single)) { string[] singleTypes = ((string)single).ToLower().Split(';'); if (singleTypes != null) { int findIndex = Array.IndexOf(singleTypes, CurrentMenuID.ToLower()); if (findIndex != -1) { CreateDefaultRecipe(); IsSingleFile = true; } } } } private void CreateDefaultRecipe() { var defaultFileName = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.DefaultFileName"); string fileName = "default"; if (defaultFileName != null && !string.IsNullOrEmpty((string)defaultFileName)) { fileName = (string)defaultFileName; } string recipeName = fileName.Trim(); string description = ""; string prefix = CurrentChamberType + "\\" + CurrentProcessType; if (!IsExist(recipeName.ToLower(), true)) { RecipeDataLayout recipe = new RecipeDataLayout(); recipe.Name = recipeName; recipe.PrefixPath = prefix; recipe.Creator = BaseApp.Instance.UserContext.LoginName; recipe.CreateTime = DateTime.Now; recipe.Revisor = BaseApp.Instance.UserContext.LoginName; recipe.ReviseTime = DateTime.Now; recipe.Description = description; recipe.RecipeLevel = LevelDisplay; recipe.RecipePermission = "Free"; if (!Save(recipe, true)) return; } ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, recipeName, false); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); var tempFile = item.FileListByProcessType.FirstOrDefault(x => x.Name == fileName); if (tempFile != null) { TreeSelectChanged(tempFile); } } protected override void OnActivate() { base.OnActivate(); } protected override void OnDeactivate(bool close) { base.OnDeactivate(close); if (this.IsChanged) { if (DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} content is changed, do you want to save it?") == DialogButton.Yes) { this.SaveRecipe(); } } } public void TabSelectionChanged() { UpdateRecipeFormat(); OnViewLoaded(View); } public void UpdateRecipeFormat() { this.CurrentRecipe = new RecipeDataLayout(); CurrentRecipe.RecipeChamberType = _columnBuilder.RecipeChamberType; CurrentRecipe.RecipeVersion = _columnBuilder.RecipeVersion; this.editMode = EditMode.None; var chamber = QueryDataClient.Instance.Service.GetConfig("System.Recipe.ChamberModules"); if (chamber == null) { chamber = "PM1"; } Chambers = new ObservableCollection(((string)chamber).Split(',')); SelectedChamber = Chambers[0]; MultiChamberVisibility = Chambers.Count > 1 ? Visibility.Visible : Visibility.Collapsed; ToleranceVisibility = CurrentRecipe.ToleranceEnable ? Visibility.Visible : Visibility.Collapsed; } public void TreeSelectChanged(FileNode node) { if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; // this.Save(this.CurrentRecipe, false); } } if (node != null && !node.IsFile) { ProcessTypeFileList[0].FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.Name == node.Name) { a.IsSelected = true; RecipeFileList = a.Files.ToList(); return; } }); } CurrentFileNode = node; IsFreePermission = true; IsReadAndWritePermission = true; NotifyOfPropertyChange(nameof(IsCurrentNodeFile)); NotifyOfPropertyChange(nameof(IsCurrentNodePath)); NotifyOfPropertyChange(nameof(IsSelectPermission)); NotifyOfPropertyChange(nameof(IsSingleSelectPermission)); NotifyOfPropertyChange(nameof(IsEnabledFolderPermission)); if (node != null && node.IsFile) { if (CurrentRecipe != null) { CurrentRecipe.Name = node.Name; CurrentRecipe.PrefixPath = node.PrefixPath; } // this.LoadData(node.PrefixPath, node.FullPath); } else { this.ClearData(); this.editMode = EditMode.None; } this.UpdateView(); GetIsEnabledNewRecipe(); } private void GetIsEnabledNewRecipe() { if (!IsSingleFile && ProcessTypeFileList != null && ProcessTypeFileList.FirstOrDefault() != null && ProcessTypeFileList.FirstOrDefault().FileListByProcessType != null && ProcessTypeFileList.FirstOrDefault().FileListByProcessType.Count > 0) { IsEnabledNewRecipe = true; } else { IsEnabledNewRecipe = false; } } #region folder public void SelectRecipeType() { var windowManager = IoC.Get(); RecipeSelectRecipeTypeViewModel recipeSelectRecipeTypeViewModel = new RecipeSelectRecipeTypeViewModel(); (windowManager as WindowManager)?.ShowDialogWithTitle(recipeSelectRecipeTypeViewModel, null, "Select Recipe Type"); if (recipeSelectRecipeTypeViewModel.SelectRecipeType != null) { var selectRecipeType = recipeSelectRecipeTypeViewModel.SelectRecipeType; var processType = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.{selectRecipeType}"); if (processType == null) { processType = selectRecipeType; } ProcessTypeFileList = new List(); string[] recipeProcessType = ((string)processType).Split(','); for (int i = 0; i < recipeProcessType.Length; i++) { var type = new ProcessTypeFileItem(); type.ProcessType = recipeProcessType[i]; var prefix = $"{ChamberType[ChamberTypeIndexSelection]}\\{recipeProcessType[i]}"; // var recipes = _recipeProvider.GetXmlRecipeList(prefix); type.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);// RecipeSequenceTreeBuilder.BuildFileNode(prefix, "", false, recipes)[0].Files; ProcessTypeFileList.Add(type); } SelectRecipeTypeName = processType + " Recipe"; this.NotifyOfPropertyChange("ProcessTypeFileList"); if (ProcessTypeFileList[0].FileListByProcessType.Count > 0) CurrentFileNode = ProcessTypeFileList[0].FileListByProcessType[ProcessTypeFileList[0].FileListByProcessType.Count - 1]; NotifyOfPropertyChange(nameof(IsCurrentNodeFile)); NotifyOfPropertyChange(nameof(IsCurrentNodePath)); NotifyOfPropertyChange(nameof(IsSelectPermission)); NotifyOfPropertyChange(nameof(IsReadAndWritePermission)); // NotifyOfPropertyChange(nameof(IsFreePermission)); ProcessTypeIndexSelection = 0; } } public void NewFolder() { if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; // this.Save(this.CurrentRecipe, false); } } InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Folder Name", ProcessTypeFileList[0].FileListByProcessType, "", Visibility.Visible, Visibility.Collapsed); // dialog.FileName = "new folder"; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; if (string.IsNullOrWhiteSpace(dialog.FileName)) { DialogBox.ShowWarning("Folder name should not be empty"); } else { string name = dialog.FileName.Trim(); FileNode selectNode = dialog.SelectNode; string prefix = ChamberType[ChamberTypeIndexSelection] + "\\" + ProcessTypeFileList[ProcessTypeIndexSelection].ProcessType; string newFolder = string.Empty; string folder = string.Empty; if (selectNode != null) { prefix = selectNode.PrefixPath; folder = selectNode.FullPath.Replace($"{prefix}\\", ""); newFolder = $"{folder}\\{name}"; } else { newFolder = name; } if (IsExist(newFolder, false)) { DialogBox.ShowWarning($"Can not create folder {newFolder}, Folder with the same name already exist."); return; } if (newFolder.Length > 200) { DialogBox.ShowWarning($"Can not create folder {newFolder}, Folder name too long, should be less 200."); return; } prefix = GetPrefix(prefix, selectNode); _recipeProvider.CreateRecipeFolder(prefix, name); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); if (item == null) { LOG.Write("error reload recipe file list, type = " + CurrentProcessType); } //var recipes = _recipeProvider.GetXmlRecipeList(prefix); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{prefix}\\{newFolder}"); item.InvokePropertyChanged(); TreeSelectChanged(CurrentFileNode); } } private string GetPrefix(string prefix, FileNode CurrentFileNode) { string temppreFix = prefix; if (CurrentFileNode != null) { if (string.IsNullOrEmpty(CurrentFileNode.AllParentPath)) { if (CurrentFileNode.IsFile) { return temppreFix; } else { temppreFix = CurrentFileNode.FullPath; } } else { if (CurrentFileNode.IsFile) { if (temppreFix.EndsWith("\\")) { temppreFix = $"{temppreFix}{CurrentFileNode.AllParentPath}"; } else { temppreFix = $"{temppreFix}\\{CurrentFileNode.AllParentPath}"; } } else { temppreFix = $"{temppreFix}\\{CurrentFileNode.AllParentPath}\\{CurrentFileNode.Name}"; } } } return temppreFix; } public void NewFolderRoot() { if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; // this.Save(this.CurrentRecipe, false); } } InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Folder Name", ProcessTypeFileList[0].FileListByProcessType); dialog.FileName = "new folder"; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string name = dialog.FileName.Trim(); if (string.IsNullOrEmpty(name)) { DialogBox.ShowWarning("Folder name should not be empty"); return; } if (IsExist(name, false)) { DialogBox.ShowWarning($"Can not create folder {name}, Folder with the same name already exist."); return; } if (name.Length > 200) { DialogBox.ShowWarning($"Can not create folder {name}, Folder name too long, should be less 200."); return; } string prefix = ChamberType[ChamberTypeIndexSelection] + "\\" + ProcessTypeFileList[ProcessTypeIndexSelection].ProcessType; _recipeProvider.CreateRecipeFolder(prefix, name); ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, name, true); } public void DeleteFolder() { if (CurrentFileNode == null || CurrentFileNode.IsFile) return; if (CurrentFileNode.Files.Count > 0) { DialogBox.ShowWarning($"Can not delete non-empty folder, Remove the files or folders under \r\n{CurrentFileNode.FullPath}."); return; } var prefix = GetPrefix(CurrentFileNode.PrefixPath, CurrentFileNode); var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No, DialogType.CONFIRM, $"Are you sure you want to delete \r\n {prefix}?"); if (selection == DialogButton.No) return; //string nextFocus = CurrentFileNode.Parent.FullPath; //bool isFolder = true; //if (CurrentFileNode.Parent!=null&&CurrentFileNode.Parent.Files.Count > 1) //{ // for (int i = 0; i < CurrentFileNode.Parent.Files.Count; i++) // { // if (CurrentFileNode.Parent.Files[i] == CurrentFileNode) // { // if (i == 0) // { // nextFocus = CurrentFileNode.Parent.Files[i + 1].FullPath; // isFolder = !CurrentFileNode.Parent.Files[i + 1].IsFile; // } // else // { // nextFocus = CurrentFileNode.Parent.Files[i - 1].FullPath; // isFolder = !CurrentFileNode.Parent.Files[i - 1].IsFile; // } // } // } //} prefix = prefix.Replace($"\\{CurrentFileNode.Name}", ""); _recipeProvider.DeleteRecipeFolder(prefix, CurrentFileNode.Name); ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, "", false, true); GetIsEnabledNewRecipe(); } public void RenameFolder() { if (CurrentFileNode == null || CurrentFileNode.IsFile) return; InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Folder Name", ProcessTypeFileList[0].FileListByProcessType, "", Visibility.Hidden, Visibility.Collapsed); dialog.FileName = CurrentFileNode.Name; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string name = dialog.FileName.Trim(); if (string.IsNullOrEmpty(name)) return; string newFolder = CurrentFileNode.FullPath.Substring(0, CurrentFileNode.FullPath.LastIndexOf("\\") + 1); if (!string.IsNullOrEmpty(newFolder)) newFolder = newFolder + name; else newFolder = name; if (newFolder == CurrentFileNode.FullPath) return; if (IsExist(newFolder, false)) { DialogBox.ShowWarning($"Can not rename to {newFolder}, Folder with the same name already exist."); return; } if (newFolder.Length > 200) { DialogBox.ShowWarning($"Can not create folder {newFolder}, Folder name too long, should be less 200."); return; } if (_recipeProvider.RenameFolder(CurrentFileNode.PrefixPath, CurrentFileNode.Name, name)) { foreach (var node in CurrentFileNode.Files) { UIGlobalVariable.Instance.ProcessModifiedRecipe[node.FullPath] = $"Folder Rename from [{CurrentFileNode.FullPath}] to [{name}] {DateTime.Now}"; } } ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, name, true, true); } #endregion #region recipe public void NewRecipe() { if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; this.Save(this.CurrentRecipe, false); } } InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, ""); dialog.SelectIndex = ProcessTypeFileList[0].FileListByProcessType.IndexOf(ProcessTypeFileList[0].FileListByProcessType.FirstOrDefault(a => a.IsSelected)); //dialog.FileName = (string)QueryDataClient.Instance.Service.GetConfig($"System.Recipe.DefaultProcessRecipeName"); WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string recipeName = dialog.FileName.Trim(); string filepath = dialog.FilePath; string description = dialog.Comment; if (string.IsNullOrEmpty(dialog.FileName)) { DialogBox.ShowWarning("Recipe file name should not be empty"); return; } string prefix; if (filepath.Contains("\\")) { prefix = filepath; } else { prefix = CurrentChamberType + "\\" + CurrentProcessType + "\\" + filepath; if (CurrentFileNode != null) { //获取目录 prefix = GetPrefix(CurrentFileNode.PrefixPath, CurrentFileNode); } } if (RecipeFileList.Find(a => a.Name == recipeName.ToLower()) != null) { DialogBox.ShowWarning($"Can not create {recipeName}, Recipe with the same name already exist."); return; } if ((prefix + recipeName).Length > 200) { DialogBox.ShowWarning($"Can not create folder {recipeName}, Folder name too long, should be less 200."); return; } RecipeDataLayout recipe = new RecipeDataLayout(); recipe.Name = recipeName; recipe.PrefixPath = prefix; recipe.Creator = BaseApp.Instance.UserContext.LoginName; recipe.CreateTime = DateTime.Now; recipe.Revisor = BaseApp.Instance.UserContext.LoginName; recipe.ReviseTime = DateTime.Now; recipe.Description = description; recipe.RecipeLevel = LevelDisplay; recipe.RecipePermission = "Free"; if (!Save(recipe, true)) return; var types = prefix.Split('\\'); string newfile = string.Empty; if (types.Length > 2) { newfile = $"{string.Join("\\", types.Skip(2))}\\{recipeName}"; } else { newfile = recipeName; } //ReloadRecipeFileList(types[0], types[1], newfile, false); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == types[1]); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{$"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"}\\{newfile}"); item.FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.FullPath == prefix) { a.IsSelected = true; CurrentFileNode = a; RecipeFileList = a.Files.ToList(); return; } }); } public void NewRecipeRoot() { if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; this.Save(this.CurrentRecipe, false); } } InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, CurrentRecipe.Description); dialog.FileName = "new recipe"; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string recipeName = dialog.FileName.Trim(); string description = dialog.Comment; if (string.IsNullOrEmpty(dialog.FileName)) { DialogBox.ShowWarning("Recipe file name should not be empty"); return; } if (IsExist(recipeName, true)) { DialogBox.ShowWarning($"Can not create {recipeName}, Recipe with the same name already exist."); return; } if (recipeName.Length > 200) { DialogBox.ShowWarning($"Can not create folder {recipeName}, Folder name too long, should be less 200."); return; } } private void ReloadRecipeFileList(string chamberType, string processType, string selectedFile, bool selectionIsFolder, bool isRefreshFlod = false) { ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == processType); if (item == null) { LOG.Write("error reload recipe file list, type = " + processType); } var prefix = $"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"; //var recipes = _recipeProvider.GetXmlRecipeList(prefix); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList(prefix);// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{prefix}\\{selectedFile}"); if (isRefreshFlod) item.InvokePropertyChanged(); } private bool FindSelectedFile(ObservableCollection nodes, string selectedFile) { foreach (var recipe in nodes) { recipe.IsSelected = false; if (!recipe.IsFile) { if (recipe.FullPath == selectedFile && recipe.Files.Count == 0) { recipe.IsSelected = true; CurrentFileNode = recipe; return true; } else { if (FindSelectedFile(recipe.Files, selectedFile)) return true; } } else { string filepath = string.Empty; if (string.IsNullOrEmpty(recipe.AllParentPath)) { filepath = recipe.Name; } else { filepath = recipe.AllParentPath + "\\" + recipe.Name; } if (filepath == selectedFile.Replace($"{recipe.PrefixPath}\\", "")) { recipe.IsSelected = true; CurrentFileNode = recipe; return true; } } } return false; } public void SavePermission() { CurrentRecipe.Clear(); var prefixPath = GetPrefix(CurrentFileNode.PrefixPath, CurrentFileNode); var recipeContent = _recipeProvider.LoadRecipe(CurrentRecipe.PrefixPath, CurrentFileNode.FullPath); if (string.IsNullOrEmpty(recipeContent)) { MessageBox.Show($"{CurrentRecipe.PrefixPath}\\{CurrentRecipe.Name} is empty, please confirm the file is valid."); return; } CurrentRecipe.InitData(prefixPath, CurrentRecipe.Name, recipeContent, _columnBuilder.Configs, SelectedChamber); CurrentRecipe.RecipeLevel = CurrentFileNode.Level; RecipePermissionSelectViewModel dialog = new RecipePermissionSelectViewModel("Save recipe and permission", CurrentFileNode.Permission, CurrentRecipe.Description); WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; this.LoadData(CurrentRecipe.PrefixPath, CurrentRecipe.Name); CurrentRecipe.RecipePermission = dialog.RecipePermission; CurrentRecipe.Description = dialog.RecipeComment; CurrentRecipe.RecipeLevel = CurrentFileNode.Level; this.Save(CurrentRecipe, false); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{$"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"}\\{CurrentFileNode.FullPath}"); item.FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.FullPath == CurrentRecipe.PrefixPath) { a.IsSelected = true; RecipeFileList = a.Files.ToList(); return; } }); } private bool IsExist(string fullPath, bool isFile) { for (int i = 0; i < ProcessTypeFileList.Count; i++) { if (ProcessTypeFileList[i].ProcessType == CurrentProcessType) { if (ProcessTypeFileList[i].FileListByProcessType.Count == 0) return false; foreach (var item in ProcessTypeFileList[i].FileListByProcessType) { if (FindFile(fullPath, item, isFile)) { return true; } } return false; } } return true; } private bool FindFile(string path, FileNode root, bool isFile) { if (root.FullPath.ToLower() == path && !isFile) { return true; } if (root.IsFile && isFile) { return root.FullPath.ToLower().Equals(path); } else if (!root.IsFile && isFile) { foreach (var node in root.Files) { if (isFile && node.IsFile && node.FullPath.ToLower() == path) return true; if (!node.IsFile && FindFile(path, node, isFile)) return true; } } return false; } public void SaveAsRecipe() { if (CurrentFileNode == null || !CurrentFileNode.IsFile) return; if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; this.Save(this.CurrentRecipe, false); } } this.LoadData(CurrentRecipe.PrefixPath, CurrentFileNode.FullPath); InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, CurrentRecipe.Description, Visibility.Hidden); dialog.SelectIndex = ProcessTypeFileList[0].FileListByProcessType.IndexOf(ProcessTypeFileList[0].FileListByProcessType.FirstOrDefault(a => a.IsSelected)); dialog.FileName = CurrentFileNode.Name; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string recipeName = dialog.FileName.Trim(); string filepath = dialog.FilePath; FileNode selectNode = dialog.SelectNode; if (string.IsNullOrEmpty(dialog.FileName)) { DialogBox.ShowWarning("Recipe file name should not be empty"); return; } string prefix = CurrentChamberType + "\\" + CurrentProcessType;// + "\\" + filepath; string processType = string.Empty; // string folder = CurrentFileNode.FullPath; // string folder = filepath.Substring(filepath.LastIndexOf("\\") + 1); string folder = filepath.Replace($"{prefix}\\", ""); //if (!string.IsNullOrEmpty(folder)) // recipeName = folder + "\\" + recipeName; // var newPrefix = GetPrefix(CurrentChamberType + "\\" + CurrentProcessType, selectNode); if (!string.IsNullOrEmpty(folder)) { recipeName = $"{folder}\\{recipeName}"; } if (IsExist(prefix + "\\" + recipeName, true)) { DialogBox.ShowWarning($"Can not copy to {recipeName}, Recipe with the same name already exist."); return; } if (recipeName.Length > 200) { DialogBox.ShowWarning($"Can not create folder {recipeName}, Folder name too long, should be less 200."); return; } CurrentRecipe.Creator = BaseApp.Instance.UserContext.LoginName; CurrentRecipe.CreateTime = DateTime.Now; CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; CurrentRecipe.ReviseTime = DateTime.Now; CurrentRecipe.Description = CurrentRecipe.Description + ". Renamed from " + CurrentFileNode.Name; _recipeProvider.SaveAsRecipe(prefix, recipeName, CurrentRecipe.GetXmlString()); prefix = GetPrefix(prefix, CurrentFileNode); if (selectNode.Name == prefix) { ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, recipeName, false); } else { ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{$"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"}\\{recipeName}"); item.FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.FullPath == prefix) { a.IsSelected = true; RecipeFileList = a.Files.ToList(); return; } }); } } public void RenameRecipe() { if (CurrentFileNode == null || !CurrentFileNode.IsFile) return; if (IsChanged) { var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No | DialogButton.Cancel, DialogType.CONFIRM, $"Recipe {CurrentRecipe.Name} is changed, do you want to save it?"); if (selection == DialogButton.Cancel) return; if (selection == DialogButton.Yes) { this.CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName; this.CurrentRecipe.ReviseTime = DateTime.Now; this.Save(this.CurrentRecipe, false); } } InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, CurrentRecipe.Description, Visibility.Hidden); dialog.SelectIndex = ProcessTypeFileList[0].FileListByProcessType.IndexOf(ProcessTypeFileList[0].FileListByProcessType.FirstOrDefault(a => a.IsSelected)); dialog.FileName = CurrentFileNode.Name; WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; string recipeName = dialog.FileName.Trim(); if (string.IsNullOrEmpty(dialog.FileName)) { DialogBox.ShowWarning("Recipe file name should not be empty"); return; } string prefix = CurrentChamberType + "\\" + CurrentProcessType; string processType = string.Empty; string newName = CurrentFileNode.FullPath.Substring(0, CurrentFileNode.FullPath.LastIndexOf("\\") + 1); if (!string.IsNullOrEmpty(newName)) newName = newName + recipeName; else newName = recipeName; if (newName == CurrentFileNode.FullPath) return; if (IsExist(newName, true)) { DialogBox.ShowWarning($"Can not rename to {newName}, Recipe with the same name already exist."); return; } if (newName.Length > 200) { DialogBox.ShowWarning($"Can not create folder {newName}, Folder name too long, should be less 200."); return; } prefix = GetPrefix(prefix, CurrentFileNode); if (_recipeProvider.RenameRecipe(prefix, CurrentFileNode.Name, recipeName)) { UIGlobalVariable.Instance.ProcessModifiedRecipe[CurrentFileNode.FullPath] = $"Rename Recipe from [{CurrentFileNode.FullPath}] to [{recipeName}] {DateTime.Now}"; } CurrentRecipe.Name = dialog.FileName; CurrentRecipe.Description = dialog.Comment; CurrentRecipe.PrefixPath = prefix; this.Save(CurrentRecipe, false); //ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, newName, false); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{$"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"}\\{newName}"); item.FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.FullPath == prefix) { a.IsSelected = true; RecipeFileList = a.Files.ToList(); return; } }); } public void DeleteRecipe() { if (CurrentFileNode == null || !CurrentFileNode.IsFile) return; var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No, DialogType.CONFIRM, $"Are you sure you want to delete \r\n {CurrentFileNode.FullPath}?"); if (selection == DialogButton.No) return; //string nextFocus = CurrentFileNode.Parent.FullPath; //bool isFolder = true; //if (CurrentFileNode.Parent.Files.Count > 1) //{ // for (int i = 0; i < CurrentFileNode.Parent.Files.Count; i++) // { // if (CurrentFileNode.Parent.Files[i] == CurrentFileNode) // { // if (i == 0) // { // nextFocus = CurrentFileNode.Parent.Files[i + 1].FullPath; // isFolder = !CurrentFileNode.Parent.Files[i + 1].IsFile; // } // else // { // nextFocus = CurrentFileNode.Parent.Files[i - 1].FullPath; // isFolder = !CurrentFileNode.Parent.Files[i - 1].IsFile; // } // } // } //} var prefixPath = GetPrefix(CurrentFileNode.PrefixPath, CurrentFileNode); if (_recipeProvider.DeleteRecipe(prefixPath, CurrentFileNode.Name)) { UIGlobalVariable.Instance.ProcessModifiedRecipe[CurrentFileNode.FullPath] = $"Delet Recipe from [{CurrentFileNode.FullPath}] {DateTime.Now}"; } //ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, "", false); ProcessTypeFileItem item = ProcessTypeFileList.FirstOrDefault(x => x.ProcessType == CurrentProcessType); item.FileListByProcessType = RecipeSequenceTreeBuilder.GetFileNodeParameterList($"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}");// RecipeSequenceTreeBuilder.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files; FindSelectedFile(item.FileListByProcessType, $"{$"{ChamberType[ChamberTypeIndexSelection]}\\{item.ProcessType}"}\\{""}"); item.FileListByProcessType.ForEachDo(a => { a.IsSelected = false; if (a.FullPath == prefixPath) { a.IsSelected = true; RecipeFileList = a.Files.ToList(); return; } }); } public void ReloadRecipe() { if (this.editMode == EditMode.Normal || this.editMode == EditMode.Edit) { this.LoadData(CurrentRecipe.PrefixPath, CurrentRecipe.Name); this.UpdateView(); } } public void SaveToAll() { if (!CurrentRecipe.IsCompatibleWithCurrentFormat) { DialogBox.ShowWarning($"Save failed, {CurrentRecipe.Name} is not a valid recipe file"); return; } var selection = DialogBox.ShowDialog(DialogButton.Yes | DialogButton.No, DialogType.CONFIRM, $"Do you want to save to all? \r\n This will replace all the other chamber recipe content"); if (selection == DialogButton.No) return; CurrentRecipe.SaveTo(Chambers.ToArray()); Save(this.CurrentRecipe, false); } public void SaveTo() { if (!CurrentRecipe.IsCompatibleWithCurrentFormat) { DialogBox.ShowWarning($"Save failed, {CurrentRecipe.Name} is not a valid recipe file"); return; } SaveToDialogViewModel dialog = new SaveToDialogViewModel("Select which chamber to copy to", SelectedChamber, Chambers.ToList()); WindowManager wm = new WindowManager(); bool? dialogReturn = wm.ShowDialog(dialog); if (!dialogReturn.HasValue || !dialogReturn.Value) return; List chambers = new List(); foreach (var dialogChamber in dialog.Chambers) { if (dialogChamber.IsEnabled && dialogChamber.IsChecked) chambers.Add(dialogChamber.Name); } if (chambers.Count == 0) return; CurrentRecipe.SaveTo(chambers.ToArray()); Save(this.CurrentRecipe, false); } public void EditRecipe() { CGlobal.RecipeProcessEditViewEnable = true; MECF.Framework.UI.Client.CenterViews.Editors.Recipe.CGlobal.RecipeProcessEditViewEnable = true; if (PopupPage()) { UIGlobalVariable.Instance.ProcessModifiedRecipe[CurrentFileNode.FullPath] = $"Edit {DateTime.Now}"; this.editMode = EditMode.Normal; ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, CurrentFileNode.FullPath, false); this.UpdateView(); } } public void ViewRecipe() { CGlobal.RecipeProcessEditViewEnable = false; MECF.Framework.UI.Client.CenterViews.Editors.Recipe.CGlobal.RecipeProcessEditViewEnable = false; if (PopupPage()) { this.editMode = EditMode.Normal; ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, CurrentFileNode.FullPath, false); this.UpdateView(); } } private string GetTimeFormat(string value) { try { if (value != null && value.Length > 1 && value.Split(':').Length > 2) { var timeH = value.Split(':')[0]; var timeM = value.Split(':')[1]; var timeS = value.Split(':')[2]; if (timeS.Contains('.')) { var timesArray = timeS.Split('.'); return $"{timeH}:{timeM.PadLeft(2, '0')}:{timesArray[0].PadLeft(2, '0')}.{timesArray[1].Substring(0, 1)}"; } else { return $"{timeH}:{timeM.PadLeft(2, '0')}:{timeS.PadLeft(2, '0')}.0"; } } else { return value; } } catch { return value; } } public void SaveRecipe() { if (this.IsChanged) { this.Save(this.CurrentRecipe, false); } } public bool Save(RecipeDataLayout recipe, bool createNew) { bool result = false; if (string.IsNullOrEmpty(recipe.Name)) { MessageBox.Show("Recipe name can't be empty"); return false; } recipe.Revisor = BaseApp.Instance.UserContext.LoginName; recipe.ReviseTime = DateTime.Now; result = this._recipeProvider.SaveRecipe(recipe.PrefixPath, recipe.Name, recipe.GetXmlString()); if (result) { //recipe.DataSaved(); this.editMode = EditMode.Normal; this.UpdateView(); } else { MessageBox.Show("Save failed!"); } return result; } #endregion private void ClearData() { this.editMode = EditMode.None; this.CurrentRecipe.Clear(); this.CurrentRecipe.Name = string.Empty; this.CurrentRecipe.Description = string.Empty; } private void LoadData(string prefixPath, string recipeName) { CurrentRecipe.Clear(); var recipeContent = _recipeProvider.LoadRecipe(prefixPath, recipeName); if (string.IsNullOrEmpty(recipeContent)) { MessageBox.Show($"{prefixPath}\\{recipeName} is empty, please confirm the file is valid."); return; } // CurrentRecipe.RecipeChamberType = "OriginChamber"; CurrentRecipe.RecipeVersion = _columnBuilder.RecipeVersion; _columnBuilder.Build(CurrentProcessType); CurrentRecipe.InitData(prefixPath, recipeName, recipeContent, _columnBuilder.Configs, SelectedChamber); this.editMode = EditMode.Normal; } private void UpdateView() { bool isFileSelected = CurrentFileNode != null && CurrentFileNode.IsFile; this.NotifyOfPropertyChange("CurrentRecipe"); } private string oldPrefix { get; set; } private string oldName { get; set; } private string oldStepName { get; set; } private bool PopupPage() { if (CurrentFileNode == null || !CurrentFileNode.IsFile) return false; var windowManager = IoC.Get(); var currentProcessType = CurrentProcessType; if (CurrentProcessType == "Expert Layout") { RecipeLayoutExpertEditViewModel recipeLayoutExpertEditViewModel = new RecipeLayoutExpertEditViewModel(CurrentRecipe.PrefixPath, CurrentFileNode.FullPath, CurrentFileNode.Permission); return (windowManager as WindowManager)?.ShowDialogWithTitle(recipeLayoutExpertEditViewModel, null, "Layout Setting") == true; } else { RecipeLayoutEditViewModel sdSettingViewModel = new RecipeLayoutEditViewModel(CurrentRecipe.PrefixPath, CurrentFileNode.FullPath, _columnBuilder, CurrentFileNode.Permission); return (windowManager as WindowManager)?.ShowDialogWithTitle(sdSettingViewModel, null, "Layout Setting") == true; } } } }