MWGridCell.m
8.86 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
//
// MWGridCell.m
// MWPhotoBrowser
//
// Created by Michael Waterfall on 08/10/2013.
//
//
#import <DACircularProgress/DACircularProgressView.h>
#import "MWGridCell.h"
#import "MWCommon.h"
#import "MWPhotoBrowserPrivate.h"
#import "UIImage+MWPhotoBrowser.h"
#define VIDEO_INDICATOR_PADDING 10
@interface MWGridCell () {
UIImageView *_imageView;
UIImageView *_videoIndicator;
UIImageView *_loadingError;
DACircularProgressView *_loadingIndicator;
UIButton *_selectedButton;
}
@end
@implementation MWGridCell
- (id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
// Grey background
self.backgroundColor = [UIColor colorWithWhite:0.12 alpha:1];
// Image
_imageView = [UIImageView new];
_imageView.frame = self.bounds;
_imageView.contentMode = UIViewContentModeScaleAspectFill;
_imageView.clipsToBounds = YES;
_imageView.autoresizesSubviews = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[self addSubview:_imageView];
// Video Image
_videoIndicator = [UIImageView new];
_videoIndicator.hidden = NO;
UIImage *videoIndicatorImage = [UIImage imageForResourcePath:@"MWPhotoBrowser.bundle/VideoOverlay" ofType:@"png" inBundle:[NSBundle bundleForClass:[self class]]];
_videoIndicator.frame = CGRectMake(self.bounds.size.width - videoIndicatorImage.size.width - VIDEO_INDICATOR_PADDING, self.bounds.size.height - videoIndicatorImage.size.height - VIDEO_INDICATOR_PADDING, videoIndicatorImage.size.width, videoIndicatorImage.size.height);
_videoIndicator.image = videoIndicatorImage;
_videoIndicator.autoresizesSubviews = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin;
[self addSubview:_videoIndicator];
// Selection button
_selectedButton = [UIButton buttonWithType:UIButtonTypeCustom];
_selectedButton.contentMode = UIViewContentModeTopRight;
_selectedButton.adjustsImageWhenHighlighted = NO;
[_selectedButton setImage:[UIImage imageForResourcePath:@"MWPhotoBrowser.bundle/ImageSelectedSmallOff" ofType:@"png" inBundle:[NSBundle bundleForClass:[self class]]] forState:UIControlStateNormal];
[_selectedButton setImage:[UIImage imageForResourcePath:@"MWPhotoBrowser.bundle/ImageSelectedSmallOn" ofType:@"png" inBundle:[NSBundle bundleForClass:[self class]]] forState:UIControlStateSelected];
[_selectedButton addTarget:self action:@selector(selectionButtonPressed) forControlEvents:UIControlEventTouchDown];
_selectedButton.hidden = YES;
_selectedButton.frame = CGRectMake(0, 0, 44, 44);
[self addSubview:_selectedButton];
// Loading indicator
_loadingIndicator = [[DACircularProgressView alloc] initWithFrame:CGRectMake(0, 0, 40.0f, 40.0f)];
_loadingIndicator.userInteractionEnabled = NO;
_loadingIndicator.thicknessRatio = 0.1;
_loadingIndicator.roundedCorners = NO;
[self addSubview:_loadingIndicator];
// Listen for photo loading notifications
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(setProgressFromNotification:)
name:MWPHOTO_PROGRESS_NOTIFICATION
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleMWPhotoLoadingDidEndNotification:)
name:MWPHOTO_LOADING_DID_END_NOTIFICATION
object:nil];
}
return self;
}
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)setGridController:(MWGridViewController *)gridController {
_gridController = gridController;
// Set custom selection image if required
if (_gridController.browser.customImageSelectedSmallIconName) {
[_selectedButton setImage:[UIImage imageNamed:_gridController.browser.customImageSelectedSmallIconName] forState:UIControlStateSelected];
}
}
#pragma mark - View
- (void)layoutSubviews {
[super layoutSubviews];
_imageView.frame = self.bounds;
_loadingIndicator.frame = CGRectMake(floorf((self.bounds.size.width - _loadingIndicator.frame.size.width) / 2.),
floorf((self.bounds.size.height - _loadingIndicator.frame.size.height) / 2),
_loadingIndicator.frame.size.width,
_loadingIndicator.frame.size.height);
_selectedButton.frame = CGRectMake(self.bounds.size.width - _selectedButton.frame.size.width - 0,
0, _selectedButton.frame.size.width, _selectedButton.frame.size.height);
}
#pragma mark - Cell
- (void)prepareForReuse {
_photo = nil;
_gridController = nil;
_imageView.image = nil;
_loadingIndicator.progress = 0;
_selectedButton.hidden = YES;
[self hideImageFailure];
[super prepareForReuse];
}
#pragma mark - Image Handling
- (void)setPhoto:(id <MWPhoto>)photo {
_photo = photo;
if ([photo respondsToSelector:@selector(isVideo)]) {
_videoIndicator.hidden = !photo.isVideo;
} else {
_videoIndicator.hidden = YES;
}
if (_photo) {
if (![_photo underlyingImage]) {
[self showLoadingIndicator];
} else {
[self hideLoadingIndicator];
}
} else {
[self showImageFailure];
}
}
- (void)displayImage {
_imageView.image = [_photo underlyingImage];
_selectedButton.hidden = !_selectionMode;
[self hideImageFailure];
}
#pragma mark - Selection
- (void)setSelectionMode:(BOOL)selectionMode {
_selectionMode = selectionMode;
}
- (void)setIsSelected:(BOOL)isSelected {
_isSelected = isSelected;
_selectedButton.selected = isSelected;
}
- (void)selectionButtonPressed {
_selectedButton.selected = !_selectedButton.selected;
[_gridController.browser setPhotoSelected:_selectedButton.selected atIndex:_index];
}
#pragma mark - Touches
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
_imageView.alpha = 0.6;
[super touchesBegan:touches withEvent:event];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
_imageView.alpha = 1;
[super touchesEnded:touches withEvent:event];
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
_imageView.alpha = 1;
[super touchesCancelled:touches withEvent:event];
}
#pragma mark Indicators
- (void)hideLoadingIndicator {
_loadingIndicator.hidden = YES;
}
- (void)showLoadingIndicator {
_loadingIndicator.progress = 0;
_loadingIndicator.hidden = NO;
[self hideImageFailure];
}
- (void)showImageFailure {
// Only show if image is not empty
if (![_photo respondsToSelector:@selector(emptyImage)] || !_photo.emptyImage) {
if (!_loadingError) {
_loadingError = [UIImageView new];
_loadingError.image = [UIImage imageForResourcePath:@"MWPhotoBrowser.bundle/ImageError" ofType:@"png" inBundle:[NSBundle bundleForClass:[self class]]];
_loadingError.userInteractionEnabled = NO;
[_loadingError sizeToFit];
[self addSubview:_loadingError];
}
_loadingError.frame = CGRectMake(floorf((self.bounds.size.width - _loadingError.frame.size.width) / 2.),
floorf((self.bounds.size.height - _loadingError.frame.size.height) / 2),
_loadingError.frame.size.width,
_loadingError.frame.size.height);
}
[self hideLoadingIndicator];
_imageView.image = nil;
}
- (void)hideImageFailure {
if (_loadingError) {
[_loadingError removeFromSuperview];
_loadingError = nil;
}
}
#pragma mark - Notifications
- (void)setProgressFromNotification:(NSNotification *)notification {
dispatch_async(dispatch_get_main_queue(), ^{
NSDictionary *dict = [notification object];
id <MWPhoto> photoWithProgress = [dict objectForKey:@"photo"];
if (photoWithProgress == _photo) {
// NSLog(@"%f", [[dict valueForKey:@"progress"] floatValue]);
float progress = [[dict valueForKey:@"progress"] floatValue];
_loadingIndicator.progress = MAX(MIN(1, progress), 0);
}
});
}
- (void)handleMWPhotoLoadingDidEndNotification:(NSNotification *)notification {
id <MWPhoto> photo = [notification object];
if (photo == _photo) {
if ([photo underlyingImage]) {
// Successful load
[self displayImage];
} else {
// Failed to load
[self showImageFailure];
}
[self hideLoadingIndicator];
}
}
@end