import { IPSDEKanban } from '@ibizstudio/runtime'; import { ControlServiceBase } from '@ibizstudio/runtime'; import { GlobalService } from '@ibizstudio/runtime'; import { AppKanbanModel } from '../ctrl-model'; /** * Main 部件服务对象 * * @export * @class AppKanbanService */ export class AppKanbanService extends ControlServiceBase { /** * 看板实例对象 * * @memberof AppKanbanService */ declare controlInstance: IPSDEKanban; /** * 数据服务对象 * * @type {any} * @memberof AppKanbanService */ appEntityService!: any; /** * 初始化服务参数 * * @type {boolean} * @memberof AppKanbanService */ async initServiceParam(opts: any) { this.controlInstance = opts; this.appEntityService = await new GlobalService().getService(this.appDeCodeName, this.context); this.model = new AppKanbanModel(opts); } /** * Creates an instance of AppKanbanService. * * @param {*} [opts={}] * @memberof AppKanbanService */ constructor(opts: any = {}, context?: any) { super(opts, context); this.initServiceParam(opts); } /** * 查询数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppKanbanService */ 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(async response => { await this.handleResponse(action, response); resolve(response); }) .catch(response => { reject(response); }); }); } /** * 删除数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppKanbanService */ 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 AppKanbanService */ 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); }); }); } }