本文整理汇总了TypeScript中ember-concurrency-decorators.task函数的典型用法代码示例。如果您正苦于以下问题:TypeScript task函数的具体用法?TypeScript task怎么用?TypeScript task使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了task函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: actionToInvoke
@task({ group: 'modelTasks' })
* invokeModelAction(model: DrupalModel, action: string) {
const actionToInvoke = model.get(action).bind(model);
yield actionToInvoke()
.then(() => {
this.successToast('Success', 'Action successful');
})
.catch((error: any) => {
this.errorToast('Error', error);
})
}
示例2: swal
@task({ group: 'modelTasks' })
* delete(model: DrupalModel) {
swal({
title: "Are you sure?",
text: "You will not be able to recover this record!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
allowOutsideClick: true
}, function() {
this.deleteWithoutConfirm.perform(model);
}.bind(this));
}
示例3:
@task({ group: 'modelTasks' })
* deleteWithoutConfirm(model: DrupalModel) {
const modelName = this.fieldInformation.getModelName(model);
model.deleteRecord();
yield model.save()
.then(() => {
this.successToast(`Success`, `Record deleted`);
this.entityRouter.transitionToList(modelName);
this.recentlyViewed.removeRecentlyViewed(model, model.id);
})
.catch((reason: any) => {
this.logErrorMessage(`There was an error deleting your data`, reason.message);
});
}
示例4: state
@task({ group: 'modelTasks' })
* refresh(model: DrupalModel) {
model.rollback(); // To clear any potential dirty state (else the reload won't work)
const modelName = this.fieldInformation.getModelName(model);
const defaultIncludes = this.fieldInformation.getDefaultIncludes(modelName);
const options : QueryParams = {};
// Lets also include the default includes
if(defaultIncludes.length > 0) {
options['include'] = defaultIncludes.join(',');
}
yield this.store.loadRecord(modelName, model.get('id'), options)
.then(() => {
this.infoToast(`Success`, `Record Refreshed`);
})
.catch((reason: any) => {
this.logErrorMessage(`There was an error refreshing`, reason.message);
});
}