201 lines
9.4 KiB
JavaScript
201 lines
9.4 KiB
JavaScript
"use strict";
|
|
|
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
var _require = require("./doc-utils.js"),
|
|
wordToUtf8 = _require.wordToUtf8;
|
|
var _require2 = require("./prefix-matcher.js"),
|
|
match = _require2.match,
|
|
getValue = _require2.getValue,
|
|
getValues = _require2.getValues;
|
|
function getMatchers(modules, options) {
|
|
var matchers = [];
|
|
for (var i = 0, l = modules.length; i < l; i++) {
|
|
var _module = modules[i];
|
|
if (_module.matchers) {
|
|
var mmm = _module.matchers(options);
|
|
if (!(mmm instanceof Array)) {
|
|
throw new Error("module matcher returns a non array");
|
|
}
|
|
matchers.push.apply(matchers, _toConsumableArray(mmm));
|
|
}
|
|
}
|
|
return matchers;
|
|
}
|
|
function getMatches(matchers, placeHolderContent, options) {
|
|
var matches = [];
|
|
for (var i = 0, len = matchers.length; i < len; i++) {
|
|
var matcher = matchers[i];
|
|
var _matcher = _slicedToArray(matcher, 2),
|
|
prefix = _matcher[0],
|
|
_module2 = _matcher[1];
|
|
var properties = matcher[2] || {};
|
|
if (options.match(prefix, placeHolderContent)) {
|
|
var values = options.getValues(prefix, placeHolderContent);
|
|
if (typeof properties === "function") {
|
|
properties = properties(values);
|
|
}
|
|
if (!properties.value) {
|
|
var _values = _slicedToArray(values, 2);
|
|
properties.value = _values[1];
|
|
}
|
|
matches.push(_objectSpread({
|
|
type: "placeholder",
|
|
prefix: prefix,
|
|
module: _module2,
|
|
onMatch: properties.onMatch,
|
|
priority: properties.priority
|
|
}, properties));
|
|
}
|
|
}
|
|
return matches;
|
|
}
|
|
function moduleParse(placeHolderContent, options) {
|
|
var modules = options.modules;
|
|
var startOffset = options.startOffset;
|
|
var endLindex = options.lIndex;
|
|
var moduleParsed;
|
|
options.offset = startOffset;
|
|
options.match = match;
|
|
options.getValue = getValue;
|
|
options.getValues = getValues;
|
|
var matchers = getMatchers(modules, options);
|
|
var matches = getMatches(matchers, placeHolderContent, options);
|
|
if (matches.length > 0) {
|
|
var bestMatch = null;
|
|
matches.forEach(function (match) {
|
|
match.priority = match.priority || -match.value.length;
|
|
if (!bestMatch || match.priority > bestMatch.priority) {
|
|
bestMatch = match;
|
|
}
|
|
});
|
|
bestMatch.offset = startOffset;
|
|
delete bestMatch.priority;
|
|
bestMatch.endLindex = endLindex;
|
|
bestMatch.lIndex = endLindex;
|
|
bestMatch.raw = placeHolderContent;
|
|
if (bestMatch.onMatch) {
|
|
bestMatch.onMatch(bestMatch);
|
|
}
|
|
delete bestMatch.onMatch;
|
|
delete bestMatch.prefix;
|
|
return bestMatch;
|
|
}
|
|
for (var i = 0, l = modules.length; i < l; i++) {
|
|
var _module3 = modules[i];
|
|
moduleParsed = _module3.parse(placeHolderContent, options);
|
|
if (moduleParsed) {
|
|
moduleParsed.offset = startOffset;
|
|
moduleParsed.endLindex = endLindex;
|
|
moduleParsed.lIndex = endLindex;
|
|
moduleParsed.raw = placeHolderContent;
|
|
return moduleParsed;
|
|
}
|
|
}
|
|
return {
|
|
type: "placeholder",
|
|
value: placeHolderContent,
|
|
offset: startOffset,
|
|
endLindex: endLindex,
|
|
lIndex: endLindex
|
|
};
|
|
}
|
|
var parser = {
|
|
preparse: function preparse(parsed, modules, options) {
|
|
function preparse(parsed, options) {
|
|
return modules.forEach(function (module) {
|
|
module.preparse(parsed, options);
|
|
});
|
|
}
|
|
return {
|
|
preparsed: preparse(parsed, options)
|
|
};
|
|
},
|
|
parse: function parse(lexed, modules, options) {
|
|
var inPlaceHolder = false;
|
|
var placeHolderContent = "";
|
|
var startOffset;
|
|
var tailParts = [];
|
|
var droppedTags = options.fileTypeConfig.droppedTagsInsidePlaceholder || [];
|
|
return lexed.reduce(function lexedToParsed(parsed, token) {
|
|
if (token.type === "delimiter") {
|
|
inPlaceHolder = token.position === "start";
|
|
if (token.position === "end") {
|
|
options.parse = function (placeHolderContent) {
|
|
return moduleParse(placeHolderContent, _objectSpread(_objectSpread(_objectSpread({}, options), token), {}, {
|
|
startOffset: startOffset,
|
|
modules: modules
|
|
}));
|
|
};
|
|
parsed.push(options.parse(wordToUtf8(placeHolderContent)));
|
|
Array.prototype.push.apply(parsed, tailParts);
|
|
tailParts = [];
|
|
}
|
|
if (token.position === "start") {
|
|
tailParts = [];
|
|
startOffset = token.offset;
|
|
}
|
|
placeHolderContent = "";
|
|
return parsed;
|
|
}
|
|
if (!inPlaceHolder) {
|
|
parsed.push(token);
|
|
return parsed;
|
|
}
|
|
if (token.type !== "content" || token.position !== "insidetag") {
|
|
if (droppedTags.indexOf(token.tag) !== -1) {
|
|
return parsed;
|
|
}
|
|
tailParts.push(token);
|
|
return parsed;
|
|
}
|
|
placeHolderContent += token.value;
|
|
return parsed;
|
|
}, []);
|
|
},
|
|
postparse: function postparse(postparsed, modules, options) {
|
|
function getTraits(traitName, postparsed) {
|
|
return modules.map(function (module) {
|
|
return module.getTraits(traitName, postparsed);
|
|
});
|
|
}
|
|
var errors = [];
|
|
function _postparse(postparsed, options) {
|
|
return modules.reduce(function (postparsed, module) {
|
|
var r = module.postparse(postparsed, _objectSpread(_objectSpread({}, options), {}, {
|
|
postparse: function postparse(parsed, opts) {
|
|
return _postparse(parsed, _objectSpread(_objectSpread({}, options), opts));
|
|
},
|
|
getTraits: getTraits
|
|
}));
|
|
if (r == null) {
|
|
return postparsed;
|
|
}
|
|
if (r.errors) {
|
|
Array.prototype.push.apply(errors, r.errors);
|
|
return r.postparsed;
|
|
}
|
|
return r;
|
|
}, postparsed);
|
|
}
|
|
return {
|
|
postparsed: _postparse(postparsed, options),
|
|
errors: errors
|
|
};
|
|
}
|
|
};
|
|
module.exports = parser; |