mirror of
https://github.com/status-im/react-native.git
synced 2025-02-25 07:35:25 +00:00
AMA changes to support disk cache
Reviewed By: fred2028 Differential Revision: D6295287 fbshipit-source-id: 70ae7dfba2edb36e758ad0e22916015038108d36
This commit is contained in:
parent
aa83b5a0ca
commit
d79e245d19
@ -88,6 +88,16 @@ class SwipeableListViewDataSource {
|
|||||||
return Object.keys(this._dataBlob)[0];
|
return Object.keys(this._dataBlob)[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getLastRowID(): ?string {
|
||||||
|
if (this.rowIdentities && this.rowIdentities.length) {
|
||||||
|
const lastSection = this.rowIdentities[this.rowIdentities.length - 1];
|
||||||
|
if (lastSection && lastSection.length) {
|
||||||
|
return lastSection[lastSection.length - 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Object.keys(this._dataBlob)[this._dataBlob.length - 1];
|
||||||
|
}
|
||||||
|
|
||||||
setOpenRowID(rowID: string): SwipeableListViewDataSource {
|
setOpenRowID(rowID: string): SwipeableListViewDataSource {
|
||||||
this._previousOpenRowID = this._openRowID;
|
this._previousOpenRowID = this._openRowID;
|
||||||
this._openRowID = rowID;
|
this._openRowID = rowID;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user