You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

111 lines
4.1 KiB

//
// CLRatingCellView.m
// Clocker
//
// Created by Abhishek Banthia on 12/11/15.
//
//
#import "CLRatingCellView.h"
#import "iRate.h"
#import <QuartzCore/QuartzCore.h>
#import "PanelController.h"
@implementation CLRatingCellView
NSString *const CLGitHubIssueURL =@"https://github.com/Abhishaker17/Clocker/issues";
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];
// Drawing code here.
}
- (IBAction)actionOnNegativeFeedback:(id)sender
{
NSButton *leftButton = (NSButton *)sender;
if ([leftButton.title isEqualToString:@"Not Really"]) {
[self setAnimatedStringValue:@"Mind giving us feedback?" andTextField:self.leftField withLeftButtonTitle:@"No, thanks" andRightButtonTitle:@"Yes?"];
}
else
{
//Make the row disappear and call remind later
PanelController *panelRef = [[[NSApplication sharedApplication] mainWindow] windowController];
panelRef.showReviewCell = NO;
[panelRef updateDefaultPreferences];
[panelRef closePanel];
[[iRate sharedInstance] remindLater];
}
}
- (IBAction)actionOnPositiveFeedback:(id)sender
{
NSButton *rightButton = (NSButton *)sender;
if ([rightButton.title isEqualToString:@"Yes!"]) {
[self setAnimatedStringValue:@"Would you mind rating Clocker?" andTextField:self.leftField withLeftButtonTitle:@"No, thanks" andRightButtonTitle:@"Yes"];
}
else if ([rightButton.title isEqualToString:@"Yes?"])
{
[self updateMainTableView];
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:CLGitHubIssueURL]];
}
else
{
//Make the row disappear and call rate
[[iRate sharedInstance] rate];
[self updateMainTableView];
}
}
- (void)updateMainTableView
{
PanelController *panelRef = [[[NSApplication sharedApplication] mainWindow] windowController];
panelRef.showReviewCell = NO;
[panelRef updateDefaultPreferences];
}
- (void) setAnimatedStringValue:(NSString *)aString andTextField:(NSTextField *)textfield withLeftButtonTitle:(NSString *)leftTitle andRightButtonTitle:(NSString *)rightTitle
{
if ([[textfield stringValue] isEqual: aString])
{
return;
}
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
[context setDuration: 1.0];
[context setTimingFunction: [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut]];
[self.imageView.animator setAlphaValue:0.0];
[self.leftButton.animator setAlphaValue:0.0];
[self.rightButton.animator setAlphaValue:0.0];
[textfield.animator setAlphaValue: 0.0];
}
completionHandler:^{
[textfield setStringValue: aString];
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
[context setDuration: 1.0];
[context setTimingFunction: [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn]];
[self.imageView.animator setAlphaValue: 1.0];
[textfield.animator setAlphaValue: 1.0];
[self.leftButton.animator setAlphaValue:1.0];
[self.rightButton.animator setAlphaValue:1.0];
if ([self.leftButton.title isEqualToString:@"Not Really"]) {
[self.leftButton.animator setTitle:@"No, thanks"];
}
if ([self.rightButton.title isEqualToString:@"Yes!"]) {
[self.rightButton.animator setTitle:@"Yes, sure"];
}
[self.leftButton.animator setTitle:leftTitle];
[self.rightButton.animator setTitle:rightTitle];
} completionHandler: ^{
}];
}];
}
@end