instantsearch.js
Version:
InstantSearch.js is a JavaScript library for building performant and instant search experiences with Algolia.
69 lines (54 loc) • 3.72 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _hogan = _interopRequireDefault(require("hogan.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
// We add all our template helper methods to the template as lambdas. Note
// that lambdas in Mustache are supposed to accept a second argument of
// `render` to get the rendered value, not the literal `{{value}}`. But
// this is currently broken (see https://github.com/twitter/hogan.js/issues/222).
function transformHelpersToHogan() {
var helpers = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var compileOptions = arguments.length > 1 ? arguments[1] : undefined;
var data = arguments.length > 2 ? arguments[2] : undefined;
return Object.keys(helpers).reduce(function (acc, helperKey) {
return _objectSpread(_objectSpread({}, acc), {}, _defineProperty({}, helperKey, function () {
var _this = this;
return function (text) {
var render = function render(value) {
return _hogan.default.compile(value, compileOptions).render(_this);
};
return helpers[helperKey].call(data, text, render);
};
}));
}, {});
}
function renderTemplate(_ref) {
var templates = _ref.templates,
templateKey = _ref.templateKey,
compileOptions = _ref.compileOptions,
helpers = _ref.helpers,
data = _ref.data,
bindEvent = _ref.bindEvent;
var template = templates[templateKey];
if (typeof template !== 'string' && typeof template !== 'function') {
throw new Error("Template must be 'string' or 'function', was '".concat(_typeof(template), "' (key: ").concat(templateKey, ")"));
}
if (typeof template === 'function') {
return template(data, bindEvent);
}
var transformedHelpers = transformHelpersToHogan(helpers, compileOptions, data);
return _hogan.default.compile(template, compileOptions).render(_objectSpread(_objectSpread({}, data), {}, {
helpers: transformedHelpers
})).replace(/[ \n\r\t\f\xA0]+/g, function (spaces) {
return spaces.replace(/(^|\xA0+)[^\xA0]+/g, '$1 ');
}).trim();
}
var _default = renderTemplate;
exports.default = _default;
;