1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312 |
- 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 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;
- using FurnaceUI.Models;
- using FurnaceUI.Views.Editors;
- using SciChart.Core.Extensions;
- using MECF.Framework.UI.Client.CenterViews.Configs.SystemConfig;
- using FurnaceUI.Common;
- using FurnaceUI.Views.Jobs;
- namespace FurnaceUI.Views.Recipes
- {
- public class RecipeJobViewModel : 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;
- }
- }
- public ObservableCollection<ProcessTypeFileItem> ProcessTypeFileList { get; set; }
- public RecipeDataJob CurrentRecipe { get; private set; }
- public RecipeDataJob CurrentRecipeJob { get; set; } = new RecipeDataJob();
- public FileNode CurrentFileNode { get; set; }
- public bool IsCurrentNodePath { get => CurrentFileNode != null && !CurrentFileNode.IsFile; }
- public bool IsCurrentNodeFile { get => CurrentFileNode != null && CurrentFileNode.IsFile; }
- private bool _isReadAndWritePermission;
- public bool IsReadAndWritePermission
- {
- get
- {
- _isReadAndWritePermission = IsSelectPermission && CurrentFileNode.Permission != "Read";
- return _isReadAndWritePermission;
- }
- set
- {
- _isReadAndWritePermission = value;
- }
- }
- private bool _isFreePermission;
- public bool IsFreePermission
- {
- get
- {
- _isFreePermission = IsSelectPermission;
- //_isFreePermission = IsSelectPermission && CurrentFileNode.Permission == "Free";
- return _isFreePermission;
- }
- set
- {
- _isFreePermission = value;
- }
- }
- private bool _isSelectPermission;
- public bool IsSelectPermission
- {
- get
- {
- _isSelectPermission = LevelDisplay != "LEVEL1" && IsCurrentNodeFile;
- return _isSelectPermission;
- }
- set
- {
- _isSelectPermission = value;
- }
- }
- private bool IsChanged
- {
- get
- {
- return editMode == EditMode.Edit;// || CurrentRecipe.IsChanged;
- }
- }
- private RecipeFormatBuilder _columnBuilder = new RecipeFormatBuilder();
- private EditMode editMode;
- private RecipeProvider _recipeProvider = new RecipeProvider();
- public ObservableCollection<string> ChamberType { get; set; }
- 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<string> Chambers { get; set; }
- public string SelectedChamber { get; set; }
- public object View { get; set; }
- public string SelectLayoutRecipeType { get; set; }
- private string _SelectRecipeTypeName;
- public string SelectRecipeTypeName
- {
- get
- {
- return _SelectRecipeTypeName;
- }
- set
- {
- _SelectRecipeTypeName = value;
- NotifyOfPropertyChange(nameof(SelectRecipeTypeName));
- }
- }
- protected override void OnInitialize()
- {
- base.OnInitialize();
- var chamberType = QueryDataClient.Instance.Service.GetConfig("System.Recipe.SupportedChamberType");
- if (chamberType == null)
- {
- ChamberType = new ObservableCollection<string>() { "Default" };
- }
- else
- {
- ChamberType = new ObservableCollection<string>(((string)(chamberType)).Split(','));
- }
- ChamberTypeIndexSelection = 0;
- //Etch:Process,Clean,Chuck,Dechuck;CVD:Process,Clean;
- var processType = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.{CurrentMenuID}");
- if (processType == null)
- {
- processType = CurrentMenuID;
- }
- ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- 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.BuildFileNode(prefix, "", false, recipes)[0].Files;
- ProcessTypeFileList.Add(type);
- }
- if (ProcessTypeFileList[0].FileListByProcessType.Count > 0)
- CurrentFileNode = ProcessTypeFileList[0].FileListByProcessType[ProcessTypeFileList[0].FileListByProcessType.Count - 1];
- SelectRecipeTypeName = processType + " Recipe";
- UpdateRecipeFormat();
- if (CurrentFileNode != null && CurrentFileNode.IsFile)
- {
- this.LoadData(CurrentFileNode.PrefixPath, CurrentFileNode.FullPath);
- }
- }
- protected override void OnActivate()
- {
- base.OnActivate();
- InitialPathFlag(ProcessTypeFileList[0].FileListByProcessType);
- }
- 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 RecipeDataJob();
- 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>(((string)chamber).Split(','));
- SelectedChamber = Chambers[0];
- MultiChamberVisibility = Chambers.Count > 1 ? Visibility.Visible : Visibility.Collapsed;
- ToleranceVisibility =Visibility.Collapsed;// CurrentRecipe.ToleranceEnable ? Visibility.Visible :
- }
- 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;
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- // this.Save(this.CurrentRecipe, false);
- }
- }
- CurrentFileNode = node;
- NotifyOfPropertyChange(nameof(IsCurrentNodeFile));
- NotifyOfPropertyChange(nameof(IsCurrentNodePath));
- NotifyOfPropertyChange(nameof(IsSelectPermission));
- NotifyOfPropertyChange(nameof(IsReadAndWritePermission));
- NotifyOfPropertyChange(nameof(IsFreePermission));
- if (node != null && node.IsFile)
- {
- this.LoadData(node.PrefixPath, node.FullPath);
- }
- else
- {
- this.ClearData();
- this.editMode = EditMode.None;
- }
- this.UpdateView();
- }
- #region folder
- public void SelectRecipeType()
- {
- var windowManager = IoC.Get<IWindowManager>();
- JobRecipeSelectTypeViewModel jobRecipeSelectTypeViewModel = new JobRecipeSelectTypeViewModel();
- (windowManager as WindowManager)?.ShowDialogWithTitle(jobRecipeSelectTypeViewModel, null, "Select Recipe Type");
- SelectLayoutRecipeType = jobRecipeSelectTypeViewModel.SelectRecipeType;
- if (jobRecipeSelectTypeViewModel.SelectRecipeType != null)
- {
- var selectRecipeType = jobRecipeSelectTypeViewModel.SelectRecipeType;
- var processType = QueryDataClient.Instance.Service.GetConfig($"System.Recipe.{selectRecipeType}");
- if (processType == null)
- {
- processType = selectRecipeType;
- }
- ProcessTypeFileList = new ObservableCollection<ProcessTypeFileItem>();
- 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.BuildFileNode(prefix, "", false, recipes)[0].Files;
- ProcessTypeFileList.Add(type);
- InitialPathFlag(type.FileListByProcessType);
- }
-
- SelectRecipeTypeName = processType + " Recipe";
- this.NotifyOfPropertyChange("ProcessTypeFileList");
- ProcessTypeIndexSelection = 0;
- }
- }
- private void InitialPathFlag(IEnumerable<FileNode> fileNodes)
- {
- foreach (var recipe in fileNodes)
- {
- if (recipe.IsFile)
- {
- RecipeDataJob job = GetJob(recipe.PrefixPath, recipe.FullPath);
- Visibility visibility = Visibility.Hidden;
- if (UIGlobalVariable.Instance.LayoutModifiedRecipe.ContainsKey(job?.LayoutRecipe ?? "")) visibility = Visibility.Visible;
- if (UIGlobalVariable.Instance.ProcessModifiedRecipe.ContainsKey(job?.ProcessRecipe ?? "")) visibility = Visibility.Visible;
- if (recipe.IsVisiable != visibility) recipe.IsVisiable = visibility;
- }
- else InitialPathFlag(recipe.Files);
- }
- }
- 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- 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;
- }
- string prefix = ChamberType[ChamberTypeIndexSelection] + "\\" + ProcessTypeFileList[ProcessTypeIndexSelection].ProcessType;
- string processType = string.Empty;
- string newFolder = string.Empty;
- if (CurrentFileNode != null)
- {
- prefix = CurrentFileNode.PrefixPath;
- string folder = CurrentFileNode.FullPath;
- if (CurrentFileNode.IsFile)
- {
- folder = folder.Substring(0, folder.LastIndexOf("\\") + 1);
- if (!string.IsNullOrEmpty(folder))
- newFolder = folder;
- }
- else
- {
- newFolder = folder + "\\";
- }
- }
- newFolder = 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;
- }
- _recipeProvider.CreateRecipeFolder(prefix, newFolder);
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, newFolder, true);
- }
- 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- 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 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;
- }
- }
- }
- }
- _recipeProvider.DeleteRecipeFolder(CurrentFileNode.PrefixPath, CurrentFileNode.FullPath);
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, nextFocus, isFolder);
- }
- public void RenameFolder()
- {
- if (CurrentFileNode == null || CurrentFileNode.IsFile)
- return;
- InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Folder Name", ProcessTypeFileList[0].FileListByProcessType, "", Visibility.Hidden);
- 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;
- }
- _recipeProvider.RenameFolder(CurrentFileNode.PrefixPath, CurrentFileNode.FullPath, newFolder);
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, newFolder, 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, CurrentRecipe.Description);
- dialog.FileName = (string)QueryDataClient.Instance.Service.GetConfig($"System.Recipe.DefaultJobRecipeName");
- 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 = CurrentChamberType + "\\" + CurrentProcessType + "\\" + filepath;
- if (CurrentFileNode != null)
- {
- if (CurrentFileNode.IsFile)
- {
- filepath = filepath.Substring(0, filepath.LastIndexOf("\\") + 1);
- //if (!string.IsNullOrEmpty(folder))
- // folder = folder;
- }
- else
- {
- filepath = filepath + "\\";
- }
- }
- if (IsExist(recipeName.ToLower(), true))
- {
- 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;
- }
- RecipeDataBase recipe = new RecipeDataBase();
- 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('\\');
- ReloadRecipeFileList(types[0], types[1], recipeName, false);
- }
- 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- 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;
- }
- RecipeDataBase recipe = new RecipeDataBase();
- recipe.Name = recipeName;
- recipe.PrefixPath = CurrentChamberType + "\\" + CurrentProcessType;
- 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);
- }
- private void ReloadRecipeFileList(string chamberType, string processType, string selectedFile, bool selectionIsFolder)
- {
- 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.BuildFileNode(prefix, selectedFile, selectionIsFolder, recipes)[0].Files;
- InitialPathFlag(item.FileListByProcessType);
- item.InvokePropertyChanged();
- }
- 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;
- return FindFile(fullPath, ProcessTypeFileList[i].FileListByProcessType[0].Parent, isFile);
- }
- }
- return true;
- }
- private bool FindFile(string path, FileNode root, bool isFile)
- {
- if (root.FullPath.ToLower() == path && !isFile)
- {
- return true;
- }
- 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType);
- 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.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.CreateTime = DateTime.Now.ToString();
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString();
- CurrentRecipe.Description = CurrentRecipe.Description + ". Renamed from " + CurrentFileNode.Name;
- CurrentRecipe.CreateTime = DateTime.Now.ToString();
- // CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName;
- // CurrentRecipe.ReviseTime = DateTime.Now.ToString();
- CurrentRecipe.Description = CurrentRecipe.Description + ". Renamed from " + CurrentFileNode.Name;
- _recipeProvider.SaveAsRecipe(prefix, recipeName, CurrentRecipe.GetXmlString());
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, recipeName, false);
- // string recipeName = dialog.FileName.Trim();
- // string filepath = dialog.FilePath;
- // 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;
- // if (CurrentFileNode.IsFile)
- // {
- // folder = folder.Substring(0, folder.LastIndexOf("\\") + 1);
- // }
- // if (!string.IsNullOrEmpty(folder))
- // recipeName = folder + "\\" + recipeName;
- // if (CurrentFileNode.FullPath == recipeName)
- // return;
- // if (IsExist(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.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- // CurrentRecipe.CreateTime = DateTime.Now.ToString();
- // // CurrentRecipe.Revisor = BaseApp.Instance.UserContext.LoginName;
- // CurrentRecipe.LastRevisionTime = DateTime.Now.ToString();
- // CurrentRecipe.Description = CurrentRecipe.Description + ". Renamed from " + CurrentFileNode.Name;
- // _recipeProvider.SaveAsRecipe(prefix, recipeName, CurrentRecipe.GetXmlString());
- // ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, recipeName, false);
- }
- 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)
- {
- CurrentRecipe.LastReviseBy = BaseApp.Instance.UserContext.LoginName;
- CurrentRecipe.LastRevisionTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- this.CurrentRecipe.RecipeLevel = this.LevelDisplay;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- InputFileNameDialogViewModel dialog = new InputFileNameDialogViewModel("Input New Recipe Name", ProcessTypeFileList[0].FileListByProcessType, CurrentRecipe.Description, Visibility.Hidden);
- 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.ToLower(), 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;
- }
- CurrentRecipeJob.RecipeChamberType = "OriginChamber";
- var recipeContent = _recipeProvider.LoadRecipe(CurrentRecipe.PrefixPath, CurrentFileNode.FullPath);
- CurrentRecipeJob.InitData(CurrentRecipe.PrefixPath, CurrentRecipe.Name, recipeContent, "PM1");
- _recipeProvider.RenameRecipe(prefix, CurrentFileNode.FullPath, newName);
- CurrentRecipeJob.Name = dialog.FileName;
- CurrentRecipeJob.Description = dialog.Comment;
- CurrentRecipeJob.RecipeLevel = CurrentFileNode.Level;
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, newName, CurrentRecipeJob.GetXmlString());
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, newName, false);
- }
- private void LoadData()
- {
- // CurrentRecipe.InitData(CurrentRecipe.PrefixPath, CurrentRecipe.Name, recipeContent, "PM1");
- //if (SystemConfigProvider.Instance.GetValueByName($"PM1.RecipeEditParameter.CoolTime.{CurrentRecipe.CoolTime}").Length > 0)
- // CoolTime = CurrentRecipe.CoolTime + ":" + SystemConfigProvider.Instance.GetValueByName($"PM1.RecipeEditParameter.CoolTime.{CurrentRecipe.CoolTime}");
- //else
- // CoolTime = "Value:" + CurrentRecipe.CoolTime;
- }
- 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;
- }
- }
- }
- }
- _recipeProvider.DeleteRecipe(CurrentFileNode.PrefixPath, CurrentFileNode.FullPath);
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, nextFocus, isFolder);
- }
- public void ReloadRecipe()
- {
- if (this.editMode == EditMode.Normal || this.editMode == EditMode.Edit)
- {
- this.LoadData(CurrentRecipe.PrefixPath, CurrentRecipe.Name);
- this.UpdateView();
- }
- }
-
- public void ViewRecipe()
- {
- CGlobal.RecipeJobEditViewEnable = false;
- PopupPage();
- }
- public void EditRecipe()
- {
- CGlobal.RecipeJobEditViewEnable = true;
- bool? isSave= PopupPage();
- CurrentFileNode.IsChecked = true;
- //ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, CurrentFileNode.FullPath, false);
- if (isSave == true && CurrentFileNode.IsVisiable != Visibility.Hidden)
- {
- CurrentFileNode.IsVisiable = Visibility.Hidden;
- if(UIGlobalVariable.Instance.ProcessModifiedRecipe.ContainsKey(CurrentRecipe.ProcessRecipe))
- UIGlobalVariable.Instance.ProcessModifiedRecipe.Remove(CurrentRecipe.ProcessRecipe);
- if (UIGlobalVariable.Instance.LayoutModifiedRecipe.ContainsKey(CurrentRecipe.LayoutRecipe))
- UIGlobalVariable.Instance.LayoutModifiedRecipe.Remove(CurrentRecipe.LayoutRecipe);
- }
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, CurrentFileNode.FullPath, false);
- this.UpdateView();
- }
- public void SavePermission()
- {
- 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;
- CurrentRecipe.RecipePermission = dialog.RecipePermission;
- CurrentRecipe.Description = dialog.Comment;
- // this.Save(CurrentRecipe, false);
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- ReloadRecipeFileList(CurrentChamberType, CurrentProcessType, CurrentFileNode.FullPath, false);
- }
- #endregion
- #region Steps
- public void SaveRecipe()
- {
- if (this.IsChanged)
- {
- _recipeProvider.SaveRecipe(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentRecipe.GetXmlString());
- }
- }
- public bool Save(RecipeDataBase 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)
- {
- this.editMode = EditMode.Normal;
- this.UpdateView();
- }
- else
- {
- MessageBox.Show("Save failed!");
- }
- return result;
- }
- private TreeViewItem GetParentObjectEx<TreeViewItem>(DependencyObject obj) where TreeViewItem : FrameworkElement
- {
- DependencyObject parent = VisualTreeHelper.GetParent(obj);
- while (parent != null)
- {
- if (parent is TreeViewItem)
- {
- return (TreeViewItem)parent;
- }
- parent = VisualTreeHelper.GetParent(parent);
- }
- return null;
- }
- public void TreeRightMouseDown(MouseButtonEventArgs e)
- {
- var item = GetParentObjectEx<TreeViewItem>(e.OriginalSource as DependencyObject) as TreeViewItem;
- if (item != null)
- {
- item.Focus();
- }
- }
- #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;
- CurrentRecipe.RecipeChamberType = "OriginChamber";
- CurrentRecipe.PrefixPath = prefixPath;
- CurrentRecipe.Name = recipeName;
- CurrentRecipe.InitData(CurrentRecipe.PrefixPath, CurrentRecipe.Name, recipeContent, "PM1");
- // CurrentRecipe.InitData(prefixPath, recipeName, recipeContent, SelectedChamber);
- this.editMode = EditMode.Normal;
- }
- private RecipeDataJob GetJob(string prefixPath, string recipeName)
- {
- RecipeDataJob job=new RecipeDataJob();
-
- var recipeContent = _recipeProvider.LoadRecipe(prefixPath, recipeName);
- if (string.IsNullOrEmpty(recipeContent))
- {
- MessageBox.Show($"{prefixPath}\\{recipeName} is empty, please confirm the file is valid.");
- return null;
- }
- job.RecipeVersion = _columnBuilder.RecipeVersion;
- job.RecipeChamberType = "OriginChamber";
- job.PrefixPath = prefixPath;
- job.Name = recipeName;
- job.InitData(prefixPath, job.Name, recipeContent, "PM1");
- return job;
- }
- private void UpdateView()
- {
- bool isFileSelected = CurrentFileNode != null && CurrentFileNode.IsFile;
- this.NotifyOfPropertyChange("CurrentRecipe");
- }
- private bool? PopupPage()
- {
- if (CurrentFileNode == null || !CurrentFileNode.IsFile)
- return null;
- var windowManager = IoC.Get<IWindowManager>();
- if (string.IsNullOrEmpty(CurrentRecipe.PrefixPath))
- {
- DialogBox.ShowWarning("Please select a file first");
- return null;
- }
- RecipeJobEditViewModel recipeJobEditViewModel = new RecipeJobEditViewModel(CurrentRecipe.PrefixPath, CurrentRecipe.Name, CurrentFileNode.Permission);
- recipeJobEditViewModel.SelectRecipeType = SelectLayoutRecipeType;
- return(windowManager as WindowManager)?.ShowDialogWithTitle(recipeJobEditViewModel, null, "Job Recipe Edit");
- }
- }
- }
|