import { ControlServiceBase } from '@ibizstudio/runtime'; import { IPSDEDataView } from '@ibizstudio/runtime'; import { GlobalService } from '@ibizstudio/runtime'; import { AppDataViewModel } from '../ctrl-model'; /** * Main 部件服务对象 * * @export * @class AppDataViewService */ export class AppDataViewService extends ControlServiceBase { /** * 数据视图实例对象 * * @memberof AppDataViewService */ declare controlInstance: IPSDEDataView; /** * 数据服务对象 * * @type {any} * @memberof AppDataViewService */ appEntityService!: any; /** * 远端数据 * * @type {*} * @memberof AppDataViewService */ private remoteCopyData: any = {}; /** * 初始化服务参数 * * @type {boolean} * @memberof AppDataViewService */ async initServiceParam() { this.appEntityService = await new GlobalService().getService(this.appDeCodeName, this.context); this.model = new AppDataViewModel(this.controlInstance); } /** * Creates an instance of AppFormService. * * @param {*} [opts={}] * @memberof AppDataViewService */ constructor(opts: any = {}, context?: any) { super(opts, context); this.controlInstance = opts; } /** * loaded * * @memberof AppDataViewService */ async loaded() { await this.initServiceParam(); } /** * 查询数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppDataViewService */ search(action: string, context: any = {}, data: any = {}, isloading?: boolean): Promise { const { data: Data, context: Context } = this.handleRequestData(action, context, data, true); return new Promise((resolve: any, reject: any) => { const _appEntityService: any = this.appEntityService; let result: Promise; if (_appEntityService[action] && _appEntityService[action] instanceof Function) { result = _appEntityService[action](Context, Data, isloading); } else { result = _appEntityService.FetchDefault(Context, Data, isloading); } result .then(response => { this.handleResponse(action, response); resolve(response); }) .catch(response => { reject(response); }); }); } /** * 删除数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppDataViewService */ delete(action: string, context: any = {}, data: any = {}, isloading?: boolean): Promise { const { data: Data, context: Context } = this.handleRequestData(action, context, data, true); return new Promise((resolve: any, reject: any) => { const _appEntityService: any = this.appEntityService; let result: Promise; if (_appEntityService[action] && _appEntityService[action] instanceof Function) { result = _appEntityService[action](Context, Data, isloading); } else { result = _appEntityService.remove(Context, Data, isloading); } result .then(response => { this.handleResponse(action, response); resolve(response); }) .catch(response => { reject(response); }); }); } /** * 添加数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppDataViewService */ add(action: string, context: any = {}, data: any = {}, isloading?: boolean): Promise { const { data: Data, context: Context } = this.handleRequestData(action, context, data, true); return new Promise((resolve: any, reject: any) => { const _appEntityService: any = this.appEntityService; let result: Promise; if (_appEntityService[action] && _appEntityService[action] instanceof Function) { result = _appEntityService[action](Context, Data, isloading); } else { result = _appEntityService.Create(Context, Data, isloading); } result .then(response => { this.handleResponse(action, response); resolve(response); }) .catch(response => { reject(response); }); }); } /** * 修改数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppDataViewService */ update(action: string, context: any = {}, data: any = {}, isloading?: boolean): Promise { const { data: Data, context: Context } = this.handleRequestData(action, context, data, true); return new Promise((resolve: any, reject: any) => { const _appEntityService: any = this.appEntityService; let result: Promise; if (_appEntityService[action] && _appEntityService[action] instanceof Function) { result = _appEntityService[action](Context, Data, isloading); } else { result = _appEntityService.Update(Context, Data, isloading); } result .then(response => { this.handleResponse(action, response); resolve(response); }) .catch(response => { reject(response); }); }); } }