本文整理汇总了TypeScript中@eg/share/catalog/basket.service.BasketService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.BasketService类的具体用法?TypeScript service.BasketService怎么用?TypeScript service.BasketService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.BasketService类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: toggleBasketEntry
toggleBasketEntry() {
if (this.isRecordSelected) {
return this.basket.addRecordIds([this.summary.id]);
} else {
return this.basket.removeRecordIds([this.summary.id]);
}
}
示例2: 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';
}
示例3: 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();
}
示例4: ngOnInit
ngOnInit() {
this.searchContext = this.staffCat.searchContext;
this.summary.getHoldCount();
this.isRecordSelected = this.basket.hasRecordId(this.summary.id);
// Watch for basket changes caused by other components
this.basketSub = this.basket.onChange.subscribe(() => {
this.isRecordSelected = this.basket.hasRecordId(this.summary.id);
});
}
示例5:
this.basketSub = this.basket.onChange.subscribe(() => {
this.isRecordSelected = this.basket.hasRecordId(this.summary.id);
});
示例6: 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
}
示例7: basketCount
basketCount(): number {
return this.basket.recordCount();
}