LazyForEach: Lazy Data Loading
LazyForEach iterates over provided data sources and creates corresponding components during each iteration. When LazyForEach is used in a scrolling container, the framework creates components as required within the visible area of the scrolling container. When a component is out of the visible area, the framework destroys and reclaims the component to reduce memory usage.
API Description
LazyForEach(
dataSource: IDataSource, // Data source to iterate over
itemGenerator: (item: any) => void, // Child component generation function
keyGenerator?: (item: any) => string // (Optional). ID generation function
): void
interface IDataSource {
totalCount(): number; // Get total count of data
getData(index: number): any; // Get single data by index
registerDataChangeListener(listener: DataChangeListener): void; // Register listener to listening data changes
unregisterDataChangeListener(listener: DataChangeListener): void; // Unregister listener
}
interface DataChangeListener {
onDataReloaded(): void; // Called while data reloaded
onDataAdd(index: number): void; // Called while single data added
onDataMove(from: number, to: number): void; // Called while single data moved
onDataDelete(index: number): void; // Called while single data deleted
onDataChange(index: number): void; // Called while single data changed
}
Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
dataSource | IDataSource | Yes | LazyForEach data source. You need to implement related APIs. |
itemGenerator | (item: any) => void | Yes | Child component generation function, which generates a child component for each data item in the array. NOTE The function body of itemGenerator must be included in braces {...}. itemGenerator can and must generate only one child component for each iteration. The if statement is allowed in itemGenerator, but you must ensure that each branch of the if statement creates a child component of the same type. ForEach and LazyForEach statements are not allowed in itemGenerator. |
keyGenerator | (item: any) => string | No | ID generation function, which generates a unique and fixed ID for each data item in the data source. This ID must remain unchanged for the data item even when the item is relocated in the array. When the item is replaced by a new item, the ID of the new item must be different from that of the replaced item. This ID generation function is optional. However, for performance reasons, it is strongly recommended that the ID generation function be provided, so that the framework can better identify array changes. For example, if no ID generation function is provided, a reverse of an array will result in rebuilding of all nodes in LazyForEach. NOTE The ID generated for each data item in the data source must be unique. |
Description of IDataSource
interface IDataSource {
totalCount(): number;
getData(index: number): any;
registerDataChangeListener(listener: DataChangeListener): void;
unregisterDataChangeListener(listener: DataChangeListener): void;
}
Declaration | Parameter Type | Description |
---|---|---|
totalCount(): number | - | Obtains the total number of data records. |
getData(index: number): any | number | Obtains the data record corresponding to the specified index. index: index of the data record to obtain. |
registerDataChangeListener(listener:DataChangeListener): void | DataChangeListener | Registers a listener for data changes. listener: listener for data changes. |
unregisterDataChangeListener(listener:DataChangeListener): void | DataChangeListener | Deregisters the listener for data changes. listener: listener for data changes. |
Description of DataChangeListener
interface DataChangeListener {
onDataReloaded(): void;
onDataAdded(index: number): void;
onDataMoved(from: number, to: number): void;
onDataDeleted(index: number): void;
onDataChanged(index: number): void;
onDataAdd(index: number): void;
onDataMove(from: number, to: number): void;
onDataDelete(index: number): void;
onDataChange(index: number): void;
}
Declaration | Parameter Type | Description |
---|---|---|
onDataReloaded(): void | - | Invoked when all data is reloaded. |
onDataAdded(index: number):void | number | Invoked when data is added to the position indicated by the specified index. index: index of the position where data is added. |
onDataMoved(from: number, to: number): void | from: number, to: number |
Invoked when data is moved. from: original position of data; to: target position of data. NOTE The ID must remain unchanged before and after data movement. If the ID changes, APIs for deleting and adding data must be called. |
onDataChanged(index: number): void | number | Invoked when data in the position indicated by the specified index is changed. index: listener for data changes. |
onDataAdd(index: number): void | number | Invoked when data is added to the position indicated by the specified index. index: index of the position where data is added. |
onDataMove(from: number, to: number): void | from: number, to: number |
Invoked when data is moved. from: original position of data; to: target position of data. NOTE The ID must remain unchanged before and after data movement. If the ID changes, APIs for deleting and adding data must be called. |
onDataChanged(index: number): void | number | Invoked when data in the position indicated by the specified index is changed. index: index of the position where data is changed. |
Restrictions
-
LazyForEach must be used in the container component. Only the <List>, <Grid>, and <Swiper> components support lazy loading (that is, only the visible part and a small amount of data before and after the visible part are loaded for caching). For other components, all data is loaded at the same time.
-
LazyForEach must create one and only one child component in each iteration.
-
The generated child components must be allowed in the parent container component of LazyForEach.
-
LazyForEach can be included in an if/else statement, and can also contain such a statement.
-
The ID generation function must generate a unique value for each piece of data. If the IDs are the same, the framework ignores the UI components with the same key value. As a result, these UI components cannot be displayed in the parent container.
-
LazyForEach must be updated using a DataChangeListener object. When the first parameter dataSource uses a state variable, a state variable change does not trigger the UI update of LazyForEach.
-
For better rendering performance, when the onDataChange API of the DataChangeListener object is used to update the UI, an ID different from the original one needs to be generated to trigger component re-rendering.
-
The call sequence of itemGenerator functions may be different from the order of the data items in the data source. Therefore, do not assume whether or when the itemGenerator and keyGenerator functions are executed. For example, the following example may not run properly:
LazyForEach(dataSource, item => Text(`${item.i}. item.data.label`), item => item.data.id.toString())
Example
// Basic implementation of IDataSource to handle data listener
class BasicDataSource implements IDataSource {
private listeners: DataChangeListener[] = [];
public totalCount(): number {
return 0;
}
public getData(index: number): any {
return undefined;
}
registerDataChangeListener(listener: DataChangeListener): void {
if (this.listeners.indexOf(listener) < 0) {
console.info('add listener');
this.listeners.push(listener);
}
}
unregisterDataChangeListener(listener: DataChangeListener): void {
const pos = this.listeners.indexOf(listener);
if (pos >= 0) {
console.info('remove listener');
this.listeners.splice(pos, 1);
}
}
notifyDataReload(): void {
this.listeners.forEach(listener => {
listener.onDataReloaded();
})
}
notifyDataAdd(index: number): void {
this.listeners.forEach(listener => {
listener.onDataAdd(index);
})
}
notifyDataChange(index: number): void {
this.listeners.forEach(listener => {
listener.onDataChange(index);
})
}
notifyDataDelete(index: number): void {
this.listeners.forEach(listener => {
listener.onDataDelete(index);
})
}
notifyDataMove(from: number, to: number): void {
this.listeners.forEach(listener => {
listener.onDataMove(from, to);
})
}
}
class MyDataSource extends BasicDataSource {
private dataArray: string[] = ['/path/image0', '/path/image1', '/path/image2', '/path/image3'];
public totalCount(): number {
return this.dataArray.length;
}
public getData(index: number): any {
return this.dataArray[index];
}
public addData(index: number, data: string): void {
this.dataArray.splice(index, 0, data);
this.notifyDataAdd(index);
}
public pushData(data: string): void {
this.dataArray.push(data);
this.notifyDataAdd(this.dataArray.length - 1);
}
}
@Entry
@Component
struct MyComponent {
private data: MyDataSource = new MyDataSource();
build() {
List({ space: 3 }) {
LazyForEach(this.data, (item: string) => {
ListItem() {
Row() {
Image(item).width('30%').height(50)
Text(item).fontSize(20).margin({ left: 10 })
}.margin({ left: 10, right: 10 })
}
.onClick(() => {
this.data.pushData('/path/image' + this.data.totalCount());
})
}, item => item)
}
}
}