本文整理汇总了TypeScript中@eg/share/catalog/basket.service.BasketService.getRecordIds方法的典型用法代码示例。如果您正苦于以下问题:TypeScript service.BasketService.getRecordIds方法的具体用法?TypeScript service.BasketService.getRecordIds怎么用?TypeScript service.BasketService.getRecordIds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@eg/share/catalog/basket.service.BasketService
的用法示例。
在下文中一共展示了service.BasketService.getRecordIds方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: ngOnInit
ngOnInit() {
// A SearchContext provides all the data needed for browse.
this.staffCat.createContext();
// Cache the basket on page load.
this.basket.getRecordIds();
this.searchForm.searchTab = 'browse';
}
示例2: ngOnInit
ngOnInit() {
// Create the search context that will be used by all of my
// child components. After initial creation, the context is
// reset and updated as needed to apply new search parameters.
this.staffCat.createContext();
// Cache the basket on page load.
this.basket.getRecordIds();
}
示例3: applyAction
applyAction() {
console.debug('Performing basket action', this.basketAction);
switch (this.basketAction) {
case 'view':
// This does not propagate search params -- unclear if needed.
this.router.navigate(['/staff/catalog/search'],
{queryParams: {showBasket: true}});
break;
case 'clear':
this.basket.removeAllRecordIds();
break;
case 'hold':
this.basket.getRecordIds().then(ids => {
this.router.navigate(['/staff/catalog/hold/T'],
{queryParams: {target: ids}});
});
break;
case 'print':
this.basket.getRecordIds().then(ids => {
this.net.request(
'open-ils.search',
'open-ils.search.biblio.record.print', ids
).subscribe(
at_event => {
// check for event..
const html = at_event.template_output().data();
this.printer.print({
text: html,
printContext: 'default'
});
}
);
});
break;
case 'email':
this.basket.getRecordIds().then(ids => {
this.net.request(
'open-ils.search',
'open-ils.search.biblio.record.email',
this.auth.token(), ids
).toPromise(); // fire-and-forget
});
break;
case 'bucket':
this.basket.getRecordIds().then(ids => {
this.addToBucketDialog.recordId = ids;
this.addToBucketDialog.open({size: 'lg'});
});
break;
}
// Resetting basketAction inside its onchange handler
// prevents the new value from propagating to Angular
// Reset after the current thread.
setTimeout(() => this.basketAction = ''); // reset
}