376 Star 2.1K Fork 843

HarmonyOS-Cases/Cases

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
BasicDataSource.ets 4.03 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* 实现页面加载所需要的对象,用于LazyForEach加载数据
*/
export class KeyboardDataSource {
private dataArray: string[] = [];
private listeners: DataChangeListener[] = [];
constructor(dataArray: string[]) {
for (let i = 0; i < dataArray.length; i++) {
this.dataArray.push(dataArray[i]);
}
}
/**
* 获取索引对应的数据
* @param index 数组索引
* @returns
*/
public getData(index: number): string {
return this.dataArray[index];
}
/**
* 通知控制器数据重新加载
*/
notifyDataReload(): void {
this.listeners.forEach(listener => {
listener.onDataReloaded();
})
}
/**
* 通知控制器数据增加
* @param index 数组索引
*/
notifyDataAdd(index: number): void {
this.listeners.forEach(listener => {
listener.onDataAdd(index);
})
}
/**
* 通知控制器数据变化
* @param index 数组索引
*/
notifyDataChange(index: number): void {
this.listeners.forEach(listener => {
listener.onDataChange(index);
})
}
/**
* 通知控制器数据删除
* @param index 数组索引
*/
notifyDataDelete(index: number): void {
this.listeners.forEach(listener => {
listener.onDataDelete(index);
})
}
/**
* 通知控制器数据位置变化
* @param from 起始位置
* @param to 最终位置
*/
notifyDataMove(from: number, to: number): void {
this.listeners.forEach(listener => {
listener.onDataMove(from, to);
})
}
/**
* 获取数据总数
* @returns
*/
public totalCount(): number {
return this.dataArray.length;
}
/**
* 注册改变数据的控制器
* @param listener 数据控制器
*/
registerDataChangeListener(listener: DataChangeListener): void {
if (this.listeners.indexOf(listener) < 0) {
this.listeners.push(listener);
}
}
/**
* 注销改变数据的控制器
* @param listener 数据控制器
*/
unregisterDataChangeListener(listener: DataChangeListener): void {
const pos = this.listeners.indexOf(listener)
if (pos >= 0) {
this.listeners.splice(pos, 1);
}
}
/**
* 增加数据
*/
public add1stItem(): void {
this.dataArray.splice(0, 0, this.dataArray[this.dataArray.length]);
this.notifyDataAdd(0);
}
/**
* 在数据尾部增加一个元素
*/
public addLastItem(): void {
this.dataArray.splice(this.dataArray.length, 0, this.dataArray[this.dataArray.length]);
this.notifyDataAdd(this.dataArray.length - 1);
}
/**
* 在指定索引位置增加一个元素
* @param index
*/
public addItem(index: number): void {
this.dataArray.splice(index, 0, this.dataArray[this.dataArray.length]);
this.notifyDataAdd(index);
}
/**
* 删除第一个元素
*/
public delete1stItem(): void {
this.dataArray.splice(0, 1);
this.notifyDataDelete(0);
}
/**
* 删除第二个元素
*/
public delete2ndItem(): void {
this.dataArray.splice(1, 1);
this.notifyDataDelete(1);
}
/**
* 删除最后一个元素
*/
public deleteLastItem(): void {
this.dataArray.splice(-1, 1);
this.notifyDataDelete(this.dataArray.length);
}
/**
* 重新加载数据
*/
public reload(): void {
this.notifyDataReload();
}
/**
* 改变数组数据
* @param data:新数组
*/
public modifyAllData(data: string[]): void {
this.dataArray = data;
this.notifyDataReload();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/harmonyos-cases/cases.git
git@gitee.com:harmonyos-cases/cases.git
harmonyos-cases
cases
Cases
master

搜索帮助