FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AsyncDisplayKit/AsyncDisplayKit/ASCollectionNode.mm at master · taontech/AsyncDisplayKit · GitHub
taontech
/
AsyncDisplayKit
Public
forked from
facebookarchive/AsyncDisplayKit
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit
/
ASCollectionNode.mm
Copy path
More file actions
More file actions
Latest commit
History
History
History
247 lines (205 loc) · 6.89 KB
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit
/
ASCollectionNode.mm
Copy path
File metadata and controls
247 lines (205 loc) · 6.89 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
//
ASCollectionNode.m
//
AsyncDisplayKit
//
//
Created by Scott Goodson on 9/5/15.
//
Copyright (c) 2015 Facebook. All rights reserved.
//
#
import
"
ASCollectionNode.h
"
#
import
"
ASCollectionInternal.h
"
#
import
"
ASCollectionViewLayoutFacilitatorProtocol.h
"
#
import
"
ASDisplayNode+Subclasses.h
"
#
import
"
ASRangeControllerUpdateRangeProtocol+Beta.h
"
#
include
<
vector
>
@interface
_ASCollectionPendingState
:
NSObject
@property
(
weak
,
nonatomic
)
id
<ASCollectionDelegate> delegate;
@property
(
weak
,
nonatomic
)
id
<ASCollectionDataSource> dataSource;
@end
@implementation
_ASCollectionPendingState
@end
#
if
0
// This is not used yet, but will provide a way to avoid creating the view to set range values.
@implementation _ASCollectionPendingState
{
std::vector<ASRangeTuningParameters> _tuningParameters;
}
- (instancetype)init
{
if (!(self = [super init])) {
return nil;
}
_tuningParameters = std::vector<ASRangeTuningParameters>(ASLayoutRangeTypeCount);
return self;
}
- (ASRangeTuningParameters)tuningParametersForRangeType:(ASLayoutRangeType)rangeType
{
ASDisplayNodeAssert(rangeType < _tuningParameters.size(), @"Requesting a range that is OOB for the configured tuning parameters");
return _tuningParameters[rangeType];
}
- (void)setTuningParameters:(ASRangeTuningParameters)tuningParameters forRangeType:(ASLayoutRangeType)rangeType
{
ASDisplayNodeAssert(rangeType < _tuningParameters.size(), @"Requesting a range that is OOB for the configured tuning parameters");
ASDisplayNodeAssert(rangeType != ASLayoutRangeTypeVisible, @"Must not set Visible range tuning parameters (always 0, 0)");
_tuningParameters[rangeType] = tuningParameters;
}
@end
#
endif
@interface
ASCollectionNode
()
@property
(
nonatomic
) _ASCollectionPendingState *pendingState;
@end
@implementation
ASCollectionNode
- (
instancetype
)
init
{
ASDISPLAYNODE_NOT_DESIGNATED_INITIALIZER
();
UICollectionViewLayout *nilLayout =
nil
;
self = [
self
initWithCollectionViewLayout:
nilLayout];
//
Will throw an exception for lacking a UICV Layout.
return
nil
;
}
- (
instancetype
)
initWithCollectionViewLayout
:
(UICollectionViewLayout *)
layout
{
return
[
self
initWithFrame:
CGRectZero
collectionViewLayout:
layout];
}
- (
instancetype
)
_initWithCollectionView
:
(ASCollectionView *)
collectionView
{
ASDisplayNodeViewBlock collectionViewBlock = ^UIView *{
return
collectionView; };
if
(self = [
super
initWithViewBlock:
collectionViewBlock]) {
//
ASCollectionView created directly by the app. Trigger -loadView to set up collectionNode pointer.
__unused ASCollectionView *collectionView = [
self
view
];
return
self;
}
return
nil
;
}
- (
instancetype
)
initWithFrame
:
(CGRect)
frame
collectionViewLayout
:
(UICollectionViewLayout *)
layout
{
return
[
self
initWithFrame:
frame
collectionViewLayout:
layout
layoutFacilitator:
nil
];
}
- (
instancetype
)
initWithFrame
:
(CGRect)
frame
collectionViewLayout
:
(UICollectionViewLayout *)
layout
layoutFacilitator
:
(
id
<ASCollectionViewLayoutFacilitatorProtocol>)
layoutFacilitator
{
ASDisplayNodeViewBlock collectionViewBlock = ^UIView *{
return
[[ASCollectionView
alloc
]
_initWithFrame:
frame
collectionViewLayout:
layout
layoutFacilitator:
layoutFacilitator
ownedByNode:
YES
];
};
if
(self = [
super
initWithViewBlock:
collectionViewBlock]) {
return
self;
}
return
nil
;
}
- (
void
)
didLoad
{
[
super
didLoad
];
ASCollectionView *view = self.
view
;
view.
collectionNode
= self;
if
(_pendingState) {
_ASCollectionPendingState *pendingState = _pendingState;
self.
pendingState
=
nil
;
view.
asyncDelegate
= pendingState.
delegate
;
view.
asyncDataSource
= pendingState.
dataSource
;
}
}
- (_ASCollectionPendingState *)
pendingState
{
if
(!_pendingState && ![
self
isNodeLoaded
]) {
self.
pendingState
= [[_ASCollectionPendingState
alloc
]
init
];
}
ASDisplayNodeAssert
(![
self
isNodeLoaded
] || !_pendingState,
@"
ASCollectionNode should not have a pendingState once it is loaded
"
);
return
_pendingState;
}
- (
void
)
setDelegate
:
(
id
<ASCollectionDelegate>)
delegate
{
if
([
self
pendingState
]) {
_pendingState.
delegate
= delegate;
}
else
{
ASDisplayNodeAssert
([
self
isNodeLoaded
],
@"
ASCollectionNode should be loaded if pendingState doesn't exist
"
);
self.
view
.
asyncDelegate
= delegate;
}
}
- (
id
<ASCollectionDelegate>)
delegate
{
if
([
self
pendingState
]) {
return
_pendingState.
delegate
;
}
else
{
return
self.
view
.
asyncDelegate
;
}
}
- (
void
)
setDataSource
:
(
id
<ASCollectionDataSource>)
dataSource
{
if
([
self
pendingState
]) {
_pendingState.
dataSource
= dataSource;
}
else
{
ASDisplayNodeAssert
([
self
isNodeLoaded
],
@"
ASCollectionNode should be loaded if pendingState doesn't exist
"
);
self.
view
.
asyncDataSource
= dataSource;
}
}
- (
id
<ASCollectionDataSource>)
dataSource
{
if
([
self
pendingState
]) {
return
_pendingState.
dataSource
;
}
else
{
return
self.
view
.
asyncDataSource
;
}
}
- (ASCollectionView *)
view
{
return
(ASCollectionView *)[
super
view
];
}
#
if
ASRangeControllerLoggingEnabled
- (
void
)
visibilityDidChange
:
(
BOOL
)
isVisible
{
[
super
visibilityDidChange:
isVisible];
NSLog
(
@"
%@
- visible:
%d
"
, self, isVisible);
}
#
endif
- (
void
)
clearContents
{
[
super
clearContents
];
[
self
.view
clearContents
];
}
- (
void
)
clearFetchedData
{
[
super
clearFetchedData
];
[
self
.view
clearFetchedData
];
}
- (
void
)
beginUpdates
{
[
self
.view.dataController
beginUpdates
];
}
- (
void
)
endUpdatesAnimated
:
(
BOOL
)
animated
{
[
self
endUpdatesAnimated:
animated
completion:
nil
];
}
- (
void
)
endUpdatesAnimated
:
(
BOOL
)
animated
completion
:
(
void
(^)(
BOOL
))
completion
{
[
self
.view.dataController
endUpdatesAnimated:
animated
completion:
completion];
}
#
pragma mark
- ASCollectionView Forwards
- (ASRangeTuningParameters)
tuningParametersForRangeType
:
(ASLayoutRangeType)
rangeType
{
return
[
self
.view.rangeController
tuningParametersForRangeMode:
ASLayoutRangeModeFull
rangeType:
rangeType];
}
- (
void
)
setTuningParameters
:
(ASRangeTuningParameters)
tuningParameters
forRangeType
:
(ASLayoutRangeType)
rangeType
{
[
self
.view.rangeController
setTuningParameters:
tuningParameters
forRangeMode:
ASLayoutRangeModeFull
rangeType:
rangeType];
}
- (ASRangeTuningParameters)
tuningParametersForRangeMode
:
(ASLayoutRangeMode)
rangeMode
rangeType
:
(ASLayoutRangeType)
rangeType
{
return
[
self
.view.rangeController
tuningParametersForRangeMode:
rangeMode
rangeType:
rangeType];
}
- (
void
)
setTuningParameters
:
(ASRangeTuningParameters)
tuningParameters
forRangeMode
:
(ASLayoutRangeMode)
rangeMode
rangeType
:
(ASLayoutRangeType)
rangeType
{
return
[
self
.view.rangeController
setTuningParameters:
tuningParameters
forRangeMode:
rangeMode
rangeType:
rangeType];
}
- (
void
)
updateCurrentRangeWithMode
:
(ASLayoutRangeMode)
rangeMode
;
{
[
self
.view.rangeController
updateCurrentRangeWithMode:
rangeMode];
}
- (
void
)
reloadDataWithCompletion
:
(
void
(^)())
completion
{
[
self
.view
reloadDataWithCompletion:
completion];
}
- (
void
)
reloadData
{
[
self
.view
reloadData
];
}
- (
void
)
reloadDataImmediately
{
[
self
.view
reloadDataImmediately
];
}
@end
Back
|
FazBrowse Home
|
New Git URL