forked from pieter/gitx
-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathPBGitWindowController.m
324 lines (259 loc) · 8.98 KB
/
PBGitWindowController.m
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
//
// PBDetailController.m
// GitX
//
// Created by Pieter de Bie on 16-06-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBGitWindowController.h"
#import "PBGitHistoryController.h"
#import "PBGitCommitController.h"
#import "Terminal.h"
#import "PBCommitHookFailedSheet.h"
#import "PBGitXMessageSheet.h"
#import "PBGitSidebarController.h"
#import "RJModalRepoSheet.h"
@interface PBGitWindowController ()
@property (nonatomic, strong) RJModalRepoSheet* currentModalSheet;
@end
@implementation PBGitWindowController
@synthesize repository;
@synthesize currentModalSheet;
- (id)initWithRepository:(PBGitRepository*)theRepository displayDefault:(BOOL)displayDefault
{
if (!(self = [self initWithWindowNibName:@"RepositoryWindow"]))
return nil;
self.repository = theRepository;
return self;
}
- (void)synchronizeWindowTitleWithDocumentName
{
[super synchronizeWindowTitleWithDocumentName];
// Point window proxy icon at project directory, not internal .git dir
NSString *workingDirectory = [self.repository workingDirectory];
if (workingDirectory)
{
[[self window] setRepresentedURL:[NSURL fileURLWithPath:workingDirectory
isDirectory:YES]];
}
}
- (void)windowWillClose:(NSNotification *)notification
{
NSLog(@"Window will close!");
if (sidebarController)
[sidebarController closeView];
if (contentController)
[contentController removeObserver:self forKeyPath:@"status"];
}
- (BOOL)validateMenuItem:(NSMenuItem *)menuItem
{
if ([menuItem action] == @selector(showCommitView:)) {
[menuItem setState:(contentController == sidebarController.commitViewController) ? YES : NO];
return ![repository isBareRepository];
} else if ([menuItem action] == @selector(showHistoryView:)) {
[menuItem setState:(contentController != sidebarController.commitViewController) ? YES : NO];
return ![repository isBareRepository];
}
return YES;
}
- (void) awakeFromNib
{
[[self window] setDelegate:self];
[[self window] setAutorecalculatesContentBorderThickness:NO forEdge:NSMinYEdge];
[[self window] setContentBorderThickness:31.0f forEdge:NSMinYEdge];
sidebarController = [[PBGitSidebarController alloc] initWithRepository:repository superController:self];
[[sidebarController view] setFrame:[sourceSplitView bounds]];
[sourceSplitView addSubview:[sidebarController view]];
[sourceListControlsView addSubview:sidebarController.sourceListControlsView];
[[statusField cell] setBackgroundStyle:NSBackgroundStyleRaised];
[progressIndicator setUsesThreadedAnimation:YES];
NSImage *finderImage = [[NSWorkspace sharedWorkspace] iconForFileType:NSFileTypeForHFSTypeCode(kFinderIcon)];
[finderItem setImage:finderImage];
NSImage *terminalImage = [[NSWorkspace sharedWorkspace] iconForFile:@"/Applications/Utilities/Terminal.app/"];
[terminalItem setImage:terminalImage];
[self showWindow:nil];
}
- (void) removeAllContentSubViews
{
if ([contentSplitView subviews])
while ([[contentSplitView subviews] count] > 0)
[[[contentSplitView subviews] lastObject] removeFromSuperviewWithoutNeedingDisplay];
}
- (void) changeContentController:(PBViewController *)controller
{
if (!controller || (contentController == controller))
return;
if (contentController)
[contentController removeObserver:self forKeyPath:@"status"];
[self removeAllContentSubViews];
contentController = controller;
[[contentController view] setFrame:[contentSplitView bounds]];
[contentSplitView addSubview:[contentController view]];
[self setNextResponder: contentController];
[[self window] makeFirstResponder:[contentController firstResponder]];
[contentController updateView];
[contentController addObserver:self forKeyPath:@"status" options:NSKeyValueObservingOptionInitial context:@"statusChange"];
}
- (void) showCommitView:(id)sender
{
[sidebarController selectStage];
}
- (void) showHistoryView:(id)sender
{
[sidebarController selectCurrentBranch];
}
- (void)showCommitHookFailedSheet:(NSString *)messageText infoText:(NSString *)infoText commitController:(PBGitCommitController *)controller
{
[PBCommitHookFailedSheet beginWithMessageText:messageText
infoText:infoText
commitController:controller];
}
- (void)showMessageSheet:(NSString *)messageText infoText:(NSString *)infoText
{
[PBGitXMessageSheet beginMessageSheetForRepo:self.repository
withMessageText:messageText
infoText:infoText];
}
- (void)showErrorSheet:(NSError *)error
{
if ([[error domain] isEqualToString:PBGitRepositoryErrorDomain])
{
[PBGitXMessageSheet beginMessageSheetForRepo:self.repository withError:error];
}
else
{
[[NSAlert alertWithError:error] beginSheetModalForWindow:[self window]
modalDelegate:self
didEndSelector:nil
contextInfo:nil];
}
}
- (void)showErrorSheetTitle:(NSString *)title message:(NSString *)message arguments:(NSArray *)arguments output:(NSString *)output
{
NSString *command = [arguments componentsJoinedByString:@" "];
NSString *reason = [NSString stringWithFormat:@"%@\n\ncommand: git %@\n%@", message, command, output];
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:
title, NSLocalizedDescriptionKey,
reason, NSLocalizedRecoverySuggestionErrorKey,
nil];
NSError *error = [NSError errorWithDomain:PBGitRepositoryErrorDomain code:0 userInfo:userInfo];
[self showErrorSheet:error];
}
- (IBAction) revealInFinder:(id)sender
{
[[NSWorkspace sharedWorkspace] openFile:[repository workingDirectory]];
}
- (IBAction) openInTerminal:(id)sender
{
TerminalApplication *term = [SBApplication applicationWithBundleIdentifier: @"com.apple.Terminal"];
NSString *workingDirectory = [[repository workingDirectory] stringByAppendingString:@"/"];
NSString *cmd = [NSString stringWithFormat: @"cd \"%@\"; clear; echo '# Opened by GitX:'; git status", workingDirectory];
[term doScript: cmd in: nil];
[NSThread sleepForTimeInterval: 0.1];
[term activate];
}
- (IBAction) refresh:(id)sender
{
[contentController refresh:self];
}
- (void) updateStatus
{
NSString *status = contentController.status;
BOOL isBusy = contentController.isBusy;
if (!status) {
status = @"";
isBusy = NO;
}
[statusField setStringValue:status];
if (isBusy) {
[progressIndicator startAnimation:self];
[progressIndicator setHidden:NO];
}
else {
[progressIndicator stopAnimation:self];
[progressIndicator setHidden:YES];
}
}
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if ([(__bridge NSString *)context isEqualToString:@"statusChange"]) {
[self updateStatus];
return;
}
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
- (void)setHistorySearch:(NSString *)searchString mode:(NSInteger)mode
{
[sidebarController setHistorySearch:searchString mode:mode];
}
- (void)showModalSheet:(RJModalRepoSheet *)sheet
{
if (self.currentModalSheet == nil) {
[NSApp beginSheet:[sheet window]
modalForWindow:self.window
modalDelegate:sheet
didEndSelector:nil
contextInfo:NULL];
self.currentModalSheet = sheet;
}
}
- (void)hideModalSheet:(RJModalRepoSheet *)sheet
{
if (self.currentModalSheet == sheet) {
[NSApp endSheet:sheet.window];
[sheet.window orderOut:sheet];
self.currentModalSheet = nil;
} else {
assert(self.currentModalSheet == sheet);
}
}
#pragma mark SplitView Delegates
- (IBAction) stashSave:(id) sender
{
[repository stashSaveWithKeepIndex:NO];
}
- (IBAction) stashSaveWithKeepIndex:(id) sender
{
[repository stashSaveWithKeepIndex:YES];
}
- (IBAction) stashPop:(id) sender
{
if ([repository.stashes count] > 0) {
PBGitStash * latestStash = [repository.stashes objectAtIndex:0];
[repository stashPop:latestStash];
}
}
#pragma mark -
#pragma mark SplitView Delegates
#define kGitSplitViewMinWidth 150.0f
#define kGitSplitViewMaxWidth 300.0f
#pragma mark min/max widths while moving the divider
- (CGFloat)splitView:(NSSplitView *)view constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)dividerIndex
{
if (proposedMin < kGitSplitViewMinWidth)
return kGitSplitViewMinWidth;
return proposedMin;
}
- (CGFloat)splitView:(NSSplitView *)view constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
{
if (dividerIndex == 0)
return kGitSplitViewMaxWidth;
return proposedMax;
}
#pragma mark constrain sidebar width while resizing the window
- (void)splitView:(NSSplitView *)sender resizeSubviewsWithOldSize:(NSSize)oldSize
{
NSRect newFrame = [sender frame];
float dividerThickness = [sender dividerThickness];
NSView *sourceView = [[sender subviews] objectAtIndex:0];
NSRect sourceFrame = [sourceView frame];
sourceFrame.size.height = newFrame.size.height;
NSView *mainView = [[sender subviews] objectAtIndex:1];
NSRect mainFrame = [mainView frame];
mainFrame.origin.x = sourceFrame.size.width + dividerThickness;
mainFrame.size.width = newFrame.size.width - mainFrame.origin.x;
mainFrame.size.height = newFrame.size.height;
[sourceView setFrame:sourceFrame];
[mainView setFrame:mainFrame];
}
@end