SFRA Server-side Javascript - Source: app_storefront_base/cartridge/controllers/EinsteinCarousel.js menu

SFRA / Server-side JS / Source: app_storefront_base/cartridge/controllers/EinsteinCarousel.js

  1. 'use strict';
  2. /**
  3. * @namespace EinsteinCarousel
  4. */
  5. var server = require('server');
  6. var Template = require('dw/util/Template');
  7. var ProductMgr = require('dw/catalog/ProductMgr');
  8. var HashMap = require('dw/util/HashMap');
  9. /**
  10. * EinsteinCarousel-Load : This endpoint is used to populate the model with information needed to display a carousel with product tiles based on einstein recommendations
  11. * @name Base/EinsteinCarousel-Load
  12. * @function
  13. * @memberof EinsteinCarousel
  14. * @param {querystringparameter} - limit - a number representing the max number of recommendations that are being request for displaying in the carousel
  15. * @param {querystringparameter} - components - an array of objects that represent attributes configured in the BM for this page designer component
  16. * @param {category} - non-sensitive
  17. * @param {serverfunction} - get
  18. */
  19. server.get('Load', function (req) {
  20. var newFactory = require('*/cartridge/scripts/factories/product');
  21. var URLUtils = require('dw/web/URLUtils');
  22. var components = (JSON.parse(req.querystring.components));
  23. var limit = parseInt(req.querystring.limit, 10);
  24. var successfulrenderings = 0;
  25. components.forEach(function (component) {
  26. if (limit <= successfulrenderings) {
  27. return;
  28. }
  29. var model = new HashMap();
  30. model.index = successfulrenderings;
  31. if (component.model.type === 'product') {
  32. var product = ProductMgr.getProduct(component.model.id);
  33. if (!product || !product.online) {
  34. return;
  35. }
  36. model.product = newFactory.get({ pid: component.model.id, pview: 'tile' });
  37. model.urls = {
  38. product: URLUtils.url('Product-Show', 'pid', component.model.id).relative().toString()
  39. };
  40. model.display = {
  41. swatches: component.swatches,
  42. ratings: component.displayratings,
  43. xs: component.classxs,
  44. sm: component.classsm,
  45. md: component.classmd
  46. };
  47. if (successfulrenderings === 0) {
  48. model.additionalClass = 'active';
  49. }
  50. }
  51. var template = new Template('experience/components/' + component.template);
  52. var renderedTemplate = template.render(model);
  53. response.writer.print(renderedTemplate.text); // eslint-disable-line no-undef
  54. successfulrenderings++;
  55. });
  56. });
  57. module.exports = server.exports();