Indexer.java
16.2 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
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
/*
* Copyright (c) People Technologies Co., Ltd. 2019-2022. All rights reserved.
*/
package com.wd.display.comp.layoutmanager;
import java.util.ArrayList;
import java.util.List;
import androidx.annotation.NonNull;
import com.orhanobut.logger.Logger;
import com.people.component.comp.layoutdata.AbsGroup;
import com.people.component.comp.layoutdata.AbsPage;
import com.people.component.comp.layoutdata.AbsSection;
import com.people.component.comp.layoutdata.channel.BaseLineSection;
import com.people.component.comp.layoutmanager.channel.BaseLineLayoutManager;
import com.people.entity.custom.BaseLineBean;
import com.people.entity.custom.item.ItemBean;
import com.wondertek.wheat.ability.tools.ArrayUtils;
/**
*
*/
public class Indexer {
private static final String TAG = "Indexer";
private List<ItemLayoutManager> itemLayoutManagers;
public Indexer() {
itemLayoutManagers = new ArrayList<>();
}
/**
* 页面中多个楼层,每个楼层配置多个组件信息转换layoutManager,每次转换只对一个楼层中新增的组件信息转换
* <p>
* page
* groupA
* comp1 ->section1 ->layoutmanager1
* comp2 ->section2 ->layoutmanager2
* comp3 ->section3 ->layoutmanager3 收集转化成LayoutManager
* .... ------------------------> List<ItemLayoutManager>
* groupB
* comp1 ->section1 ->layoutmanager1
* comp2 ->section2 ->layoutmanager2
* comp3 ->section3 ->layoutmanager3
* ...
* ...
* <p>
* 依据楼层更新itemLayoutManagers
*
* @param page 页面信息
* @param isRefresh true:清理缓存数据
*/
public void updateItemLayoutManagersByGroup(AbsPage page, boolean isRefresh) {
Logger.t(TAG).d("updateItemLayoutManagers");
if (page == null || page.getGroups() == null) {
return;
}
// 刷新即清理LayoutManger
if (isRefresh) {
itemLayoutManagers.clear();
}
// 获取当前页面可支持需要加载更多数据的楼层对象
AbsGroup group = page.getGroups().get(page.getGroupIndex());
// comp在group里的下标
int sectionSize = group.getSections().size();
int groupIndex = group.getStartPosition();
// j :正在使用的楼层展示总数量
int j = group.getDisplayItemCount();
int sectionIndex = -1+j;
List<ItemBean> list;
for (; j < sectionSize; ++j) {
AbsSection section = group.getSections().get(j);
if (section == null) {
continue;
}
sectionIndex++;
section.setPosition(sectionIndex);
// 添加占位数据,如label是可以展示的,但是没有list,这里组装下占位数据;
section.setupOrNotSection();
// 根据展示数据list 进行展示,限制于displayCount
if (section.getCompBean() == null || section.getCompBean().getDisplayItemBeans() == null) {
continue;
}
int itemIndex = -1;
list = new ArrayList<>();
int sectionItemCount = section.getCompBean().getDisplayItemBeans().size();
for (ItemBean itemBean : section.getCompBean().getDisplayItemBeans()) {
if (itemBean == null) {
continue;
}
ItemLayoutManager layoutManager = page.getSectionParser().parseLayoutManager(section);
if (layoutManager == null) {
continue;
}
itemIndex++;
layoutManager.setFragment(page.getFragment());
layoutManager.setItemIndex(new ItemIndex(groupIndex, sectionIndex, itemIndex, sectionItemCount));
layoutManager.setSection(section);
itemLayoutManagers.add(layoutManager);
list.add(itemBean);
}
// 添加section里内容列表解析
section.parseData(list);
}
Logger.t(TAG).d("updateItemLayoutManagers : " + itemLayoutManagers.size());
}
/**
* 页面中一个楼层多个组件信息转换layoutManager,每次转换只对单个楼层中新增的组件信息转换
* page
* groupA
* comp1 ->section1 ->layoutmanager1
* comp2 ->section2 ->layoutmanager2
* comp3 ->section3 ->layoutmanager3 收集转化成LayoutManager
* .... ------------------------> List<ItemLayoutManager>
* <p>
* 更新itemLayoutManagers
*
* @param page
* @param isRefresh true:清理缓存数据
*/
public void updateItemLayoutManagers(AbsPage page, boolean isRefresh) {
Logger.t(TAG).d("updateItemLayoutManagers");
if (page == null || page.getGroups() == null) {
return;
}
// group在recyclerView里的下标
int groupIndex = 0;
int groupSize = page.getGroups().size();
// 刷新即清理LayoutManger
if (isRefresh) {
itemLayoutManagers.clear();
}
List<ItemBean> list;
for (int i = 0; i < groupSize; ++i) {
AbsGroup group = page.getGroups().get(i);
if (group.getSections() == null) {
continue;
}
groupIndex = group.getStartPosition();
// comp在group里的下标
int sectionIndex = -1;
int sectionSize = group.getSections().size();
// group里,所有comp里的有效数据大小总和
int groupItemCount = 0;
int j = 0;
if (groupSize == 1) {
j = page.getDisplayItemCount();
}
for (; j < sectionSize; ++j) {
AbsSection section = group.getSections().get(j);
if (section == null) {
continue;
}
sectionIndex++;
section.setPosition(sectionIndex);
// 添加占位数据,如label是可以展示的,但是没有list,这里组装下占位数据;
section.setupOrNotSection();
// 根据展示数据list 进行展示,限制于displayCount
if (section.getCompBean() == null || section.getCompBean().getDisplayItemBeans() == null) {
continue;
}
int itemIndex = -1;
list = new ArrayList<>();
int sectionItemCount = section.getCompBean().getDisplayItemBeans().size();
for (ItemBean itemBean : section.getCompBean().getDisplayItemBeans()) {
if (itemBean == null) {
continue;
}
ItemLayoutManager layoutManager = page.getSectionParser().parseLayoutManager(section);
if (layoutManager == null) {
continue;
}
itemIndex++;
layoutManager.setFragment(page.getFragment());
layoutManager.setItemIndex(new ItemIndex(groupIndex, sectionIndex, itemIndex, sectionItemCount));
layoutManager.setSection(section);
itemLayoutManagers.add(layoutManager);
list.add(itemBean);
}
groupItemCount += sectionItemCount;
// 添加section里内容列表解析
section.parseData(list);
}
}
Logger.t(TAG).d("updateItemLayoutManagers : " + itemLayoutManagers.size());
}
/**
* 页面中多个楼层,每个楼层配置多个组件信息转换layoutManager,同时对多个楼层数据进行转换
* <p>
* page
* groupA
* comp1 ->section1 ->layoutmanager1
* comp2 ->section2 ->layoutmanager2
* comp3 ->section3 ->layoutmanager3 收集转化成LayoutManager
* .... ------------------------> List<ItemLayoutManager>
* groupB
* comp1 ->section1 ->layoutmanager1
* comp2 ->section2 ->layoutmanager2
* comp3 ->section3 ->layoutmanager3
* ...
* ...
* <p>
* 依据楼层更新itemLayoutManagers
*
* @param page 页面信息
*/
public void updateItemLayoutManagers(AbsPage page) {
Logger.t(TAG).d("updateItemLayoutManagers");
itemLayoutManagers.clear();
if (page == null || page.getGroups() == null) {
return;
}
// group在page里的下标,getGroups()里的下标
int groupPosition = -1;
// group在recyclerView里的下标
int groupIndex = 0;
AbsGroup group;
AbsSection section;
List<ItemBean> list;
for (int i = 0; i < page.getGroups().size(); ++i) {
group = page.getGroups().get(i);
if (group.getSections() == null) {
continue;
}
groupPosition++;
group.setPosition(groupPosition);
// 判断group数据是否完整,若数据不完整则整个Group不显示
// boolean isDataIntegrity = group.checkoutIntegrity();
// boolean isLoaded = group.hasDataLoaded();
// comp在group里的下标
int sectionIndex = -1;
int sectionSize = group.getSections().size();
group.setStartPosition(groupIndex);
// group里,所有comp里的有效数据大小总和
int groupItemCount = 0;
for (int j = 0; j < sectionSize; ++j) {
section = group.getSections().get(j);
if (section == null) {
continue;
}
sectionIndex++;
section.setPosition(sectionIndex);
// 添加占位数据,如label是可以展示的,但是没有list,这里组装下占位数据;
section.setupOrNotSection();
// 根据展示数据list 进行展示,限制于displayCount
if (section.getCompBean() == null || section.getCompBean().getDisplayItemBeans() == null) {
continue;
}
int itemIndex = -1;
list = new ArrayList<>();
int sectionItemCount = section.getCompBean().getDisplayItemBeans().size();
for (ItemBean itemBean : section.getCompBean().getDisplayItemBeans()) {
if (itemBean == null) {
continue;
}
ItemLayoutManager layoutManager = page.getSectionParser().parseLayoutManager(section);
if (layoutManager == null) {
continue;
}
itemIndex++;
layoutManager.setFragment(page.getFragment());
// TODO new ItemIndex 用计算的方式解决,实现局部刷新
layoutManager.setItemIndex(new ItemIndex(groupIndex, sectionIndex, itemIndex, sectionItemCount));
layoutManager.setSection(section);
itemLayoutManagers.add(layoutManager);
list.add(itemBean);
}
groupItemCount += sectionItemCount;
// 添加section里内容列表解析
section.parseData(list);
}
groupIndex += groupItemCount;
}
Logger.t(TAG).d("updateItemLayoutManagers : " + itemLayoutManagers.size());
}
/**
* 添加底线view
*
* @param baseLineBean 底线数据
*/
public void addBaseLine(@NonNull BaseLineBean baseLineBean) {
Logger.t(TAG).d("addBaseLine: " + baseLineBean.getLineHint());
BaseLineLayoutManager lineLayoutManager = new BaseLineLayoutManager();
BaseLineSection baseItemSection = new BaseLineSection(baseLineBean);
lineLayoutManager.setSection(baseItemSection);
itemLayoutManagers.add(lineLayoutManager);
List<BaseLineBean> list = new ArrayList<BaseLineBean>() {
{
add(baseLineBean);
}
};
lineLayoutManager.setItemIndex(new ItemIndex(0, 0, 0, 1));
baseItemSection.parseData(list);
}
public void addItemLayoutManager(AbsSection section) {
Logger.t(TAG).d("addItemLayoutManager");
if (section == null || section.getCompBean() == null) {
return;
}
List<ItemBean> itemBeans = section.getCompBean().getDisplayItemBeans();
if (ArrayUtils.isEmpty(itemBeans)) {
return;
}
List<ItemLayoutManager> managers = new ArrayList<>();
int groupIndex = section.getParent().getStartPosition();
int sectionIndex = section.getPosition();
int itemSize = itemBeans.size();
int prePosition = groupIndex;
List<ItemBean> list = new ArrayList<>();
for (ItemBean itemBean : itemBeans) {
if (itemBean == null) {
continue;
}
ItemLayoutManager layoutManager =
section.getParent().getParent().getSectionParser().parseLayoutManager(section);
if (layoutManager == null) {
continue;
}
// layoutManager.setFragment(page.getFragment());
layoutManager.setItemIndex(new ItemIndex(groupIndex, sectionIndex, itemSize));
layoutManager.setSection(section);
managers.add(layoutManager);
list.add(itemBean);
}
// 添加section里内容列表解析
section.parseData(list);
itemLayoutManagers.addAll(prePosition, managers);
Logger.t(TAG).d("addItemLayoutManager : " + itemLayoutManagers.size());
}
/**
*
*/
private int getStartPosition(@NonNull AbsSection section) {
return section.getParent().getStartPosition();
}
public void removeItemLayoutManager(int position) {
itemLayoutManagers.remove(position);
Logger.t("TAG").e("removeItemLayoutManager : " + itemLayoutManagers.size());
}
/**
* 插入/删除item后,更新index
*
* @param startIndex 开始位置
* @param offset 更新位移,即变化量;如插入了3条,offset=3;删除了3条,offset=-3
*/
public void updateIndexer(int startIndex, int offset) {
if (startIndex >= itemLayoutManagers.size()) {
return;
}
for (int i = startIndex; i < itemLayoutManagers.size(); i++) {
// 后面所有的item,下标刷新
ItemLayoutManager itemLayoutManager = itemLayoutManagers.get(i);
ItemIndex itemIndex = itemLayoutManager.getItemIndex();
if (itemIndex == null) {
continue;
}
int groupIndex = itemIndex.getGroupIndex() + offset;
itemIndex.setGroupIndex(groupIndex);
// 下标更新到group里
if (itemLayoutManager.getSection() != null && itemLayoutManager.getSection().getParent() != null) {
itemLayoutManager.getSection().getParent().setStartPosition(groupIndex);
}
}
}
public int getItemCount() {
return itemLayoutManagers == null ? 0 : itemLayoutManagers.size();
}
public List<ItemLayoutManager> getItemLayoutManagers() {
return itemLayoutManagers;
}
public void setItemLayoutManagers(List<ItemLayoutManager> itemLayoutManagers) {
this.itemLayoutManagers = itemLayoutManagers;
}
/**
* 获取在<code>position</code>位置的item的layout manager
*/
ItemLayoutManager layoutMangerInPosition(int position) {
for (ItemLayoutManager lm : itemLayoutManagers) {
if (lm.getItemIndex() == null || lm.getItemIndex().getItemCount() == 0) {
continue;
}
int lastItemPosition = lm.getItemIndex().getLastItemPosition();
if (position < lastItemPosition) {
return (ItemLayoutManager) lm;
}
}
return null;
// return searchManager(position);
}
}