Files
gitx/PBWebChangesController.m
T
2008-10-10 21:59:23 +02:00

72 lines
1.7 KiB
Objective-C

//
// PBWebChangesController.m
// GitX
//
// Created by Pieter de Bie on 22-09-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBWebChangesController.h"
@implementation PBWebChangesController
- (void) awakeFromNib
{
startFile = @"diff";
[super awakeFromNib];
[unstagedFilesController addObserver:self forKeyPath:@"selection" options:0 context:@"UnstagedFileSelected"];
[cachedFilesController addObserver:self forKeyPath:@"selection" options:0 context:@"cachedFileSelected"];
}
static PBChangedFile *lastFileSelected = nil;
- (void) didLoad
{
if (lastFileSelected)
[self showDiff: lastFileSelected cached:NO];
}
- (BOOL) amend
{
return controller.amend;
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
if ([[object selectedObjects] count] == 0)
return;
// TODO: Move this to commitcontroller
if (object == unstagedFilesController)
[cachedFilesController setSelectionIndexes:[NSIndexSet indexSet]];
else
[unstagedFilesController setSelectionIndexes:[NSIndexSet indexSet]];
PBChangedFile *file = [[object selectedObjects] objectAtIndex:0];
[self showDiff: file cached: object == cachedFilesController];
}
- (void) showDiff:(PBChangedFile *)file cached:(BOOL) cached
{
if (!finishedLoading) {
lastFileSelected = file;
return;
}
// Don't reload if we already display this file
if (previousFile == file)
return;
previousFile = file;
id script = [view windowScriptObject];
NSLog(@"Showing diff..");
[script callWebScriptMethod:@"showFileChanges" withArguments:[NSArray arrayWithObjects:file, [NSNumber numberWithBool:cached], nil]];
}
@end