The store and merchant init-alpine.js derive currentPage from the URL's last segment (e.g., /loyalty/program -> 'program'). Loyalty menu items used prefixed IDs like 'loyalty-program' which never matched, so sidebar items never highlighted. Fixed by renaming all store/merchant menu item IDs and JS currentPage values to match URL segments: program, cards, analytics, transactions, pins, settings — consistent with how every other module works. Also reverted the init-alpine.js guard that broke storeCode extraction, and added missing loyalty.common.contact_admin_setup translation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
639 B
JavaScript
19 lines
639 B
JavaScript
// app/modules/loyalty/static/merchant/js/loyalty-pins.js
|
|
// noqa: js-006 - async init pattern is safe, loadData has try/catch
|
|
|
|
const merchantPinsLog = window.LogConfig.loggers.merchantPins || window.LogConfig.createLogger('merchantPins');
|
|
|
|
function merchantLoyaltyPins() {
|
|
return loyaltyPinsList({
|
|
apiPrefix: '/merchants/loyalty',
|
|
showStoreFilter: true,
|
|
showCrud: true,
|
|
currentPage: 'pins',
|
|
});
|
|
}
|
|
|
|
if (!window.LogConfig.loggers.merchantPins) {
|
|
window.LogConfig.loggers.merchantPins = window.LogConfig.createLogger('merchantPins');
|
|
}
|
|
merchantPinsLog.info('Merchant loyalty pins module loaded');
|