forked from rnystrom/RNFrostedSidebar
-
Notifications
You must be signed in to change notification settings - Fork 4
/
RNFrostedSidebar.m
695 lines (573 loc) · 26.9 KB
/
RNFrostedSidebar.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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
//
// RNFrostedMenu.m
// RNFrostedMenu
//
// Created by Ryan Nystrom on 8/13/13.
// Copyright (c) 2013 Ryan Nystrom. All rights reserved.
//
#define __IPHONE_OS_VERSION_SOFT_MAX_REQUIRED __IPHONE_7_0
#import "RNFrostedSidebar.h"
#import <QuartzCore/QuartzCore.h>
NSString *const RNFrostedLabelFont = @"RNFrostedLabelFont";
NSString *const RNFrostedLabelColor = @"RNFrostedLabelColor";
#pragma mark - Categories
@implementation UIView (rn_Screenshot)
- (UIImage *)rn_screenshot {
UIGraphicsBeginImageContext(self.bounds.size);
if([self respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)]){
[self drawViewHierarchyInRect:self.bounds afterScreenUpdates:NO];
}
else{
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
}
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData *imageData = UIImageJPEGRepresentation(image, 0.75);
image = [UIImage imageWithData:imageData];
return image;
}
@end
#import <Accelerate/Accelerate.h>
@implementation UIImage (rn_Blur)
- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage
{
// Check pre-conditions.
if (self.size.width < 1 || self.size.height < 1) {
NSLog (@"*** error: invalid size: (%.2f x %.2f). Both dimensions must be >= 1: %@", self.size.width, self.size.height, self);
return nil;
}
if (!self.CGImage) {
NSLog (@"*** error: image must be backed by a CGImage: %@", self);
return nil;
}
if (maskImage && !maskImage.CGImage) {
NSLog (@"*** error: maskImage must be backed by a CGImage: %@", maskImage);
return nil;
}
CGRect imageRect = { CGPointZero, self.size };
UIImage *effectImage = self;
BOOL hasBlur = blurRadius > __FLT_EPSILON__;
BOOL hasSaturationChange = fabs(saturationDeltaFactor - 1.) > __FLT_EPSILON__;
if (hasBlur || hasSaturationChange) {
UIGraphicsBeginImageContextWithOptions(self.size, NO, [[UIScreen mainScreen] scale]);
CGContextRef effectInContext = UIGraphicsGetCurrentContext();
CGContextScaleCTM(effectInContext, 1.0, -1.0);
CGContextTranslateCTM(effectInContext, 0, -self.size.height);
CGContextDrawImage(effectInContext, imageRect, self.CGImage);
vImage_Buffer effectInBuffer;
effectInBuffer.data = CGBitmapContextGetData(effectInContext);
effectInBuffer.width = CGBitmapContextGetWidth(effectInContext);
effectInBuffer.height = CGBitmapContextGetHeight(effectInContext);
effectInBuffer.rowBytes = CGBitmapContextGetBytesPerRow(effectInContext);
UIGraphicsBeginImageContextWithOptions(self.size, NO, [[UIScreen mainScreen] scale]);
CGContextRef effectOutContext = UIGraphicsGetCurrentContext();
vImage_Buffer effectOutBuffer;
effectOutBuffer.data = CGBitmapContextGetData(effectOutContext);
effectOutBuffer.width = CGBitmapContextGetWidth(effectOutContext);
effectOutBuffer.height = CGBitmapContextGetHeight(effectOutContext);
effectOutBuffer.rowBytes = CGBitmapContextGetBytesPerRow(effectOutContext);
if (hasBlur) {
// A description of how to compute the box kernel width from the Gaussian
// radius (aka standard deviation) appears in the SVG spec:
// http://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement
//
// For larger values of 's' (s >= 2.0), an approximation can be used: Three
// successive box-blurs build a piece-wise quadratic convolution kernel, which
// approximates the Gaussian kernel to within roughly 3%.
//
// let d = floor(s * 3*sqrt(2*pi)/4 + 0.5)
//
// ... if d is odd, use three box-blurs of size 'd', centered on the output pixel.
//
CGFloat inputRadius = blurRadius * [[UIScreen mainScreen] scale];
NSUInteger radius = floor(inputRadius * 3. * sqrt(2 * M_PI) / 4 + 0.5);
if (radius % 2 != 1) {
radius += 1; // force radius to be odd so that the three box-blur methodology works.
}
vImageBoxConvolve_ARGB8888(&effectInBuffer, &effectOutBuffer, NULL, 0, 0, radius, radius, 0, kvImageEdgeExtend);
vImageBoxConvolve_ARGB8888(&effectOutBuffer, &effectInBuffer, NULL, 0, 0, radius, radius, 0, kvImageEdgeExtend);
vImageBoxConvolve_ARGB8888(&effectInBuffer, &effectOutBuffer, NULL, 0, 0, radius, radius, 0, kvImageEdgeExtend);
}
BOOL effectImageBuffersAreSwapped = NO;
if (hasSaturationChange) {
CGFloat s = saturationDeltaFactor;
CGFloat floatingPointSaturationMatrix[] = {
0.0722 + 0.9278 * s, 0.0722 - 0.0722 * s, 0.0722 - 0.0722 * s, 0,
0.7152 - 0.7152 * s, 0.7152 + 0.2848 * s, 0.7152 - 0.7152 * s, 0,
0.2126 - 0.2126 * s, 0.2126 - 0.2126 * s, 0.2126 + 0.7873 * s, 0,
0, 0, 0, 1,
};
const int32_t divisor = 256;
NSUInteger matrixSize = sizeof(floatingPointSaturationMatrix)/sizeof(floatingPointSaturationMatrix[0]);
int16_t saturationMatrix[matrixSize];
for (NSUInteger i = 0; i < matrixSize; ++i) {
saturationMatrix[i] = (int16_t)roundf(floatingPointSaturationMatrix[i] * divisor);
}
if (hasBlur) {
vImageMatrixMultiply_ARGB8888(&effectOutBuffer, &effectInBuffer, saturationMatrix, divisor, NULL, NULL, kvImageNoFlags);
effectImageBuffersAreSwapped = YES;
}
else {
vImageMatrixMultiply_ARGB8888(&effectInBuffer, &effectOutBuffer, saturationMatrix, divisor, NULL, NULL, kvImageNoFlags);
}
}
if (!effectImageBuffersAreSwapped)
effectImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
if (effectImageBuffersAreSwapped)
effectImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
// Set up output context.
UIGraphicsBeginImageContextWithOptions(self.size, NO, [[UIScreen mainScreen] scale]);
CGContextRef outputContext = UIGraphicsGetCurrentContext();
CGContextScaleCTM(outputContext, 1.0, -1.0);
CGContextTranslateCTM(outputContext, 0, -self.size.height);
// Draw base image.
CGContextDrawImage(outputContext, imageRect, self.CGImage);
// Draw effect image.
if (hasBlur) {
CGContextSaveGState(outputContext);
if (maskImage) {
CGContextClipToMask(outputContext, imageRect, maskImage.CGImage);
}
CGContextDrawImage(outputContext, imageRect, effectImage.CGImage);
CGContextRestoreGState(outputContext);
}
// Add in color tint.
if (tintColor) {
CGContextSaveGState(outputContext);
CGContextSetFillColorWithColor(outputContext, tintColor.CGColor);
CGContextFillRect(outputContext, imageRect);
CGContextRestoreGState(outputContext);
}
// Output image is ready.
UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return outputImage;
}
@end
#pragma mark - Private Classes
@interface RNCalloutItemView : UIView
@property (nonatomic, strong) UIImageView *imageView;
@property (nonatomic, assign) NSInteger itemIndex;
@property (nonatomic, strong) UIColor *originalBackgroundColor;
@end
@implementation RNCalloutItemView
- (instancetype)init {
if (self = [super init]) {
_imageView = [[UIImageView alloc] init];
_imageView.backgroundColor = [UIColor clearColor];
_imageView.contentMode = UIViewContentModeScaleAspectFit;
[self addSubview:_imageView];
}
return self;
}
- (void)layoutSubviews {
[super layoutSubviews];
CGFloat inset = self.bounds.size.height/2;
self.imageView.frame = CGRectMake(0, 0, inset, inset);
self.imageView.center = CGPointMake(inset, inset);
}
- (void)setOriginalBackgroundColor:(UIColor *)originalBackgroundColor {
_originalBackgroundColor = originalBackgroundColor;
self.backgroundColor = originalBackgroundColor;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesBegan:touches withEvent:event];
float r, g, b, a;
float darkenFactor = 0.3f;
UIColor *darkerColor;
if ([self.originalBackgroundColor getRed:&r green:&g blue:&b alpha:&a]) {
darkerColor = [UIColor colorWithRed:MAX(r - darkenFactor, 0.0) green:MAX(g - darkenFactor, 0.0) blue:MAX(b - darkenFactor, 0.0) alpha:a];
}
else if ([self.originalBackgroundColor getWhite:&r alpha:&a]) {
darkerColor = [UIColor colorWithWhite:MAX(r - darkenFactor, 0.0) alpha:a];
}
else {
@throw @"Item color should be RGBA or White/Alpha in order to darken the button color.";
}
self.backgroundColor = darkerColor;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesEnded:touches withEvent:event];
self.backgroundColor = self.originalBackgroundColor;
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesCancelled:touches withEvent:event];
self.backgroundColor = self.originalBackgroundColor;
}
@end
#pragma mark - Public Classes
@interface RNFrostedSidebar ()
@property (nonatomic, strong) UIScrollView *contentView;
@property (nonatomic, strong) UIImageView *blurView;
@property (nonatomic, strong) UITapGestureRecognizer *tapGesture;
@property (nonatomic, strong) NSArray *images;
@property (nonatomic, strong) NSMutableArray *labels;
@property (nonatomic, strong) NSArray *borderColors;
@property (nonatomic, strong) NSMutableArray *itemViews;
@property (nonatomic, strong) NSMutableIndexSet *selectedIndices;
@end
static RNFrostedSidebar *rn_frostedMenu;
@implementation RNFrostedSidebar
+ (instancetype)visibleSidebar {
return rn_frostedMenu;
}
- (instancetype)initWithImages:(NSArray *)images selectedIndices:(NSIndexSet *)selectedIndices borderColors:(NSArray *)colors labelStrings:(NSArray*)labels
{
if (self = [super init]) {
_isSingleSelect = NO;
_contentView = [[UIScrollView alloc] init];
_contentView.alwaysBounceHorizontal = NO;
_contentView.alwaysBounceVertical = YES;
_contentView.bounces = YES;
_contentView.clipsToBounds = NO;
_contentView.showsHorizontalScrollIndicator = NO;
_contentView.showsVerticalScrollIndicator = NO;
_width = 150;
_animationDuration = 0.25f;
_itemSize = CGSizeMake(_width/2, _width/2);
_itemViews = [NSMutableArray array];
_tintColor = [UIColor colorWithWhite:0.2 alpha:0.73];
_labels = [@[] mutableCopy];
_borderWidth = 2;
_itemBackgroundColor = [UIColor colorWithRed:1 green:1 blue:1 alpha:0.25];
if (colors) {
NSAssert([colors count] == [images count], @"Border color count must match images count. If you want a blank border, use [UIColor clearColor].");
}
if (labels) {
NSAssert([labels count] == [images count], @"Label count must match images count. If you don't want a labeled button, use @\"\"");
}
_selectedIndices = [selectedIndices mutableCopy] ?: [NSMutableIndexSet indexSet];
_borderColors = colors;
_images = images;
[_images enumerateObjectsUsingBlock:^(UIImage *image, NSUInteger idx, BOOL *stop) {
RNCalloutItemView *view = [[RNCalloutItemView alloc] init];
view.itemIndex = idx;
view.clipsToBounds = YES;
view.imageView.image = image;
[_contentView addSubview:view];
[_itemViews addObject:view];
if (labels) {
UILabel* label = [[UILabel alloc] init];
label.textColor = [UIColor whiteColor];
label.font = [UIFont systemFontOfSize:14];
label.text = labels[idx];
label.backgroundColor = [UIColor clearColor];
label.textAlignment = NSTextAlignmentCenter;
[_labels addObject:label];
[_contentView addSubview:label];
}
if (_borderColors && _selectedIndices && [_selectedIndices containsIndex:idx]) {
UIColor *color = _borderColors[idx];
view.layer.borderColor = color.CGColor;
}
else {
view.layer.borderColor = [UIColor clearColor].CGColor;
}
}];
}
return self;
}
- (instancetype)initWithImages:(NSArray *)images selectedIndices:(NSIndexSet *)selectedIndices borderColors:(NSArray *)colors {
return [self initWithImages:images selectedIndices:selectedIndices borderColors:colors labelStrings:nil];
}
- (instancetype)initWithImages:(NSArray *)images selectedIndices:(NSIndexSet *)selectedIndices {
return [self initWithImages:images selectedIndices:selectedIndices borderColors:nil];
}
- (instancetype)initWithImages:(NSArray *)images {
return [self initWithImages:images selectedIndices:nil borderColors:nil];
}
- (instancetype)init {
NSAssert(NO, @"Unable to create with plain init.");
return nil;
}
- (void)setLabelOptions:(NSDictionary*)options
{
[self.labels enumerateObjectsUsingBlock:^(UILabel* label, NSUInteger idx, BOOL *stop) {
[label setFont:options[RNFrostedLabelFont]];
[label setTextColor:options[RNFrostedLabelColor]];
}];
}
- (void)loadView {
[super loadView];
self.view.backgroundColor = [UIColor clearColor];
[self.view addSubview:self.contentView];
self.tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[self.view addGestureRecognizer:self.tapGesture];
}
- (BOOL)shouldAutorotate {
return YES;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
if ([self isViewLoaded] && self.view.window != nil) {
self.view.alpha = 0;
UIImage *blurImage = [self.parentViewController.view rn_screenshot];
blurImage = [blurImage applyBlurWithRadius:5 tintColor:self.tintColor saturationDeltaFactor:1.8 maskImage:nil];
self.blurView.image = blurImage;
self.view.alpha = 1;
[self layoutSubviews];
}
}
#pragma mark - Show
- (void)animateSpringWithView:(RNCalloutItemView *)view idx:(NSUInteger)idx initDelay:(CGFloat)initDelay {
#if __IPHONE_OS_VERSION_SOFT_MAX_REQUIRED
[UIView animateWithDuration:0.5
delay:(initDelay + idx*0.1f)
usingSpringWithDamping:10
initialSpringVelocity:50
options:UIViewAnimationOptionBeginFromCurrentState
animations:^{
view.layer.transform = CATransform3DIdentity;
view.alpha = 1;
}
completion:nil];
#endif
}
- (void)animateFauxBounceWithView:(RNCalloutItemView *)view idx:(NSUInteger)idx initDelay:(CGFloat)initDelay {
[UIView animateWithDuration:0.2
delay:(initDelay + idx*0.1f)
options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationCurveEaseInOut
animations:^{
view.layer.transform = CATransform3DMakeScale(1.1, 1.1, 1);
view.alpha = 1;
}
completion:^(BOOL finished) {
[UIView animateWithDuration:0.1 animations:^{
view.layer.transform = CATransform3DIdentity;
}];
}];
}
- (void)showInViewController:(UIViewController *)controller animated:(BOOL)animated {
if (rn_frostedMenu != nil) {
[rn_frostedMenu dismissAnimated:NO];
}
if ([self.delegate respondsToSelector:@selector(sidebar:willShowOnScreenAnimated:)]) {
[self.delegate sidebar:self willShowOnScreenAnimated:animated];
}
rn_frostedMenu = self;
UIImage *blurImage = [controller.view rn_screenshot];
blurImage = [blurImage applyBlurWithRadius:5 tintColor:self.tintColor saturationDeltaFactor:1.8 maskImage:nil];
[self rn_addToParentViewController:controller callingAppearanceMethods:YES];
self.view.frame = controller.view.bounds;
CGFloat parentWidth = self.view.bounds.size.width;
CGRect contentFrame = self.view.bounds;
contentFrame.origin.x = _showFromRight ? parentWidth : -_width;
contentFrame.size.width = _width;
self.contentView.frame = contentFrame;
[self layoutItems];
CGRect blurFrame = CGRectMake(_showFromRight ? self.view.bounds.size.width : 0, 0, 0, self.view.bounds.size.height);
self.blurView = [[UIImageView alloc] initWithImage:blurImage];
self.blurView.frame = blurFrame;
self.blurView.contentMode = _showFromRight ? UIViewContentModeTopRight : UIViewContentModeTopLeft;
self.blurView.clipsToBounds = YES;
[self.view insertSubview:self.blurView belowSubview:self.contentView];
contentFrame.origin.x = _showFromRight ? parentWidth - _width : 0;
blurFrame.origin.x = contentFrame.origin.x;
blurFrame.size.width = _width;
void (^animations)() = ^{
self.contentView.frame = contentFrame;
self.blurView.frame = blurFrame;
};
void (^completion)(BOOL) = ^(BOOL finished) {
if (finished && [self.delegate respondsToSelector:@selector(sidebar:didShowOnScreenAnimated:)]) {
[self.delegate sidebar:self didShowOnScreenAnimated:animated];
}
};
if (animated) {
[UIView animateWithDuration:self.animationDuration
delay:0
options:kNilOptions
animations:animations
completion:completion];
}
else{
animations();
completion(YES);
}
CGFloat initDelay = 0.1f;
SEL sdkSpringSelector = NSSelectorFromString(@"animateWithDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:");
BOOL sdkHasSpringAnimation = [UIView respondsToSelector:sdkSpringSelector];
[self.itemViews enumerateObjectsUsingBlock:^(RNCalloutItemView *view, NSUInteger idx, BOOL *stop) {
view.layer.transform = CATransform3DMakeScale(0.3, 0.3, 1);
view.alpha = 0;
view.originalBackgroundColor = self.itemBackgroundColor;
view.layer.borderWidth = self.borderWidth;
if (sdkHasSpringAnimation) {
[self animateSpringWithView:view idx:idx initDelay:initDelay];
}
else {
[self animateFauxBounceWithView:view idx:idx initDelay:initDelay];
}
}];
}
- (void)showAnimated:(BOOL)animated {
UIViewController *controller = [UIApplication sharedApplication].keyWindow.rootViewController;
while (controller.presentedViewController != nil) {
controller = controller.presentedViewController;
}
[self showInViewController:controller animated:animated];
}
- (void)show {
[self showAnimated:YES];
}
#pragma mark - Dismiss
- (void)dismiss {
[self dismissAnimated:YES];
}
- (void)dismissAnimated:(BOOL)animated {
void (^completion)(BOOL) = ^(BOOL finished){
[self rn_removeFromParentViewControllerCallingAppearanceMethods:YES];
if ([self.delegate respondsToSelector:@selector(sidebar:didDismissFromScreenAnimated:)]) {
[self.delegate sidebar:self didDismissFromScreenAnimated:YES];
}
};
if ([self.delegate respondsToSelector:@selector(sidebar:willDismissFromScreenAnimated:)]) {
[self.delegate sidebar:self willDismissFromScreenAnimated:YES];
}
if (animated) {
CGFloat parentWidth = self.view.bounds.size.width;
CGRect contentFrame = self.contentView.frame;
contentFrame.origin.x = self.showFromRight ? parentWidth : -_width;
CGRect blurFrame = self.blurView.frame;
blurFrame.origin.x = self.showFromRight ? parentWidth : 0;
blurFrame.size.width = 0;
[UIView animateWithDuration:self.animationDuration
delay:0
options:UIViewAnimationOptionBeginFromCurrentState
animations:^{
self.contentView.frame = contentFrame;
self.blurView.frame = blurFrame;
}
completion:completion];
}
else {
completion(YES);
}
}
#pragma mark - Gestures
- (void)handleTap:(UITapGestureRecognizer *)recognizer {
CGPoint location = [recognizer locationInView:self.view];
if (! CGRectContainsPoint(self.contentView.frame, location)) {
[self dismissAnimated:YES];
}
else {
NSInteger tapIndex = [self indexOfTap:[recognizer locationInView:self.contentView]];
if (tapIndex != NSNotFound) {
[self didTapItemAtIndex:tapIndex];
}
}
}
#pragma mark - Private
- (void)didTapItemAtIndex:(NSUInteger)index {
BOOL didEnable = ! [self.selectedIndices containsIndex:index];
if (self.borderColors) {
UIColor *stroke = self.borderColors[index];
UIView *view = self.itemViews[index];
if (didEnable) {
if (_isSingleSelect){
[self.selectedIndices removeAllIndexes];
[self.itemViews enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
UIView *aView = (UIView *)obj;
[[aView layer] setBorderColor:[[UIColor clearColor] CGColor]];
}];
}
view.layer.borderColor = stroke.CGColor;
CABasicAnimation *borderAnimation = [CABasicAnimation animationWithKeyPath:@"borderColor"];
borderAnimation.fromValue = (id)[UIColor clearColor].CGColor;
borderAnimation.toValue = (id)stroke.CGColor;
borderAnimation.duration = 0.5f;
[view.layer addAnimation:borderAnimation forKey:nil];
[self.selectedIndices addIndex:index];
}
else {
if (!_isSingleSelect){
view.layer.borderColor = [UIColor clearColor].CGColor;
[self.selectedIndices removeIndex:index];
}
}
CGRect pathFrame = CGRectMake(-CGRectGetMidX(view.bounds), -CGRectGetMidY(view.bounds), view.bounds.size.width, view.bounds.size.height);
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:pathFrame cornerRadius:view.layer.cornerRadius];
// accounts for left/right offset and contentOffset of scroll view
CGPoint shapePosition = [self.view convertPoint:view.center fromView:self.contentView];
CAShapeLayer *circleShape = [CAShapeLayer layer];
circleShape.path = path.CGPath;
circleShape.position = shapePosition;
circleShape.fillColor = [UIColor clearColor].CGColor;
circleShape.opacity = 0;
circleShape.strokeColor = stroke.CGColor;
circleShape.lineWidth = self.borderWidth;
[self.view.layer addSublayer:circleShape];
CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(2.5, 2.5, 1)];
CABasicAnimation *alphaAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];
alphaAnimation.fromValue = @1;
alphaAnimation.toValue = @0;
CAAnimationGroup *animation = [CAAnimationGroup animation];
animation.animations = @[scaleAnimation, alphaAnimation];
animation.duration = 0.5f;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
[circleShape addAnimation:animation forKey:nil];
}
if ([self.delegate respondsToSelector:@selector(sidebar:didTapItemAtIndex:)]) {
[self.delegate sidebar:self didTapItemAtIndex:index];
}
if ([self.delegate respondsToSelector:@selector(sidebar:didEnable:itemAtIndex:)]) {
[self.delegate sidebar:self didEnable:didEnable itemAtIndex:index];
}
}
- (void)layoutSubviews {
CGFloat x = self.showFromRight ? self.parentViewController.view.bounds.size.width - _width : 0;
self.contentView.frame = CGRectMake(x, 0, _width, self.parentViewController.view.bounds.size.height);
self.blurView.frame = self.contentView.frame;
[self layoutItems];
}
- (void)layoutItems {
CGFloat leftPadding = (self.width - self.itemSize.width)/2;
CGFloat topPadding = leftPadding;
[self.itemViews enumerateObjectsUsingBlock:^(RNCalloutItemView *view, NSUInteger idx, BOOL *stop) {
CGRect frame = CGRectMake(leftPadding, topPadding*idx + self.itemSize.height*idx + topPadding, self.itemSize.width, self.itemSize.height);
view.frame = frame;
view.layer.cornerRadius = frame.size.width/2.f;
}];
[self.labels enumerateObjectsUsingBlock:^(UILabel *label, NSUInteger idx, BOOL *stop) {
CGRect frame = CGRectMake(0, topPadding*idx + self.itemSize.height*(idx+1) + topPadding, self.width, 24);
label.frame = frame;
}];
NSInteger items = [self.itemViews count];
self.contentView.contentSize = CGSizeMake(0, items * (self.itemSize.height + leftPadding) + leftPadding);
}
- (NSInteger)indexOfTap:(CGPoint)location {
__block NSUInteger index = NSNotFound;
[self.itemViews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop) {
if (CGRectContainsPoint(view.frame, location)) {
index = idx;
*stop = YES;
}
}];
return index;
}
- (void)rn_addToParentViewController:(UIViewController *)parentViewController callingAppearanceMethods:(BOOL)callAppearanceMethods {
if (self.parentViewController != nil) {
[self rn_removeFromParentViewControllerCallingAppearanceMethods:callAppearanceMethods];
}
if (callAppearanceMethods) [self beginAppearanceTransition:YES animated:NO];
[parentViewController addChildViewController:self];
[parentViewController.view addSubview:self.view];
[self didMoveToParentViewController:self];
if (callAppearanceMethods) [self endAppearanceTransition];
}
- (void)rn_removeFromParentViewControllerCallingAppearanceMethods:(BOOL)callAppearanceMethods {
if (callAppearanceMethods) [self beginAppearanceTransition:NO animated:NO];
[self willMoveToParentViewController:nil];
[self.view removeFromSuperview];
[self removeFromParentViewController];
if (callAppearanceMethods) [self endAppearanceTransition];
}
@end