forked from mrnuku/cam
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCoreAssetImageView.m
More file actions
163 lines (124 loc) · 4.11 KB
/
CoreAssetImageView.m
File metadata and controls
163 lines (124 loc) · 4.11 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
//
// MCKImageView.m
// CoreAssetManager
//
// Created by mrnuku on 2016. 01. 17..
// Copyright © 2016. mrnuku. All rights reserved.
//
#import "CoreAssetImageView.h"
#if !TARGET_INTERFACE_BUILDER
#import "CoreAssetManager.h"
#import "CoreAssetItemImage.h"
#endif
#define ANIMATION_TRIGGER_TIME 0.01
#define ANIMATION_DURATION 0.3333
@implementation CoreAssetImageView {
id cmBlock;
BOOL signedToCommunicationManagerEvents;
}
#pragma mark - initializer methods
#if TARGET_INTERFACE_BUILDER
- (void)prepareForInterfaceBuilder {
[self commonInit];
}
#endif
- (instancetype)init {
self = [super init];
if (self) {
[self commonInit];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
[self commonInit];
}
return self;
}
- (instancetype)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
[self commonInit];
}
return self;
}
- (instancetype)initWithImage:(UIImage *)image {
self = [super initWithImage:image];
if (self) {
[self commonInit];
}
return self;
}
- (instancetype)initWithImage:(UIImage *)image highlightedImage:(UIImage *)highlightedImage {
self = [super initWithImage:image highlightedImage:highlightedImage];
if (self) {
[self commonInit];
}
return self;
}
- (void)dealloc {
if (signedToCommunicationManagerEvents) {
signedToCommunicationManagerEvents = NO;
}
}
- (void)commonInit {
self.circleShaped = _circleShaped;
}
+ (Class)parentCamItemClass {
return CoreAssetItemImage.class;
}
#pragma mark - logic
- (void)layoutSubviews {
[super layoutSubviews];
self.circleShaped = _circleShaped;
}
- (void)setCircleShaped:(BOOL)circleShaped {
self.layer.cornerRadius = circleShaped ? self.bounds.size.width * .5 : 0;
self.layer.masksToBounds = YES;
_circleShaped = circleShaped;
}
- (void)setAssetName:(NSString *)assetName {
if (![assetName isEqual:_assetName] && (!_assetName || [_assetName isKindOfClass:NSString.class])) {
self.image = _emptyImage;
#if !TARGET_INTERFACE_BUILDER
CFTimeInterval startTime = CACurrentMediaTime();
NSUInteger assetNameLength = ((NSString *)_assetName).length;
cmBlock = assetName.length ? [self.class.parentCamItemClass fetchAssetWithName:assetName withCompletionHandler:^(UIImage * _Nonnull assetData) {
UIImage *oldImage = self.image;
self.image = assetData;
CFTimeInterval downloadTime = CACurrentMediaTime() - startTime;
if (!assetNameLength || downloadTime >= ANIMATION_TRIGGER_TIME) {
[CATransaction begin];
if (oldImage) {
CABasicAnimation *crossFade = [CABasicAnimation animationWithKeyPath:@"contents"];
crossFade.duration = ANIMATION_DURATION;
crossFade.fromValue = (__bridge id _Nullable)(oldImage.CGImage);
crossFade.toValue = (__bridge id _Nullable)(assetData.CGImage);
[self.layer addAnimation:crossFade forKey:@"animateContents"];
}
else {
CATransition *transition = [CATransition animation];
transition.duration = ANIMATION_DURATION;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionFade;
[self.layer addAnimation:transition forKey:nil];
}
[CATransaction commit];
}
}] : nil;
#endif
_assetName = assetName;
}
}
- (void)resetToEmptyImage {
self.image = _emptyImage;
cmBlock = nil;
_assetName = nil;
}
- (void)reloadAssetNameFromParent {
if ([_parentRecord respondsToSelector:@selector(assetNameForUserData:)]) {
self.assetName = [_parentRecord assetNameForUserData:_userData];
}
}
@end