PendingChangesTab.cs
33.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
using System;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
using Codice.Client.BaseCommands;
using Codice.Client.BaseCommands.EventTracking;
using Codice.Client.Commands;
using Codice.Client.Common;
using Codice.Client.Common.FsNodeReaders;
using Codice.Client.Common.Threading;
using Codice.CM.Client.Gui;
using Codice.CM.Common;
using Codice.CM.Common.Merge;
using Codice.LogWrapper;
using GluonGui;
using GluonGui.WorkspaceWindow.Views.Checkin.Operations;
using PlasticGui;
using PlasticGui.Gluon;
using PlasticGui.Help.Actions;
using PlasticGui.Help.Conditions;
using PlasticGui.WorkspaceWindow;
using PlasticGui.WorkspaceWindow.Diff;
using PlasticGui.WorkspaceWindow.Items;
using PlasticGui.WorkspaceWindow.Open;
using PlasticGui.WorkspaceWindow.PendingChanges;
using Unity.PlasticSCM.Editor.AssetsOverlays;
using Unity.PlasticSCM.Editor.AssetsOverlays.Cache;
using Unity.PlasticSCM.Editor.AssetUtils;
using Unity.PlasticSCM.Editor.Help;
using Unity.PlasticSCM.Editor.Tool;
using Unity.PlasticSCM.Editor.UI;
using Unity.PlasticSCM.Editor.UI.Progress;
using Unity.PlasticSCM.Editor.UI.Tree;
using Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs;
using Unity.PlasticSCM.Editor.Views.PendingChanges.PendingMergeLinks;
using GluonNewIncomingChangesUpdater = PlasticGui.Gluon.WorkspaceWindow.NewIncomingChangesUpdater;
using GluonShowIncomingChanges = PlasticGui.Gluon.WorkspaceWindow.ShowIncomingChanges;
namespace Unity.PlasticSCM.Editor.Views.PendingChanges
{
internal partial class PendingChangesTab :
IRefreshableView,
PlasticProjectSettingsProvider.IAutoRefreshView,
IPendingChangesView,
CheckinUIOperation.ICheckinView,
PendingChangesViewMenu.IMetaMenuOperations,
IPendingChangesMenuOperations,
IOpenMenuOperations,
IFilesFilterPatternsMenuOperations
{
internal IProgressControls ProgressControlsForTesting { get { return mProgressControls; } }
internal HelpPanel HelpPanelForTesting { get { return mHelpPanel; } }
internal void SetMergeLinksForTesting(
IDictionary<MountPoint, IList<PendingMergeLink>> mergeLinks)
{
mPendingMergeLinks = mergeLinks;
UpdateMergeLinksList();
}
internal string CommentText { get; set; }
internal bool ForceToShowComment { get; set; }
internal PendingChangesTab(
WorkspaceInfo wkInfo,
ViewHost viewHost,
bool isGluonMode,
WorkspaceWindow workspaceWindow,
IViewSwitcher switcher,
IMergeViewLauncher mergeViewLauncher,
IHistoryViewLauncher historyViewLauncher,
PlasticGui.WorkspaceWindow.PendingChanges.PendingChanges pendingChanges,
NewIncomingChangesUpdater developerNewIncomingChangesUpdater,
GluonNewIncomingChangesUpdater gluonNewIncomingChangesUpdater,
IAssetStatusCache assetStatusCache,
StatusBar statusBar,
EditorWindow parentWindow)
{
mWkInfo = wkInfo;
mViewHost = viewHost;
mIsGluonMode = isGluonMode;
mWorkspaceWindow = workspaceWindow;
mHistoryViewLauncher = historyViewLauncher;
mPendingChanges = pendingChanges;
mDeveloperNewIncomingChangesUpdater = developerNewIncomingChangesUpdater;
mGluonNewIncomingChangesUpdater = gluonNewIncomingChangesUpdater;
mAssetStatusCache = assetStatusCache;
mStatusBar = statusBar;
mParentWindow = parentWindow;
mGuiMessage = new UnityPlasticGuiMessage();
mCheckedStateManager = new CheckedStateManager();
mNewChangesInWk = NewChangesInWk.Build(
mWkInfo,
new BuildWorkspacekIsRelevantNewChange());
BuildComponents(isGluonMode, parentWindow);
mBorderColor = EditorGUIUtility.isProSkin
? (Color)new Color32(35, 35, 35, 255)
: (Color)new Color32(153, 153, 153, 255);
mProgressControls = new ProgressControlsForViews();
mCooldownClearCheckinSuccessAction = new CooldownWindowDelayer(
DelayedClearCheckinSuccess,
UnityConstants.NOTIFICATION_CLEAR_INTERVAL);
workspaceWindow.RegisterPendingChangesProgressControls(mProgressControls);
mPendingChangesOperations = new PendingChangesOperations(
mWkInfo,
workspaceWindow,
switcher,
mergeViewLauncher,
this,
mProgressControls,
workspaceWindow,
null,
null,
null);
InitIgnoreRulesAndRefreshView(mWkInfo.ClientPath, this);
}
internal void AutoRefresh()
{
if (mIsAutoRefreshDisabled)
return;
if (!PlasticGuiConfig.Get().Configuration.CommitAutoRefresh)
return;
if (mIsRefreshing || mWorkspaceWindow.IsOperationInProgress())
return;
if (mNewChangesInWk != null && !mNewChangesInWk.Detected())
return;
((IRefreshableView)this).Refresh();
}
internal void ClearIsCommentWarningNeeded()
{
mIsEmptyCheckinCommentWarningNeeded = false;
}
internal void UpdateIsCommentWarningNeeded(string comment)
{
mIsEmptyCheckinCommentWarningNeeded =
string.IsNullOrEmpty(comment) &&
GuiClientConfig.Get().Configuration.ShowEmptyCommentWarning;
mNeedsToShowEmptyCommentDialog = mIsEmptyCheckinCommentWarningNeeded;
}
internal void OnDisable()
{
mSearchField.downOrUpArrowKeyPressed -=
SearchField_OnDownOrUpArrowKeyPressed;
TreeHeaderSettings.Save(
mPendingChangesTreeView.multiColumnHeader.state,
UnityConstants.PENDING_CHANGES_TABLE_SETTINGS_NAME);
}
internal void Update()
{
mProgressControls.UpdateProgress(mParentWindow);
// Displaying the dialog here, because showing it during the window's OnGUI function
// caused errors
if(mNeedsToShowEmptyCommentDialog)
{
mNeedsToShowEmptyCommentDialog = false;
mHasPendingCheckinFromPreviousUpdate =
EmptyCheckinMessageDialog.ShouldContinueWithCheckin(mParentWindow, mWkInfo);
mIsEmptyCheckinCommentWarningNeeded = !mHasPendingCheckinFromPreviousUpdate;
}
}
internal void OnGUI()
{
if (!string.IsNullOrEmpty(mGluonWarningMessage))
DoWarningMessage(mGluonWarningMessage);
DoActionsToolbar(
mWkInfo,
mIsGluonMode,
mProgressControls);
DoChangesArea(
mWkInfo,
mPendingChangesTreeView,
mProgressControls.IsOperationRunning(),
mIsGluonMode,
mIsCheckedInSuccessful);
// Border
Rect result = GUILayoutUtility.GetRect(mParentWindow.position.width, 1);
EditorGUI.DrawRect(result, mBorderColor);
DoCommentsSection();
if (HasPendingMergeLinks())
DoMergeLinksArea(mMergeLinksListView, mParentWindow.position.width);
if (mProgressControls.HasNotification())
{
DrawProgressForViews.ForNotificationArea(mProgressControls.ProgressData);
}
DrawHelpPanel.For(mHelpPanel);
}
internal void DrawSearchFieldForPendingChangesTab()
{
DrawSearchField.For(
mSearchField,
mPendingChangesTreeView,
UnityConstants.SEARCH_FIELD_WIDTH);
}
void IPendingChangesView.ClearComments()
{
ClearComments();
}
void IRefreshableView.Refresh()
{
if (!mAreIgnoreRulesInitialized)
return;
DrawAssetOverlay.ClearCache();
if (mDeveloperNewIncomingChangesUpdater != null)
mDeveloperNewIncomingChangesUpdater.Update();
if (mGluonNewIncomingChangesUpdater != null)
mGluonNewIncomingChangesUpdater.Update(DateTime.Now);
FillPendingChanges(mNewChangesInWk);
}
void PlasticProjectSettingsProvider.IAutoRefreshView.DisableAutoRefresh()
{
mIsAutoRefreshDisabled = true;
}
void PlasticProjectSettingsProvider.IAutoRefreshView.EnableAutoRefresh()
{
mIsAutoRefreshDisabled = false;
}
void PlasticProjectSettingsProvider.IAutoRefreshView.ForceRefresh()
{
((IRefreshableView)this).Refresh();
}
void IPendingChangesView.ClearChangesToCheck(List<string> changes)
{
mCheckedStateManager.ClearChangesToCheck(changes);
mParentWindow.Repaint();
}
void IPendingChangesView.CleanCheckedElements(List<ChangeInfo> checkedChanges)
{
mCheckedStateManager.Clean(checkedChanges);
mParentWindow.Repaint();
}
void IPendingChangesView.CheckChanges(List<string> changesToCheck)
{
mCheckedStateManager.SetChangesToCheck(changesToCheck);
mParentWindow.Repaint();
}
bool IPendingChangesView.IncludeDependencies(
IList<ChangeDependencies<ChangeInfo>> changesDependencies,
string operation)
{
return DependenciesDialog.IncludeDependencies(
mWkInfo, changesDependencies, operation, mParentWindow);
}
CheckinMergeNeededData IPendingChangesView.CheckinMergeNeeded()
{
return CheckinMergeNeededDialog.Merge(mWkInfo, mParentWindow);
}
SearchMatchesData IPendingChangesView.AskForMatches(string changePath)
{
throw new NotImplementedException();
}
void IPendingChangesView.CleanLinkedTasks()
{
}
void CheckinUIOperation.ICheckinView.CollapseWarningMessagePanel()
{
mGluonWarningMessage = string.Empty;
mParentWindow.Repaint();
}
void CheckinUIOperation.ICheckinView.ExpandWarningMessagePanel(string text)
{
mGluonWarningMessage = text;
mParentWindow.Repaint();
}
void CheckinUIOperation.ICheckinView.ClearComments()
{
ClearComments();
}
bool PendingChangesViewMenu.IMetaMenuOperations.SelectionHasMeta()
{
return mPendingChangesTreeView.SelectionHasMeta();
}
void PendingChangesViewMenu.IMetaMenuOperations.DiffMeta()
{
if (LaunchTool.ShowDownloadPlasticExeWindow(
mWkInfo,
mIsGluonMode,
TrackFeatureUseEvent.Features.InstallPlasticCloudFromDiffWorkspaceContent,
TrackFeatureUseEvent.Features.InstallPlasticEnterpriseFromDiffWorkspaceContent,
TrackFeatureUseEvent.Features.CancelPlasticInstallationFromDiffWorkspaceContent))
return;
ChangeInfo selectedChange = PendingChangesSelection
.GetSelectedChange(mPendingChangesTreeView);
ChangeInfo selectedChangeMeta = mPendingChangesTreeView.GetMetaChange(
selectedChange);
ChangeInfo changedForMoved = mPendingChanges.GetChangedForMoved(selectedChange);
ChangeInfo changedForMovedMeta = (changedForMoved == null) ?
null : mPendingChangesTreeView.GetMetaChange(changedForMoved);
DiffOperation.DiffWorkspaceContent(
mWkInfo,
selectedChangeMeta,
changedForMovedMeta,
mProgressControls,
null,
null);
}
void PendingChangesViewMenu.IMetaMenuOperations.HistoryMeta()
{
ChangeInfo selectedChange = PendingChangesSelection
.GetSelectedChange(mPendingChangesTreeView);
ChangeInfo selectedChangeMeta = mPendingChangesTreeView.GetMetaChange(
selectedChange);
mHistoryViewLauncher.ShowHistoryView(
selectedChangeMeta.RepositorySpec,
selectedChangeMeta.RevInfo.ItemId,
selectedChangeMeta.Path,
selectedChangeMeta.IsDirectory);
}
void PendingChangesViewMenu.IMetaMenuOperations.OpenMeta()
{
List<string> selectedPaths = PendingChangesSelection
.GetSelectedMetaPaths(mPendingChangesTreeView);
FileSystemOperation.Open(selectedPaths);
}
void PendingChangesViewMenu.IMetaMenuOperations.OpenMetaWith()
{
List<string> selectedPaths = PendingChangesSelection
.GetSelectedMetaPaths(mPendingChangesTreeView);
OpenOperation.OpenWith(
FileSystemOperation.GetExePath(),
selectedPaths);
}
void PendingChangesViewMenu.IMetaMenuOperations.OpenMetaInExplorer()
{
List<string> selectedPaths = PendingChangesSelection
.GetSelectedMetaPaths(mPendingChangesTreeView);
if (selectedPaths.Count < 1)
return;
FileSystemOperation.OpenInExplorer(selectedPaths[0]);
}
SelectedChangesGroupInfo IPendingChangesMenuOperations.GetSelectedChangesGroupInfo()
{
return PendingChangesSelection.GetSelectedChangesGroupInfo(
mPendingChangesTreeView);
}
void IPendingChangesMenuOperations.Diff()
{
if (LaunchTool.ShowDownloadPlasticExeWindow(
mWkInfo,
mIsGluonMode,
TrackFeatureUseEvent.Features.InstallPlasticCloudFromDiffWorkspaceContent,
TrackFeatureUseEvent.Features.InstallPlasticEnterpriseFromDiffWorkspaceContent,
TrackFeatureUseEvent.Features.CancelPlasticInstallationFromDiffWorkspaceContent))
return;
ChangeInfo selectedChange = PendingChangesSelection
.GetSelectedChange(mPendingChangesTreeView);
DiffOperation.DiffWorkspaceContent(
mWkInfo,
selectedChange,
mPendingChanges.GetChangedForMoved(selectedChange),
null,
null,
null);
}
void IPendingChangesMenuOperations.UndoChanges()
{
List<ChangeInfo> changesToUndo = PendingChangesSelection
.GetSelectedChanges(mPendingChangesTreeView);
List<ChangeInfo> dependenciesCandidates =
mPendingChangesTreeView.GetDependenciesCandidates(changesToUndo, true);
UndoChangesForMode(mIsGluonMode, changesToUndo, dependenciesCandidates);
}
void IPendingChangesMenuOperations.SearchMatches()
{
ChangeInfo selectedChange = PendingChangesSelection
.GetSelectedChange(mPendingChangesTreeView);
if (selectedChange == null)
return;
SearchMatchesOperation operation = new SearchMatchesOperation(
mWkInfo, mWorkspaceWindow, this,
mProgressControls, mDeveloperNewIncomingChangesUpdater);
operation.SearchMatches(
selectedChange,
PendingChangesSelection.GetAllChanges(mPendingChangesTreeView));
}
void IPendingChangesMenuOperations.ApplyLocalChanges()
{
List<ChangeInfo> selectedChanges = PendingChangesSelection
.GetSelectedChanges(mPendingChangesTreeView);
if (selectedChanges.Count == 0)
return;
ApplyLocalChangesOperation operation = new ApplyLocalChangesOperation(
mWkInfo, mWorkspaceWindow, this,
mProgressControls, mDeveloperNewIncomingChangesUpdater);
operation.ApplyLocalChanges(
selectedChanges,
PendingChangesSelection.GetAllChanges(mPendingChangesTreeView));
}
void IPendingChangesMenuOperations.Delete()
{
List<string> privateDirectoriesToDelete;
List<string> privateFilesToDelete;
if (!mPendingChangesTreeView.GetSelectedPathsToDelete(
out privateDirectoriesToDelete,
out privateFilesToDelete))
return;
DeleteOperation.Delete(
mWorkspaceWindow, mProgressControls,
privateDirectoriesToDelete, privateFilesToDelete,
mDeveloperNewIncomingChangesUpdater,
RefreshAsset.UnityAssetDatabase);
}
void IPendingChangesMenuOperations.Annotate()
{
throw new NotImplementedException();
}
void IPendingChangesMenuOperations.History()
{
ChangeInfo selectedChange = PendingChangesSelection.
GetSelectedChange(mPendingChangesTreeView);
mHistoryViewLauncher.ShowHistoryView(
selectedChange.RepositorySpec,
selectedChange.RevInfo.ItemId,
selectedChange.Path,
selectedChange.IsDirectory);
}
void IOpenMenuOperations.Open()
{
List<string> selectedPaths = PendingChangesSelection.
GetSelectedPathsWithoutMeta(mPendingChangesTreeView);
FileSystemOperation.Open(selectedPaths);
}
void IOpenMenuOperations.OpenWith()
{
List<string> selectedPaths = PendingChangesSelection.
GetSelectedPathsWithoutMeta(mPendingChangesTreeView);
OpenOperation.OpenWith(
FileSystemOperation.GetExePath(),
selectedPaths);
}
void IOpenMenuOperations.OpenWithCustom(string exePath, string args)
{
List<string> selectedPaths = PendingChangesSelection.
GetSelectedPathsWithoutMeta(mPendingChangesTreeView);
OpenOperation.OpenWith(exePath, selectedPaths);
}
void IOpenMenuOperations.OpenInExplorer()
{
List<string> selectedPaths = PendingChangesSelection
.GetSelectedPathsWithoutMeta(mPendingChangesTreeView);
if (selectedPaths.Count < 1)
return;
FileSystemOperation.OpenInExplorer(selectedPaths[0]);
}
void IFilesFilterPatternsMenuOperations.AddFilesFilterPatterns(
FilterTypes type, FilterActions action, FilterOperationType operation)
{
List<string> selectedPaths = PendingChangesSelection.GetSelectedPaths(
mPendingChangesTreeView);
string[] rules = FilterRulesGenerator.GenerateRules(
selectedPaths, mWkInfo.ClientPath, action, operation);
bool isApplicableToAllWorkspaces = !mIsGluonMode;
bool isAddOperation = operation == FilterOperationType.Add;
FilterRulesConfirmationData filterRulesConfirmationData =
FilterRulesConfirmationDialog.AskForConfirmation(
rules, isAddOperation, isApplicableToAllWorkspaces, mParentWindow);
AddFilesFilterPatternsOperation.Run(
mWkInfo, mWorkspaceWindow, type, operation, filterRulesConfirmationData);
}
void SearchField_OnDownOrUpArrowKeyPressed()
{
mPendingChangesTreeView.SetFocusAndEnsureSelectedItem();
}
void InitIgnoreRulesAndRefreshView(
string wkPath, IRefreshableView view)
{
IThreadWaiter waiter = ThreadWaiter.GetWaiter(10);
waiter.Execute(
/*threadOperationDelegate*/ delegate
{
if (IsIgnoreConfigDefined.For(wkPath))
return;
AddIgnoreRules.WriteRules(
wkPath, UnityConditions.GetMissingIgnoredRules(wkPath));
},
/*afterOperationDelegate*/ delegate
{
mAreIgnoreRulesInitialized = true;
view.Refresh();
if (waiter.Exception == null)
return;
mLog.ErrorFormat(
"Error adding ignore rules for Unity: {0}",
waiter.Exception);
mLog.DebugFormat(
"Stack trace: {0}",
waiter.Exception.StackTrace);
});
}
void FillPendingChanges(INewChangesInWk newChangesInWk)
{
if (mIsRefreshing)
return;
mIsRefreshing = true;
List<ChangeInfo> changesToSelect =
PendingChangesSelection.GetChangesToFocus(mPendingChangesTreeView);
((IProgressControls)mProgressControls).ShowProgress(PlasticLocalization.
GetString(PlasticLocalization.Name.LoadingPendingChanges));
IDictionary<MountPoint, IList<PendingMergeLink>> mergeLinks = null;
IThreadWaiter waiter = ThreadWaiter.GetWaiter();
waiter.Execute(
/*threadOperationDelegate*/ delegate
{
FilterManager.Get().Reload();
WorkspaceStatusOptions options = WorkspaceStatusOptions.None;
options |= WorkspaceStatusOptions.FindAdded;
options |= WorkspaceStatusOptions.FindDeleted;
options |= WorkspaceStatusOptions.FindMoved;
options |= WorkspaceStatusOptions.SplitModifiedMoved;
options |= PendingChangesOptions.GetWorkspaceStatusOptions();
if (newChangesInWk != null)
newChangesInWk.Detected();
mPendingChanges.Calculate(
options, PendingChangesOptions.GetMovedMatchingOptions());
mergeLinks = PlasticGui.Plastic.API.GetPendingMergeLinks(mWkInfo);
},
/*afterOperationDelegate*/ delegate
{
mPendingMergeLinks = mergeLinks;
try
{
if (waiter.Exception != null)
{
ExceptionsHandler.DisplayException(waiter.Exception);
return;
}
UpdateChangesTree();
UpdateMergeLinksList();
PendingChangesSelection.SelectChanges(
mPendingChangesTreeView, changesToSelect);
}
finally
{
((IProgressControls)mProgressControls).HideProgress();
//UpdateIsCommentWarningNeeded(CommentText);
UpdateNotificationPanel();
mIsRefreshing = false;
}
});
}
void DoCommentsSection()
{
EditorGUILayout.BeginVertical(UnityStyles.PendingChangesTab.Comment);
EditorGUILayout.Space(10);
EditorGUILayout.BeginHorizontal();
EditorGUILayout.Space(2);
EditorGUILayout.BeginVertical();
GUILayout.FlexibleSpace();
DrawUserIcon.ForPendeingChangesTab(CommentText);
GUILayout.FlexibleSpace();
EditorGUILayout.EndVertical();
float width = Mathf.Clamp(mParentWindow.position.width, 300f, 820f);
DrawCommentTextArea.For(
this,
width,
mProgressControls.IsOperationRunning());
EditorGUILayout.Space(2);
// To center the action buttons vertically
EditorGUILayout.BeginVertical();
GUILayout.FlexibleSpace();
DoOperationsToolbar(
mWkInfo,
mIsGluonMode,
mAdvancedDropdownMenu,
mProgressControls.IsOperationRunning());
GUILayout.FlexibleSpace();
EditorGUILayout.EndVertical();
GUILayout.FlexibleSpace();
EditorGUILayout.EndHorizontal();
EditorGUILayout.Space(10);
EditorGUILayout.EndVertical();
}
void DoOperationsToolbar(
WorkspaceInfo wkInfo,
bool isGluonMode,
GenericMenu advancedDropdownMenu,
bool isOperationRunning)
{
EditorGUILayout.BeginHorizontal();
using (new GuiEnabled(!isOperationRunning))
{
if(mHasPendingCheckinFromPreviousUpdate)
{
mHasPendingCheckinFromPreviousUpdate = false;
CheckinForMode(wkInfo, isGluonMode, mKeepItemsLocked);
}
else if (DrawActionButton.ForCommentSection(
PlasticLocalization.GetString(
PlasticLocalization.Name.CheckinChanges)))
{
UpdateIsCommentWarningNeeded(CommentText);
if (!mIsEmptyCheckinCommentWarningNeeded &&
mPendingChanges.HasPendingChanges())
{
CheckinForMode(wkInfo, isGluonMode, mKeepItemsLocked);
}
}
GUILayout.Space(2);
if (DrawActionButton.ForCommentSection(PlasticLocalization.GetString(
PlasticLocalization.Name.UndoChanges)))
{
TrackFeatureUseEvent.For(PlasticGui.Plastic.API.GetRepositorySpec(wkInfo),
TrackFeatureUseEvent.Features.UndoTextButton);
UndoForMode(wkInfo, isGluonMode);
}
if (isGluonMode)
{
mKeepItemsLocked = EditorGUILayout.ToggleLeft(
PlasticLocalization.GetString(PlasticLocalization.Name.KeepLocked),
mKeepItemsLocked,
GUILayout.Width(UnityConstants.EXTRA_LARGE_BUTTON_WIDTH));
}
//TODO: Codice - beta: hide the advanced menu until the behavior is implemented
/*else
{
var dropDownContent = new GUIContent(string.Empty);
var dropDownRect = GUILayoutUtility.GetRect(
dropDownContent, EditorStyles.toolbarDropDown);
if (EditorGUI.DropdownButton(dropDownRect, dropDownContent,
FocusType.Passive, EditorStyles.toolbarDropDown))
advancedDropdownMenu.DropDown(dropDownRect);
}*/
}
EditorGUILayout.EndHorizontal();
}
void UpdateChangesTree()
{
mPendingChangesTreeView.BuildModel(mPendingChanges, mCheckedStateManager);
mPendingChangesTreeView.Refilter();
mPendingChangesTreeView.Sort();
mPendingChangesTreeView.Reload();
}
static void DoWarningMessage(string message)
{
GUILayout.Label(message, UnityStyles.WarningMessage);
}
void UpdateMergeLinksList()
{
mMergeLinksListView.BuildModel(mPendingMergeLinks);
mMergeLinksListView.Reload();
}
void UpdateNotificationPanel()
{
if (PlasticGui.Plastic.API.IsFsReaderWatchLimitReached(mWkInfo))
{
((IProgressControls)mProgressControls).ShowWarning(PlasticLocalization.
GetString(PlasticLocalization.Name.NotifyLinuxWatchLimitWarning));
return;
}
}
void DoActionsToolbar(
WorkspaceInfo workspaceInfo,
bool isGluonMode,
ProgressControlsForViews progressControls)
{
EditorGUILayout.BeginHorizontal(EditorStyles.toolbar);
if (progressControls.IsOperationRunning())
{
DrawProgressForViews.ForIndeterminateProgress(
progressControls.ProgressData);
}
GUILayout.FlexibleSpace();
EditorGUILayout.EndHorizontal();
}
static void DoChangesArea(
WorkspaceInfo wkInfo,
PendingChangesTreeView changesTreeView,
bool isOperationRunning,
bool isGluonMode,
bool isCheckedInSuccessful)
{
GUI.enabled = !isOperationRunning;
Rect rect = GUILayoutUtility.GetRect(0, 100000, 0, 100000);
changesTreeView.OnGUI(rect);
if (changesTreeView.GetTotalItemCount() == 0)
{
DrawEmptyState(
rect,
isCheckedInSuccessful);
}
GUI.enabled = true;
}
static void DrawEmptyState(
Rect rect,
bool isCheckedInSuccessful)
{
if (isCheckedInSuccessful)
{
DrawTreeViewEmptyState.For(
rect,
PlasticLocalization.GetString(PlasticLocalization.Name.CheckinCompleted),
Images.Name.StepOk);
return;
}
DrawTreeViewEmptyState.For(
rect,
PlasticLocalization.GetString(PlasticLocalization.Name.NoPendingChanges));
}
bool HasPendingMergeLinks()
{
if (mPendingMergeLinks == null)
return false;
return mPendingMergeLinks.Count > 0;
}
static void DoMergeLinksArea(
MergeLinksListView mergeLinksListView, float width)
{
GUILayout.Label(
PlasticLocalization.GetString(
PlasticLocalization.Name.MergeLinkDescriptionColumn),
EditorStyles.boldLabel);
float desiredTreeHeight = mergeLinksListView.DesiredHeight;
Rect treeRect = GUILayoutUtility.GetRect(
0,
width,
desiredTreeHeight,
desiredTreeHeight);
mergeLinksListView.OnGUI(treeRect);
}
void BuildComponents(
bool isGluonMode,
EditorWindow plasticWindow)
{
mHelpPanel = new HelpPanel(plasticWindow);
mAdvancedDropdownMenu = new GenericMenu();
mAdvancedDropdownMenu.AddItem(new GUIContent(
PlasticLocalization.GetString(PlasticLocalization.Name.UndoUnchangedButton)),
false, () => { });
mSearchField = new SearchField();
mSearchField.downOrUpArrowKeyPressed += SearchField_OnDownOrUpArrowKeyPressed;
PendingChangesTreeHeaderState headerState =
PendingChangesTreeHeaderState.GetDefault(isGluonMode);
TreeHeaderSettings.Load(headerState,
UnityConstants.PENDING_CHANGES_TABLE_SETTINGS_NAME,
(int)PendingChangesTreeColumn.Item, true);
mPendingChangesTreeView = new PendingChangesTreeView(
mWkInfo, mIsGluonMode, headerState,
PendingChangesTreeHeaderState.GetColumnNames(),
new PendingChangesViewMenu(mWkInfo, this, this, this, this, mIsGluonMode),
mAssetStatusCache);
mPendingChangesTreeView.Reload();
mMergeLinksListView = new MergeLinksListView();
mMergeLinksListView.Reload();
}
INewChangesInWk mNewChangesInWk;
GenericMenu mAdvancedDropdownMenu;
void ClearComments()
{
CommentText = string.Empty;
ForceToShowComment = true;
mParentWindow.Repaint();
}
PendingChangesTreeView mPendingChangesTreeView;
MergeLinksListView mMergeLinksListView;
HelpPanel mHelpPanel;
volatile bool mAreIgnoreRulesInitialized = false;
bool mIsRefreshing;
bool mIsAutoRefreshDisabled;
bool mIsEmptyCheckinCommentWarningNeeded = false;
bool mNeedsToShowEmptyCommentDialog = false;
bool mHasPendingCheckinFromPreviousUpdate = false;
bool mKeepItemsLocked;
string mGluonWarningMessage;
bool mIsCheckedInSuccessful;
IDictionary<MountPoint, IList<PendingMergeLink>> mPendingMergeLinks;
SearchField mSearchField;
Color mBorderColor;
readonly ProgressControlsForViews mProgressControls;
readonly EditorWindow mParentWindow;
readonly StatusBar mStatusBar;
readonly CooldownWindowDelayer mCooldownClearCheckinSuccessAction;
readonly IAssetStatusCache mAssetStatusCache;
readonly PendingChangesOperations mPendingChangesOperations;
readonly CheckedStateManager mCheckedStateManager;
readonly GuiMessage.IGuiMessage mGuiMessage;
readonly NewIncomingChangesUpdater mDeveloperNewIncomingChangesUpdater;
readonly GluonNewIncomingChangesUpdater mGluonNewIncomingChangesUpdater;
readonly bool mIsGluonMode;
readonly IHistoryViewLauncher mHistoryViewLauncher;
readonly PlasticGui.WorkspaceWindow.PendingChanges.PendingChanges mPendingChanges;
readonly WorkspaceWindow mWorkspaceWindow;
readonly ViewHost mViewHost;
readonly WorkspaceInfo mWkInfo;
static readonly ILog mLog = LogManager.GetLogger("PendingChangesTab");
}
}