当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript event.service.EventService类代码示例

本文整理汇总了TypeScript中@eg/core/event.service.EventService的典型用法代码示例。如果您正苦于以下问题:TypeScript service.EventService类的具体用法?TypeScript service.EventService怎么用?TypeScript service.EventService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了service.EventService类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

            resp => {
                let result = resp.result;
                const holdResult: HoldRequestResult = {success: true};

                // API can return an ID, an array of events, or a hash
                // of info.

                if (Number(result) > 0) {
                    // On success, the API returns the hold ID.
                    holdResult.holdId = result;
                    console.debug(`Hold successfully placed ${result}`);

                } else {
                    holdResult.success = false;
                    console.info('Hold request failed: ', result);

                    if (Array.isArray(result)) { result = result[0]; }

                    if (this.evt.parse(result)) {
                        holdResult.evt = this.evt.parse(result);
                    } else {
                        holdResult.evt = this.evt.parse(result.last_event);
                    }
                }

                request.result = holdResult;
                return request;
            }
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:28,代码来源:holds.service.ts

示例2:

 ).toPromise().then(resp => {
     const evt = this.evt.parse(resp);
     if (evt) {
         this.toast.danger(evt.toString());
     } else {
         this.close();
     }
 });
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:8,代码来源:record-bucket-dialog.component.ts

示例3:

 ).subscribe(resp => {
     const evt = this.evt.parse(resp);
     if (evt) {
         this.toast.danger(evt.toString());
     } else {
         this.close();
     }
 });
开发者ID:jamesrf,项目名称:Evergreen,代码行数:8,代码来源:record-bucket-dialog.component.ts

示例4:

 ).toPromise().then(async(result) => {
     if (Number(result) === 1) {
         this.numSucceeded++;
         this.toast.success(await this.successMsg.current());
     } else {
         this.numFailed++;
         console.error('Retarget Failed', this.evt.parse(result));
         this.toast.warning(await this.errorMsg.current());
     }
 });
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:10,代码来源:transfer-dialog.component.ts

示例5: async

 async(result) => {
     if (Number(result) === 1) {
         this.numSucceeded++;
         this.toast.success(await this.successMsg.current());
     } else {
         this.numFailed++;
         console.error(this.evt.parse(result));
         this.toast.warning(await this.errorMsg.current());
     }
     this.cancelNext(ids);
 }
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:11,代码来源:cancel-dialog.component.ts

示例6:

 ).toPromise().then(async(result) => {
     if (Number(result) === 1) {
         this.numSucceeded++;
         this.toast.success(await this.successMsg.current());
     } else {
         this.numFailed++;
         console.error('Mark missing failed ', this.evt.parse(result));
         this.toast.warning(await this.errorMsg.current());
     }
     return this.markOneItemMissing(ids);
 });
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:11,代码来源:mark-missing-dialog.component.ts

示例7: reject

 ).subscribe(queue => {
     const e = this.evt.parse(queue);
     if (e) {
         reject(e);
     } else {
         // createQueue is always called after queues have
         // been fetched and cached.
         this.allQueues[qType].push(queue);
         resolve(queue.id());
     }
 });
开发者ID:StephenGWills,项目名称:Evergreen,代码行数:11,代码来源:vandelay.service.ts


注:本文中的@eg/core/event.service.EventService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。