forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSDateFormatterExtras.m
89 lines (82 loc) · 2.77 KB
/
NSDateFormatterExtras.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
//
// NSDateFormatterExtras.m
// iTerm
//
// Created by George Nachman on 10/26/10.
// Copyright 2010 George Nachman. All rights reserved.
//
#import "NSDateFormatterExtras.h"
@implementation NSDateFormatter (Extras)
+ (NSString *)dateDifferenceStringFromDate:(NSDate *)date
{
NSDate *now = [NSDate date];
double theTime = [date timeIntervalSinceDate:now];
theTime *= -1;
if (theTime < 60) {
return @"Moments ago";
} else if (theTime < 3600) {
int diff = round(theTime / 60);
if (diff == 1) {
return [NSString stringWithFormat:@"1 minute ago", diff];
}
return [NSString stringWithFormat:@"%d minutes ago", diff];
} else if (theTime < 86400) {
int diff = round(theTime / 60 / 60);
if (diff == 1) {
return [NSString stringWithFormat:@"1 hour ago", diff];
}
return [NSString stringWithFormat:@"%d hours ago", diff];
} else if (theTime < 604800) {
int diff = round(theTime / 60 / 60 / 24);
if (diff == 1) {
return [NSString stringWithFormat:@"Yesterday", diff];
}
if (diff == 7) {
return [NSString stringWithFormat:@"Last week", diff];
}
return[NSString stringWithFormat:@"%d days ago", diff];
} else {
int diff = round(theTime / 60 / 60 / 24 / 7);
if (diff == 1) {
return [NSString stringWithFormat:@"Last week", diff];
}
return [NSString stringWithFormat:@"%d weeks ago", diff];
}
}
+ (NSString *)compactDateDifferenceStringFromDate:(NSDate *)date
{
NSDate *now = [NSDate date];
double theTime = [date timeIntervalSinceDate:now];
theTime *= -1;
if (theTime < 60) {
return @"< 1 min";
} else if (theTime < 3600) {
int diff = round(theTime / 60);
if (diff == 1) {
return [NSString stringWithFormat:@"1 min", diff];
}
return [NSString stringWithFormat:@"%d min", diff];
} else if (theTime < 86400) {
int diff = round(theTime / 60 / 60);
if (diff == 1) {
return [NSString stringWithFormat:@"1 hour", diff];
}
return [NSString stringWithFormat:@"%d hrs", diff];
} else if (theTime < 604800) {
int diff = round(theTime / 60 / 60 / 24);
if (diff == 1) {
return [NSString stringWithFormat:@"1 day", diff];
}
if (diff == 7) {
return [NSString stringWithFormat:@"1 week", diff];
}
return[NSString stringWithFormat:@"%d days", diff];
} else {
int diff = round(theTime / 60 / 60 / 24 / 7);
if (diff == 1) {
return [NSString stringWithFormat:@"1 week", diff];
}
return [NSString stringWithFormat:@"%d wks", diff];
}
}
@end