You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5647 lines
288 KiB

/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
3 years ago
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
var __export = (target, all) => {
__markAsModule(target);
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __reExport = (target, module2, desc) => {
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
for (let key of __getOwnPropNames(module2))
if (!__hasOwnProp.call(target, key) && key !== "default")
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
}
return target;
};
var __toModule = (module2) => {
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
};
2 years ago
var __toBinary = /* @__PURE__ */ (() => {
var table = new Uint8Array(128);
for (var i = 0; i < 64; i++)
table[i < 26 ? i + 65 : i < 52 ? i + 71 : i < 62 ? i - 4 : i * 4 - 205] = i;
return (base64) => {
var n = base64.length, bytes = new Uint8Array((n - (base64[n - 1] == "=") - (base64[n - 2] == "=")) * 3 / 4 | 0);
for (var i2 = 0, j = 0; i2 < n; ) {
var c0 = table[base64.charCodeAt(i2++)], c1 = table[base64.charCodeAt(i2++)];
var c2 = table[base64.charCodeAt(i2++)], c3 = table[base64.charCodeAt(i2++)];
bytes[j++] = c0 << 2 | c1 >> 4;
bytes[j++] = c1 << 4 | c2 >> 2;
bytes[j++] = c2 << 6 | c3;
}
return bytes;
};
})();
3 years ago
// src/main.ts
__export(exports, {
default: () => TemplaterPlugin
});
1 year ago
var import_obsidian17 = __toModule(require("obsidian"));
3 years ago
// src/settings/Settings.ts
var import_obsidian6 = __toModule(require("obsidian"));
3 years ago
// src/utils/Log.ts
var import_obsidian = __toModule(require("obsidian"));
3 years ago
function log_error(e) {
const notice = new import_obsidian.Notice("", 8e3);
if (e instanceof TemplaterError && e.console_msg) {
3 years ago
notice.noticeEl.innerHTML = `<b>Templater Error</b>:<br/>${e.message}<br/>Check console for more information`;
console.error(`Templater Error:`, e.message, "\n", e.console_msg);
} else {
notice.noticeEl.innerHTML = `<b>Templater Error</b>:<br/>${e.message}`;
}
3 years ago
}
// src/utils/Error.ts
var TemplaterError = class extends Error {
constructor(msg, console_msg) {
super(msg);
this.console_msg = console_msg;
this.name = this.constructor.name;
12 months ago
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
}
};
2 years ago
async function errorWrapper(fn2, msg) {
try {
return await fn2();
} catch (e) {
if (!(e instanceof TemplaterError)) {
log_error(new TemplaterError(msg, e.message));
} else {
log_error(e);
3 years ago
}
2 years ago
return null;
}
}
function errorWrapperSync(fn2, msg) {
try {
return fn2();
} catch (e) {
log_error(new TemplaterError(msg, e.message));
return null;
}
3 years ago
}
// src/settings/suggesters/FolderSuggester.ts
var import_obsidian3 = __toModule(require("obsidian"));
// src/settings/suggesters/suggest.ts
var import_obsidian2 = __toModule(require("obsidian"));
// node_modules/@popperjs/core/lib/enums.js
var top = "top";
var bottom = "bottom";
var right = "right";
var left = "left";
var auto = "auto";
3 years ago
var basePlacements = [top, bottom, right, left];
var start = "start";
var end = "end";
var clippingParents = "clippingParents";
var viewport = "viewport";
var popper = "popper";
var reference = "reference";
var variationPlacements = /* @__PURE__ */ basePlacements.reduce(function(acc, placement) {
3 years ago
return acc.concat([placement + "-" + start, placement + "-" + end]);
}, []);
var placements = /* @__PURE__ */ [].concat(basePlacements, [auto]).reduce(function(acc, placement) {
3 years ago
return acc.concat([placement, placement + "-" + start, placement + "-" + end]);
}, []);
var beforeRead = "beforeRead";
var read = "read";
var afterRead = "afterRead";
var beforeMain = "beforeMain";
var main = "main";
var afterMain = "afterMain";
var beforeWrite = "beforeWrite";
var write = "write";
var afterWrite = "afterWrite";
3 years ago
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];
// node_modules/@popperjs/core/lib/dom-utils/getNodeName.js
3 years ago
function getNodeName(element) {
return element ? (element.nodeName || "").toLowerCase() : null;
3 years ago
}
// node_modules/@popperjs/core/lib/dom-utils/getWindow.js
3 years ago
function getWindow(node) {
if (node == null) {
return window;
}
if (node.toString() !== "[object Window]") {
3 years ago
var ownerDocument = node.ownerDocument;
return ownerDocument ? ownerDocument.defaultView || window : window;
}
return node;
}
// node_modules/@popperjs/core/lib/dom-utils/instanceOf.js
3 years ago
function isElement(node) {
var OwnElement = getWindow(node).Element;
return node instanceof OwnElement || node instanceof Element;
}
function isHTMLElement(node) {
var OwnElement = getWindow(node).HTMLElement;
return node instanceof OwnElement || node instanceof HTMLElement;
}
function isShadowRoot(node) {
if (typeof ShadowRoot === "undefined") {
3 years ago
return false;
}
var OwnElement = getWindow(node).ShadowRoot;
return node instanceof OwnElement || node instanceof ShadowRoot;
}
// node_modules/@popperjs/core/lib/modifiers/applyStyles.js
3 years ago
function applyStyles(_ref) {
var state = _ref.state;
Object.keys(state.elements).forEach(function(name) {
3 years ago
var style = state.styles[name] || {};
var attributes = state.attributes[name] || {};
var element = state.elements[name];
3 years ago
if (!isHTMLElement(element) || !getNodeName(element)) {
return;
}
3 years ago
Object.assign(element.style, style);
Object.keys(attributes).forEach(function(name2) {
var value = attributes[name2];
3 years ago
if (value === false) {
element.removeAttribute(name2);
3 years ago
} else {
element.setAttribute(name2, value === true ? "" : value);
3 years ago
}
});
});
}
function effect(_ref2) {
3 years ago
var state = _ref2.state;
var initialStyles = {
popper: {
position: state.options.strategy,
left: "0",
top: "0",
margin: "0"
3 years ago
},
arrow: {
position: "absolute"
3 years ago
},
reference: {}
};
Object.assign(state.elements.popper.style, initialStyles.popper);
state.styles = initialStyles;
if (state.elements.arrow) {
Object.assign(state.elements.arrow.style, initialStyles.arrow);
}
return function() {
Object.keys(state.elements).forEach(function(name) {
3 years ago
var element = state.elements[name];
var attributes = state.attributes[name] || {};
var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]);
var style = styleProperties.reduce(function(style2, property) {
style2[property] = "";
return style2;
}, {});
3 years ago
if (!isHTMLElement(element) || !getNodeName(element)) {
return;
}
Object.assign(element.style, style);
Object.keys(attributes).forEach(function(attribute) {
3 years ago
element.removeAttribute(attribute);
});
});
};
}
var applyStyles_default = {
name: "applyStyles",
3 years ago
enabled: true,
phase: "write",
3 years ago
fn: applyStyles,
effect,
requires: ["computeStyles"]
3 years ago
};
// node_modules/@popperjs/core/lib/utils/getBasePlacement.js
3 years ago
function getBasePlacement(placement) {
return placement.split("-")[0];
3 years ago
}
// node_modules/@popperjs/core/lib/utils/math.js
3 years ago
var max = Math.max;
var min = Math.min;
var round = Math.round;
2 years ago
// node_modules/@popperjs/core/lib/utils/userAgent.js
function getUAString() {
var uaData = navigator.userAgentData;
1 year ago
if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) {
2 years ago
return uaData.brands.map(function(item) {
return item.brand + "/" + item.version;
}).join(" ");
}
return navigator.userAgent;
}
// node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js
function isLayoutViewport() {
return !/^((?!chrome|android).)*safari/i.test(getUAString());
}
// node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js
2 years ago
function getBoundingClientRect(element, includeScale, isFixedStrategy) {
3 years ago
if (includeScale === void 0) {
includeScale = false;
}
2 years ago
if (isFixedStrategy === void 0) {
isFixedStrategy = false;
}
var clientRect = element.getBoundingClientRect();
3 years ago
var scaleX = 1;
3 years ago
var scaleY = 1;
2 years ago
if (includeScale && isHTMLElement(element)) {
scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1;
scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1;
}
var _ref = isElement(element) ? getWindow(element) : window, visualViewport = _ref.visualViewport;
var addVisualOffsets = !isLayoutViewport() && isFixedStrategy;
var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;
var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;
var width = clientRect.width / scaleX;
var height = clientRect.height / scaleY;
3 years ago
return {
2 years ago
width,
height,
top: y,
right: x + width,
bottom: y + height,
left: x,
x,
y
3 years ago
};
}
// node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js
3 years ago
function getLayoutRect(element) {
var clientRect = getBoundingClientRect(element);
3 years ago
var width = element.offsetWidth;
var height = element.offsetHeight;
if (Math.abs(clientRect.width - width) <= 1) {
width = clientRect.width;
}
if (Math.abs(clientRect.height - height) <= 1) {
height = clientRect.height;
}
return {
x: element.offsetLeft,
y: element.offsetTop,
width,
height
3 years ago
};
}
// node_modules/@popperjs/core/lib/dom-utils/contains.js
3 years ago
function contains(parent, child) {
var rootNode = child.getRootNode && child.getRootNode();
3 years ago
if (parent.contains(child)) {
return true;
} else if (rootNode && isShadowRoot(rootNode)) {
var next = child;
do {
if (next && parent.isSameNode(next)) {
return true;
}
next = next.parentNode || next.host;
} while (next);
}
3 years ago
return false;
}
// node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js
3 years ago
function getComputedStyle(element) {
return getWindow(element).getComputedStyle(element);
}
// node_modules/@popperjs/core/lib/dom-utils/isTableElement.js
3 years ago
function isTableElement(element) {
return ["table", "td", "th"].indexOf(getNodeName(element)) >= 0;
3 years ago
}
// node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js
3 years ago
function getDocumentElement(element) {
return ((isElement(element) ? element.ownerDocument : element.document) || window.document).documentElement;
3 years ago
}
// node_modules/@popperjs/core/lib/dom-utils/getParentNode.js
3 years ago
function getParentNode(element) {
if (getNodeName(element) === "html") {
3 years ago
return element;
}
return element.assignedSlot || element.parentNode || (isShadowRoot(element) ? element.host : null) || getDocumentElement(element);
3 years ago
}
// node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js
3 years ago
function getTrueOffsetParent(element) {
if (!isHTMLElement(element) || getComputedStyle(element).position === "fixed") {
3 years ago
return null;
}
return element.offsetParent;
}
3 years ago
function getContainingBlock(element) {
2 years ago
var isFirefox = /firefox/i.test(getUAString());
var isIE = /Trident/i.test(getUAString());
3 years ago
if (isIE && isHTMLElement(element)) {
var elementCss = getComputedStyle(element);
if (elementCss.position === "fixed") {
3 years ago
return null;
}
}
var currentNode = getParentNode(element);
3 years ago
if (isShadowRoot(currentNode)) {
currentNode = currentNode.host;
}
while (isHTMLElement(currentNode) && ["html", "body"].indexOf(getNodeName(currentNode)) < 0) {
var css = getComputedStyle(currentNode);
if (css.transform !== "none" || css.perspective !== "none" || css.contain === "paint" || ["transform", "perspective"].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === "filter" || isFirefox && css.filter && css.filter !== "none") {
3 years ago
return currentNode;
} else {
currentNode = currentNode.parentNode;
}
}
return null;
}
3 years ago
function getOffsetParent(element) {
var window2 = getWindow(element);
3 years ago
var offsetParent = getTrueOffsetParent(element);
while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === "static") {
3 years ago
offsetParent = getTrueOffsetParent(offsetParent);
}
if (offsetParent && (getNodeName(offsetParent) === "html" || getNodeName(offsetParent) === "body" && getComputedStyle(offsetParent).position === "static")) {
return window2;
3 years ago
}
return offsetParent || getContainingBlock(element) || window2;
3 years ago
}
// node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js
3 years ago
function getMainAxisFromPlacement(placement) {
return ["top", "bottom"].indexOf(placement) >= 0 ? "x" : "y";
3 years ago
}
// node_modules/@popperjs/core/lib/utils/within.js
function within(min2, value, max2) {
return max(min2, min(value, max2));
3 years ago
}
function withinMaxClamp(min2, value, max2) {
var v = within(min2, value, max2);
return v > max2 ? max2 : v;
3 years ago
}
3 years ago
// node_modules/@popperjs/core/lib/utils/getFreshSideObject.js
3 years ago
function getFreshSideObject() {
return {
top: 0,
right: 0,
bottom: 0,
left: 0
};
}
// node_modules/@popperjs/core/lib/utils/mergePaddingObject.js
3 years ago
function mergePaddingObject(paddingObject) {
return Object.assign({}, getFreshSideObject(), paddingObject);
}
// node_modules/@popperjs/core/lib/utils/expandToHashMap.js
3 years ago
function expandToHashMap(value, keys) {
return keys.reduce(function(hashMap, key) {
3 years ago
hashMap[key] = value;
return hashMap;
}, {});
}
// node_modules/@popperjs/core/lib/modifiers/arrow.js
var toPaddingObject = function toPaddingObject2(padding, state) {
padding = typeof padding === "function" ? padding(Object.assign({}, state.rects, {
3 years ago
placement: state.placement
})) : padding;
return mergePaddingObject(typeof padding !== "number" ? padding : expandToHashMap(padding, basePlacements));
3 years ago
};
function arrow(_ref) {
var _state$modifiersData$;
var state = _ref.state, name = _ref.name, options = _ref.options;
3 years ago
var arrowElement = state.elements.arrow;
var popperOffsets2 = state.modifiersData.popperOffsets;
3 years ago
var basePlacement = getBasePlacement(state.placement);
var axis = getMainAxisFromPlacement(basePlacement);
var isVertical = [left, right].indexOf(basePlacement) >= 0;
var len = isVertical ? "height" : "width";
if (!arrowElement || !popperOffsets2) {
3 years ago
return;
}
var paddingObject = toPaddingObject(options.padding, state);
var arrowRect = getLayoutRect(arrowElement);
var minProp = axis === "y" ? top : left;
var maxProp = axis === "y" ? bottom : right;
var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets2[axis] - state.rects.popper[len];
var startDiff = popperOffsets2[axis] - state.rects.reference[axis];
3 years ago
var arrowOffsetParent = getOffsetParent(arrowElement);
var clientSize = arrowOffsetParent ? axis === "y" ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;
var centerToReference = endDiff / 2 - startDiff / 2;
var min2 = paddingObject[minProp];
var max2 = clientSize - arrowRect[len] - paddingObject[maxProp];
3 years ago
var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;
var offset2 = within(min2, center, max2);
3 years ago
var axisProp = axis;
state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset2, _state$modifiersData$.centerOffset = offset2 - center, _state$modifiersData$);
3 years ago
}
function effect2(_ref2) {
var state = _ref2.state, options = _ref2.options;
var _options$element = options.element, arrowElement = _options$element === void 0 ? "[data-popper-arrow]" : _options$element;
3 years ago
if (arrowElement == null) {
return;
}
if (typeof arrowElement === "string") {
3 years ago
arrowElement = state.elements.popper.querySelector(arrowElement);
if (!arrowElement) {
return;
}
}
if (!contains(state.elements.popper, arrowElement)) {
return;
}
state.elements.arrow = arrowElement;
}
var arrow_default = {
name: "arrow",
3 years ago
enabled: true,
phase: "main",
3 years ago
fn: arrow,
effect: effect2,
requires: ["popperOffsets"],
requiresIfExists: ["preventOverflow"]
3 years ago
};
// node_modules/@popperjs/core/lib/utils/getVariation.js
3 years ago
function getVariation(placement) {
return placement.split("-")[1];
3 years ago
}
// node_modules/@popperjs/core/lib/modifiers/computeStyles.js
3 years ago
var unsetSides = {
top: "auto",
right: "auto",
bottom: "auto",
left: "auto"
};
1 year ago
function roundOffsetsByDPR(_ref, win) {
var x = _ref.x, y = _ref.y;
3 years ago
var dpr = win.devicePixelRatio || 1;
return {
3 years ago
x: round(x * dpr) / dpr || 0,
y: round(y * dpr) / dpr || 0
3 years ago
};
}
function mapToStyles(_ref2) {
var _Object$assign2;
var popper2 = _ref2.popper, popperRect = _ref2.popperRect, placement = _ref2.placement, variation = _ref2.variation, offsets = _ref2.offsets, position = _ref2.position, gpuAcceleration = _ref2.gpuAcceleration, adaptive = _ref2.adaptive, roundOffsets = _ref2.roundOffsets, isFixed = _ref2.isFixed;
var _offsets$x = offsets.x, x = _offsets$x === void 0 ? 0 : _offsets$x, _offsets$y = offsets.y, y = _offsets$y === void 0 ? 0 : _offsets$y;
var _ref3 = typeof roundOffsets === "function" ? roundOffsets({
x,
y
3 years ago
}) : {
x,
y
3 years ago
};
x = _ref3.x;
y = _ref3.y;
var hasX = offsets.hasOwnProperty("x");
var hasY = offsets.hasOwnProperty("y");
3 years ago
var sideX = left;
var sideY = top;
var win = window;
if (adaptive) {
var offsetParent = getOffsetParent(popper2);
var heightProp = "clientHeight";
var widthProp = "clientWidth";
if (offsetParent === getWindow(popper2)) {
offsetParent = getDocumentElement(popper2);
if (getComputedStyle(offsetParent).position !== "static" && position === "absolute") {
heightProp = "scrollHeight";
widthProp = "scrollWidth";
3 years ago
}
}
3 years ago
offsetParent = offsetParent;
if (placement === top || (placement === left || placement === right) && variation === end) {
3 years ago
sideY = bottom;
3 years ago
var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : offsetParent[heightProp];
3 years ago
y -= offsetY - popperRect.height;
3 years ago
y *= gpuAcceleration ? 1 : -1;
}
if (placement === left || (placement === top || placement === bottom) && variation === end) {
3 years ago
sideX = right;
3 years ago
var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : offsetParent[widthProp];
3 years ago
x -= offsetX - popperRect.width;
3 years ago
x *= gpuAcceleration ? 1 : -1;
}
}
var commonStyles = Object.assign({
position
3 years ago
}, adaptive && unsetSides);
3 years ago
var _ref4 = roundOffsets === true ? roundOffsetsByDPR({
x,
y
1 year ago
}, getWindow(popper2)) : {
x,
y
3 years ago
};
x = _ref4.x;
y = _ref4.y;
3 years ago
if (gpuAcceleration) {
var _Object$assign;
return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? "0" : "", _Object$assign[sideX] = hasX ? "0" : "", _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign));
3 years ago
}
return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : "", _Object$assign2[sideX] = hasX ? x + "px" : "", _Object$assign2.transform = "", _Object$assign2));
3 years ago
}
3 years ago
function computeStyles(_ref5) {
var state = _ref5.state, options = _ref5.options;
var _options$gpuAccelerat = options.gpuAcceleration, gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, _options$adaptive = options.adaptive, adaptive = _options$adaptive === void 0 ? true : _options$adaptive, _options$roundOffsets = options.roundOffsets, roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;
3 years ago
var commonStyles = {
placement: getBasePlacement(state.placement),
variation: getVariation(state.placement),
popper: state.elements.popper,
popperRect: state.rects.popper,
gpuAcceleration,
isFixed: state.options.strategy === "fixed"
3 years ago
};
if (state.modifiersData.popperOffsets != null) {
state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {
offsets: state.modifiersData.popperOffsets,
position: state.options.strategy,
adaptive,
roundOffsets
3 years ago
})));
}
if (state.modifiersData.arrow != null) {
state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {
offsets: state.modifiersData.arrow,
position: "absolute",
3 years ago
adaptive: false,
roundOffsets
3 years ago
})));
}
state.attributes.popper = Object.assign({}, state.attributes.popper, {
"data-popper-placement": state.placement
3 years ago
});
}
var computeStyles_default = {
name: "computeStyles",
3 years ago
enabled: true,
phase: "beforeWrite",
3 years ago
fn: computeStyles,
data: {}
};
// node_modules/@popperjs/core/lib/modifiers/eventListeners.js
3 years ago
var passive = {
passive: true
};
function effect3(_ref) {
var state = _ref.state, instance = _ref.instance, options = _ref.options;
var _options$scroll = options.scroll, scroll = _options$scroll === void 0 ? true : _options$scroll, _options$resize = options.resize, resize = _options$resize === void 0 ? true : _options$resize;
var window2 = getWindow(state.elements.popper);
3 years ago
var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);
if (scroll) {
scrollParents.forEach(function(scrollParent) {
scrollParent.addEventListener("scroll", instance.update, passive);
3 years ago
});
}
if (resize) {
window2.addEventListener("resize", instance.update, passive);
3 years ago
}
return function() {
3 years ago
if (scroll) {
scrollParents.forEach(function(scrollParent) {
scrollParent.removeEventListener("scroll", instance.update, passive);
3 years ago
});
}
if (resize) {
window2.removeEventListener("resize", instance.update, passive);
3 years ago
}
};
}
var eventListeners_default = {
name: "eventListeners",
3 years ago
enabled: true,
phase: "write",
fn: function fn() {
},
effect: effect3,
3 years ago
data: {}
};
// node_modules/@popperjs/core/lib/utils/getOppositePlacement.js
var hash = {
left: "right",
right: "left",
bottom: "top",
top: "bottom"
3 years ago
};
function getOppositePlacement(placement) {
return placement.replace(/left|right|bottom|top/g, function(matched) {
return hash[matched];
3 years ago
});
}
// node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js
var hash2 = {
start: "end",
end: "start"
3 years ago
};
function getOppositeVariationPlacement(placement) {
return placement.replace(/start|end/g, function(matched) {
return hash2[matched];
3 years ago
});
}
// node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js
3 years ago
function getWindowScroll(node) {
var win = getWindow(node);
var scrollLeft = win.pageXOffset;
var scrollTop = win.pageYOffset;
return {
scrollLeft,
scrollTop
3 years ago
};
}
// node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js
3 years ago
function getWindowScrollBarX(element) {
return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;
}
// node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js
2 years ago
function getViewportRect(element, strategy) {
3 years ago
var win = getWindow(element);
var html = getDocumentElement(element);
var visualViewport = win.visualViewport;
var width = html.clientWidth;
var height = html.clientHeight;
var x = 0;
var y = 0;
3 years ago
if (visualViewport) {
width = visualViewport.width;
height = visualViewport.height;
2 years ago
var layoutViewport = isLayoutViewport();
if (layoutViewport || !layoutViewport && strategy === "fixed") {
3 years ago
x = visualViewport.offsetLeft;
y = visualViewport.offsetTop;
}
}
return {
width,
height,
3 years ago
x: x + getWindowScrollBarX(element),
y
3 years ago
};
}
// node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js
3 years ago
function getDocumentRect(element) {
var _element$ownerDocumen;
var html = getDocumentElement(element);
var winScroll = getWindowScroll(element);
var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;
var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);
var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);
var x = -winScroll.scrollLeft + getWindowScrollBarX(element);
var y = -winScroll.scrollTop;
if (getComputedStyle(body || html).direction === "rtl") {
3 years ago
x += max(html.clientWidth, body ? body.clientWidth : 0) - width;
}
return {
width,
height,
x,
y
3 years ago
};
}
// node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js
3 years ago
function isScrollParent(element) {
var _getComputedStyle = getComputedStyle(element), overflow = _getComputedStyle.overflow, overflowX = _getComputedStyle.overflowX, overflowY = _getComputedStyle.overflowY;
3 years ago
return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);
}
// node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js
3 years ago
function getScrollParent(node) {
if (["html", "body", "#document"].indexOf(getNodeName(node)) >= 0) {
3 years ago
return node.ownerDocument.body;
}
if (isHTMLElement(node) && isScrollParent(node)) {
return node;
}
return getScrollParent(getParentNode(node));
}
// node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js
3 years ago
function listScrollParents(element, list) {
var _element$ownerDocumen;
if (list === void 0) {
list = [];
}
var scrollParent = getScrollParent(element);
var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);
var win = getWindow(scrollParent);
var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;
var updatedList = list.concat(target);
return isBody ? updatedList : updatedList.concat(listScrollParents(getParentNode(target)));
3 years ago
}
// node_modules/@popperjs/core/lib/utils/rectToClientRect.js
3 years ago
function rectToClientRect(rect) {
return Object.assign({}, rect, {
left: rect.x,
top: rect.y,
right: rect.x + rect.width,
bottom: rect.y + rect.height
});
}
// node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js
2 years ago
function getInnerBoundingClientRect(element, strategy) {
var rect = getBoundingClientRect(element, false, strategy === "fixed");
3 years ago
rect.top = rect.top + element.clientTop;
rect.left = rect.left + element.clientLeft;
rect.bottom = rect.top + element.clientHeight;
rect.right = rect.left + element.clientWidth;
rect.width = element.clientWidth;
rect.height = element.clientHeight;
rect.x = rect.left;
rect.y = rect.top;
return rect;
}
2 years ago
function getClientRectFromMixedType(element, clippingParent, strategy) {
return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element)));
}
3 years ago
function getClippingParents(element) {
var clippingParents2 = listScrollParents(getParentNode(element));
var canEscapeClipping = ["absolute", "fixed"].indexOf(getComputedStyle(element).position) >= 0;
3 years ago
var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;
if (!isElement(clipperElement)) {
return [];
}
return clippingParents2.filter(function(clippingParent) {
return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== "body";
3 years ago
});
}
2 years ago
function getClippingRect(element, boundary, rootBoundary, strategy) {
var mainClippingParents = boundary === "clippingParents" ? getClippingParents(element) : [].concat(boundary);
var clippingParents2 = [].concat(mainClippingParents, [rootBoundary]);
var firstClippingParent = clippingParents2[0];
var clippingRect = clippingParents2.reduce(function(accRect, clippingParent) {
2 years ago
var rect = getClientRectFromMixedType(element, clippingParent, strategy);
3 years ago
accRect.top = max(rect.top, accRect.top);
accRect.right = min(rect.right, accRect.right);
accRect.bottom = min(rect.bottom, accRect.bottom);
accRect.left = max(rect.left, accRect.left);
return accRect;
2 years ago
}, getClientRectFromMixedType(element, firstClippingParent, strategy));
3 years ago
clippingRect.width = clippingRect.right - clippingRect.left;
clippingRect.height = clippingRect.bottom - clippingRect.top;
clippingRect.x = clippingRect.left;
clippingRect.y = clippingRect.top;
return clippingRect;
}
// node_modules/@popperjs/core/lib/utils/computeOffsets.js
3 years ago
function computeOffsets(_ref) {
var reference2 = _ref.reference, element = _ref.element, placement = _ref.placement;
3 years ago
var basePlacement = placement ? getBasePlacement(placement) : null;
var variation = placement ? getVariation(placement) : null;
var commonX = reference2.x + reference2.width / 2 - element.width / 2;
var commonY = reference2.y + reference2.height / 2 - element.height / 2;
3 years ago
var offsets;
switch (basePlacement) {
case top:
offsets = {
x: commonX,
y: reference2.y - element.height
3 years ago
};
break;
case bottom:
offsets = {
x: commonX,
y: reference2.y + reference2.height
3 years ago
};
break;
case right:
offsets = {
x: reference2.x + reference2.width,
3 years ago
y: commonY
};
break;
case left:
offsets = {
x: reference2.x - element.width,
3 years ago
y: commonY
};
break;
default:
offsets = {
x: reference2.x,
y: reference2.y
3 years ago
};
}
var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;
if (mainAxis != null) {
var len = mainAxis === "y" ? "height" : "width";
3 years ago
switch (variation) {
case start:
offsets[mainAxis] = offsets[mainAxis] - (reference2[len] / 2 - element[len] / 2);
3 years ago
break;
case end:
offsets[mainAxis] = offsets[mainAxis] + (reference2[len] / 2 - element[len] / 2);
3 years ago
break;
default:
3 years ago
}
}
return offsets;
}
// node_modules/@popperjs/core/lib/utils/detectOverflow.js
3 years ago
function detectOverflow(state, options) {
if (options === void 0) {
options = {};
}
2 years ago
var _options = options, _options$placement = _options.placement, placement = _options$placement === void 0 ? state.placement : _options$placement, _options$strategy = _options.strategy, strategy = _options$strategy === void 0 ? state.strategy : _options$strategy, _options$boundary = _options.boundary, boundary = _options$boundary === void 0 ? clippingParents : _options$boundary, _options$rootBoundary = _options.rootBoundary, rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary, _options$elementConte = _options.elementContext, elementContext = _options$elementConte === void 0 ? popper : _options$elementConte, _options$altBoundary = _options.altBoundary, altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, _options$padding = _options.padding, padding = _options$padding === void 0 ? 0 : _options$padding;
var paddingObject = mergePaddingObject(typeof padding !== "number" ? padding : expandToHashMap(padding, basePlacements));
3 years ago
var altContext = elementContext === popper ? reference : popper;
var popperRect = state.rects.popper;
var element = state.elements[altBoundary ? altContext : elementContext];
2 years ago
var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy);
3 years ago
var referenceClientRect = getBoundingClientRect(state.elements.reference);
var popperOffsets2 = computeOffsets({
3 years ago
reference: referenceClientRect,
element: popperRect,
strategy: "absolute",
placement
3 years ago
});
var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets2));
var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect;
3 years ago
var overflowOffsets = {
top: clippingClientRect.top - elementClientRect.top + paddingObject.top,
bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,
left: clippingClientRect.left - elementClientRect.left + paddingObject.left,
right: elementClientRect.right - clippingClientRect.right + paddingObject.right
};
var offsetData = state.modifiersData.offset;
3 years ago
if (elementContext === popper && offsetData) {
var offset2 = offsetData[placement];
Object.keys(overflowOffsets).forEach(function(key) {
3 years ago
var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;
var axis = [top, bottom].indexOf(key) >= 0 ? "y" : "x";
overflowOffsets[key] += offset2[axis] * multiply;
3 years ago
});
}
return overflowOffsets;
}
// node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js
3 years ago
function computeAutoPlacement(state, options) {
if (options === void 0) {
options = {};
}
var _options = options, placement = _options.placement, boundary = _options.boundary, rootBoundary = _options.rootBoundary, padding = _options.padding, flipVariations = _options.flipVariations, _options$allowedAutoP = _options.allowedAutoPlacements, allowedAutoPlacements = _options$allowedAutoP === void 0 ? placements : _options$allowedAutoP;
3 years ago
var variation = getVariation(placement);
var placements2 = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function(placement2) {
return getVariation(placement2) === variation;
3 years ago
}) : basePlacements;
var allowedPlacements = placements2.filter(function(placement2) {
return allowedAutoPlacements.indexOf(placement2) >= 0;
3 years ago
});
if (allowedPlacements.length === 0) {
allowedPlacements = placements2;
}
var overflows = allowedPlacements.reduce(function(acc, placement2) {
acc[placement2] = detectOverflow(state, {
placement: placement2,
boundary,
rootBoundary,
padding
})[getBasePlacement(placement2)];
3 years ago
return acc;
}, {});
return Object.keys(overflows).sort(function(a, b) {
3 years ago
return overflows[a] - overflows[b];
});
}
// node_modules/@popperjs/core/lib/modifiers/flip.js
3 years ago
function getExpandedFallbackPlacements(placement) {
if (getBasePlacement(placement) === auto) {
return [];
}
var oppositePlacement = getOppositePlacement(placement);
return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];
}
function flip(_ref) {
var state = _ref.state, options = _ref.options, name = _ref.name;
3 years ago
if (state.modifiersData[name]._skip) {
return;
}
var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, specifiedFallbackPlacements = options.fallbackPlacements, padding = options.padding, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, _options$flipVariatio = options.flipVariations, flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, allowedAutoPlacements = options.allowedAutoPlacements;
3 years ago
var preferredPlacement = state.options.placement;
var basePlacement = getBasePlacement(preferredPlacement);
var isBasePlacement = basePlacement === preferredPlacement;
var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));
var placements2 = [preferredPlacement].concat(fallbackPlacements).reduce(function(acc, placement2) {
return acc.concat(getBasePlacement(placement2) === auto ? computeAutoPlacement(state, {
placement: placement2,
boundary,
rootBoundary,
padding,
flipVariations,
allowedAutoPlacements
}) : placement2);
3 years ago
}, []);
var referenceRect = state.rects.reference;
var popperRect = state.rects.popper;
var checksMap = new Map();
var makeFallbackChecks = true;
var firstFittingPlacement = placements2[0];
for (var i = 0; i < placements2.length; i++) {
var placement = placements2[i];
3 years ago
var _basePlacement = getBasePlacement(placement);
var isStartVariation = getVariation(placement) === start;
var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;
var len = isVertical ? "width" : "height";
3 years ago
var overflow = detectOverflow(state, {
placement,
boundary,
rootBoundary,
altBoundary,
padding
3 years ago
});
var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;
if (referenceRect[len] > popperRect[len]) {
mainVariationSide = getOppositePlacement(mainVariationSide);
}
var altVariationSide = getOppositePlacement(mainVariationSide);
var checks = [];
if (checkMainAxis) {
checks.push(overflow[_basePlacement] <= 0);
}
if (checkAltAxis) {
checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);
}
if (checks.every(function(check) {
3 years ago
return check;
})) {
firstFittingPlacement = placement;
makeFallbackChecks = false;
break;
}
checksMap.set(placement, checks);
}
if (makeFallbackChecks) {
var numberOfChecks = flipVariations ? 3 : 1;
var _loop = function _loop2(_i2) {
var fittingPlacement = placements2.find(function(placement2) {
var checks2 = checksMap.get(placement2);
if (checks2) {
return checks2.slice(0, _i2).every(function(check) {
3 years ago
return check;
});
}
});
if (fittingPlacement) {
firstFittingPlacement = fittingPlacement;
return "break";
}
};
for (var _i = numberOfChecks; _i > 0; _i--) {
var _ret = _loop(_i);
if (_ret === "break")
break;
3 years ago
}
}
if (state.placement !== firstFittingPlacement) {
state.modifiersData[name]._skip = true;
state.placement = firstFittingPlacement;
state.reset = true;
}
}
var flip_default = {
name: "flip",
3 years ago
enabled: true,
phase: "main",
3 years ago
fn: flip,
requiresIfExists: ["offset"],
3 years ago
data: {
_skip: false
}
};
// node_modules/@popperjs/core/lib/modifiers/hide.js
3 years ago
function getSideOffsets(overflow, rect, preventedOffsets) {
if (preventedOffsets === void 0) {
preventedOffsets = {
x: 0,
y: 0
};
}
return {
top: overflow.top - rect.height - preventedOffsets.y,
right: overflow.right - rect.width + preventedOffsets.x,
bottom: overflow.bottom - rect.height + preventedOffsets.y,
left: overflow.left - rect.width - preventedOffsets.x
};
}
function isAnySideFullyClipped(overflow) {
return [top, right, bottom, left].some(function(side) {
3 years ago
return overflow[side] >= 0;
});
}
function hide(_ref) {
var state = _ref.state, name = _ref.name;
3 years ago
var referenceRect = state.rects.reference;
var popperRect = state.rects.popper;
var preventedOffsets = state.modifiersData.preventOverflow;
var referenceOverflow = detectOverflow(state, {
elementContext: "reference"
3 years ago
});
var popperAltOverflow = detectOverflow(state, {
altBoundary: true
});
var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);
var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);
var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);
var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);
state.modifiersData[name] = {
referenceClippingOffsets,
popperEscapeOffsets,
isReferenceHidden,
hasPopperEscaped
3 years ago
};
state.attributes.popper = Object.assign({}, state.attributes.popper, {
"data-popper-reference-hidden": isReferenceHidden,
"data-popper-escaped": hasPopperEscaped
3 years ago
});
}
var hide_default = {
name: "hide",
3 years ago
enabled: true,
phase: "main",
requiresIfExists: ["preventOverflow"],
3 years ago
fn: hide
};
// node_modules/@popperjs/core/lib/modifiers/offset.js
function distanceAndSkiddingToXY(placement, rects, offset2) {
3 years ago
var basePlacement = getBasePlacement(placement);
var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;
var _ref = typeof offset2 === "function" ? offset2(Object.assign({}, rects, {
placement
})) : offset2, skidding = _ref[0], distance = _ref[1];
3 years ago
skidding = skidding || 0;
distance = (distance || 0) * invertDistance;
return [left, right].indexOf(basePlacement) >= 0 ? {
x: distance,
y: skidding
} : {
x: skidding,
y: distance
};
}
function offset(_ref2) {
var state = _ref2.state, options = _ref2.options, name = _ref2.name;
var _options$offset = options.offset, offset2 = _options$offset === void 0 ? [0, 0] : _options$offset;
var data = placements.reduce(function(acc, placement) {
acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset2);
3 years ago
return acc;
}, {});
var _data$state$placement = data[state.placement], x = _data$state$placement.x, y = _data$state$placement.y;
3 years ago
if (state.modifiersData.popperOffsets != null) {
state.modifiersData.popperOffsets.x += x;
state.modifiersData.popperOffsets.y += y;
}
state.modifiersData[name] = data;
}
var offset_default = {
name: "offset",
3 years ago
enabled: true,
phase: "main",
requires: ["popperOffsets"],
3 years ago
fn: offset
};
// node_modules/@popperjs/core/lib/modifiers/popperOffsets.js
3 years ago
function popperOffsets(_ref) {
var state = _ref.state, name = _ref.name;
3 years ago
state.modifiersData[name] = computeOffsets({
reference: state.rects.reference,
element: state.rects.popper,
strategy: "absolute",
3 years ago
placement: state.placement
});
}
var popperOffsets_default = {
name: "popperOffsets",
3 years ago
enabled: true,
phase: "read",
3 years ago
fn: popperOffsets,
data: {}
};
// node_modules/@popperjs/core/lib/utils/getAltAxis.js
3 years ago
function getAltAxis(axis) {
return axis === "x" ? "y" : "x";
3 years ago
}
// node_modules/@popperjs/core/lib/modifiers/preventOverflow.js
3 years ago
function preventOverflow(_ref) {
var state = _ref.state, options = _ref.options, name = _ref.name;
var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, padding = options.padding, _options$tether = options.tether, tether = _options$tether === void 0 ? true : _options$tether, _options$tetherOffset = options.tetherOffset, tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;
3 years ago
var overflow = detectOverflow(state, {
boundary,
rootBoundary,
padding,
altBoundary
3 years ago
});
var basePlacement = getBasePlacement(state.placement);
var variation = getVariation(state.placement);
var isBasePlacement = !variation;
var mainAxis = getMainAxisFromPlacement(basePlacement);
var altAxis = getAltAxis(mainAxis);
var popperOffsets2 = state.modifiersData.popperOffsets;
3 years ago
var referenceRect = state.rects.reference;
var popperRect = state.rects.popper;
var tetherOffsetValue = typeof tetherOffset === "function" ? tetherOffset(Object.assign({}, state.rects, {
3 years ago
placement: state.placement
})) : tetherOffset;
var normalizedTetherOffsetValue = typeof tetherOffsetValue === "number" ? {
3 years ago
mainAxis: tetherOffsetValue,
altAxis: tetherOffsetValue
} : Object.assign({
mainAxis: 0,
altAxis: 0
}, tetherOffsetValue);
var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;
3 years ago
var data = {
x: 0,
y: 0
};
if (!popperOffsets2) {
3 years ago
return;
}
3 years ago
if (checkMainAxis) {
var _offsetModifierState$;
var mainSide = mainAxis === "y" ? top : left;
var altSide = mainAxis === "y" ? bottom : right;
var len = mainAxis === "y" ? "height" : "width";
var offset2 = popperOffsets2[mainAxis];
var min2 = offset2 + overflow[mainSide];
var max2 = offset2 - overflow[altSide];
3 years ago
var additive = tether ? -popperRect[len] / 2 : 0;
var minLen = variation === start ? referenceRect[len] : popperRect[len];
var maxLen = variation === start ? -popperRect[len] : -referenceRect[len];
3 years ago
var arrowElement = state.elements.arrow;
var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {
width: 0,
height: 0
};
var arrowPaddingObject = state.modifiersData["arrow#persistent"] ? state.modifiersData["arrow#persistent"].padding : getFreshSideObject();
3 years ago
var arrowPaddingMin = arrowPaddingObject[mainSide];
var arrowPaddingMax = arrowPaddingObject[altSide];
3 years ago
var arrowLen = within(0, referenceRect[len], arrowRect[len]);
3 years ago
var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;
var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;
3 years ago
var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);
var clientOffset = arrowOffsetParent ? mainAxis === "y" ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;
3 years ago
var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;
var tetherMin = offset2 + minOffset - offsetModifierValue - clientOffset;
var tetherMax = offset2 + maxOffset - offsetModifierValue;
var preventedOffset = within(tether ? min(min2, tetherMin) : min2, offset2, tether ? max(max2, tetherMax) : max2);
popperOffsets2[mainAxis] = preventedOffset;
data[mainAxis] = preventedOffset - offset2;
3 years ago
}
if (checkAltAxis) {
var _offsetModifierState$2;
var _mainSide = mainAxis === "x" ? top : left;
var _altSide = mainAxis === "x" ? bottom : right;
var _offset = popperOffsets2[altAxis];
var _len = altAxis === "y" ? "height" : "width";
3 years ago
var _min = _offset + overflow[_mainSide];
var _max = _offset - overflow[_altSide];
var isOriginSide = [top, left].indexOf(basePlacement) !== -1;
var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;
var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;
var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;
var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);
popperOffsets2[altAxis] = _preventedOffset;
3 years ago
data[altAxis] = _preventedOffset - _offset;
3 years ago
}
state.modifiersData[name] = data;
}
var preventOverflow_default = {
name: "preventOverflow",
3 years ago
enabled: true,
phase: "main",
3 years ago
fn: preventOverflow,
requiresIfExists: ["offset"]
3 years ago
};
// node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js
3 years ago
function getHTMLElementScroll(element) {
return {
scrollLeft: element.scrollLeft,
scrollTop: element.scrollTop
};
}
// node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js
3 years ago
function getNodeScroll(node) {
if (node === getWindow(node) || !isHTMLElement(node)) {
return getWindowScroll(node);
} else {
return getHTMLElementScroll(node);
}
}
// node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js
3 years ago
function isElementScaled(element) {
var rect = element.getBoundingClientRect();
3 years ago
var scaleX = round(rect.width) / element.offsetWidth || 1;
var scaleY = round(rect.height) / element.offsetHeight || 1;
3 years ago
return scaleX !== 1 || scaleY !== 1;
}
3 years ago
function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {
if (isFixed === void 0) {
isFixed = false;
}
var isOffsetParentAnElement = isHTMLElement(offsetParent);
3 years ago
var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);
3 years ago
var documentElement = getDocumentElement(offsetParent);
2 years ago
var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed);
3 years ago
var scroll = {
scrollLeft: 0,
scrollTop: 0
};
var offsets = {
x: 0,
y: 0
};
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
if (getNodeName(offsetParent) !== "body" || isScrollParent(documentElement)) {
3 years ago
scroll = getNodeScroll(offsetParent);
}
if (isHTMLElement(offsetParent)) {
3 years ago
offsets = getBoundingClientRect(offsetParent, true);
3 years ago
offsets.x += offsetParent.clientLeft;
offsets.y += offsetParent.clientTop;
} else if (documentElement) {
offsets.x = getWindowScrollBarX(documentElement);
}
}
return {
x: rect.left + scroll.scrollLeft - offsets.x,
y: rect.top + scroll.scrollTop - offsets.y,
width: rect.width,
height: rect.height
};
}
// node_modules/@popperjs/core/lib/utils/orderModifiers.js
3 years ago
function order(modifiers) {
var map = new Map();
var visited = new Set();
var result = [];
modifiers.forEach(function(modifier) {
3 years ago
map.set(modifier.name, modifier);
});
3 years ago
function sort(modifier) {
visited.add(modifier.name);
var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);
requires.forEach(function(dep) {
3 years ago
if (!visited.has(dep)) {
var depModifier = map.get(dep);
if (depModifier) {
sort(depModifier);
}
}
});
result.push(modifier);
}
modifiers.forEach(function(modifier) {
3 years ago
if (!visited.has(modifier.name)) {
sort(modifier);
}
});
return result;
}
function orderModifiers(modifiers) {
var orderedModifiers = order(modifiers);
return modifierPhases.reduce(function(acc, phase) {
return acc.concat(orderedModifiers.filter(function(modifier) {
3 years ago
return modifier.phase === phase;
}));
}, []);
}
// node_modules/@popperjs/core/lib/utils/debounce.js
function debounce(fn2) {
3 years ago
var pending;
return function() {
3 years ago
if (!pending) {
2 years ago
pending = new Promise(function(resolve) {
Promise.resolve().then(function() {
pending = void 0;
2 years ago
resolve(fn2());
3 years ago
});
});
}
return pending;
};
}
// node_modules/@popperjs/core/lib/utils/mergeByName.js
3 years ago
function mergeByName(modifiers) {
var merged = modifiers.reduce(function(merged2, current) {
var existing = merged2[current.name];
merged2[current.name] = existing ? Object.assign({}, existing, current, {
3 years ago
options: Object.assign({}, existing.options, current.options),
data: Object.assign({}, existing.data, current.data)
}) : current;
return merged2;
}, {});
return Object.keys(merged).map(function(key) {
3 years ago
return merged[key];
});
}
// node_modules/@popperjs/core/lib/createPopper.js
3 years ago
var DEFAULT_OPTIONS = {
placement: "bottom",
3 years ago
modifiers: [],
strategy: "absolute"
3 years ago
};
function areValidElements() {
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return !args.some(function(element) {
return !(element && typeof element.getBoundingClientRect === "function");
3 years ago
});
}
function popperGenerator(generatorOptions) {
if (generatorOptions === void 0) {
generatorOptions = {};
}
var _generatorOptions = generatorOptions, _generatorOptions$def = _generatorOptions.defaultModifiers, defaultModifiers2 = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, _generatorOptions$def2 = _generatorOptions.defaultOptions, defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;
return function createPopper2(reference2, popper2, options) {
3 years ago
if (options === void 0) {
options = defaultOptions;
}
var state = {
placement: "bottom",
3 years ago
orderedModifiers: [],
options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),
modifiersData: {},
elements: {
reference: reference2,
popper: popper2
3 years ago
},
attributes: {},
styles: {}
};
var effectCleanupFns = [];
var isDestroyed = false;
var instance = {
state,
3 years ago
setOptions: function setOptions(setOptionsAction) {
var options2 = typeof setOptionsAction === "function" ? setOptionsAction(state.options) : setOptionsAction;
3 years ago
cleanupModifierEffects();
state.options = Object.assign({}, defaultOptions, state.options, options2);
3 years ago
state.scrollParents = {
reference: isElement(reference2) ? listScrollParents(reference2) : reference2.contextElement ? listScrollParents(reference2.contextElement) : [],
popper: listScrollParents(popper2)
};
var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers2, state.options.modifiers)));
state.orderedModifiers = orderedModifiers.filter(function(m) {
3 years ago
return m.enabled;
});
3 years ago
runModifierEffects();
return instance.update();
},
forceUpdate: function forceUpdate() {
if (isDestroyed) {
return;
}
var _state$elements = state.elements, reference3 = _state$elements.reference, popper3 = _state$elements.popper;
if (!areValidElements(reference3, popper3)) {
3 years ago
return;
}
3 years ago
state.rects = {
reference: getCompositeRect(reference3, getOffsetParent(popper3), state.options.strategy === "fixed"),
popper: getLayoutRect(popper3)
};
3 years ago
state.reset = false;
state.placement = state.options.placement;
state.orderedModifiers.forEach(function(modifier) {
3 years ago
return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);
});
for (var index = 0; index < state.orderedModifiers.length; index++) {
if (state.reset === true) {
state.reset = false;
index = -1;
continue;
}
var _state$orderedModifie = state.orderedModifiers[index], fn2 = _state$orderedModifie.fn, _state$orderedModifie2 = _state$orderedModifie.options, _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, name = _state$orderedModifie.name;
if (typeof fn2 === "function") {
state = fn2({
state,
3 years ago
options: _options,
name,
instance
3 years ago
}) || state;
}
}
},
update: debounce(function() {
2 years ago
return new Promise(function(resolve) {
3 years ago
instance.forceUpdate();
2 years ago
resolve(state);
3 years ago
});
}),
destroy: function destroy() {
cleanupModifierEffects();
isDestroyed = true;
}
};
if (!areValidElements(reference2, popper2)) {
3 years ago
return instance;
}
instance.setOptions(options).then(function(state2) {
3 years ago
if (!isDestroyed && options.onFirstUpdate) {
options.onFirstUpdate(state2);
3 years ago
}
});
3 years ago
function runModifierEffects() {
1 year ago
state.orderedModifiers.forEach(function(_ref) {
var name = _ref.name, _ref$options = _ref.options, options2 = _ref$options === void 0 ? {} : _ref$options, effect4 = _ref.effect;
if (typeof effect4 === "function") {
var cleanupFn = effect4({
state,
name,
instance,
options: options2
3 years ago
});
var noopFn = function noopFn2() {
};
3 years ago
effectCleanupFns.push(cleanupFn || noopFn);
}
});
}
function cleanupModifierEffects() {
effectCleanupFns.forEach(function(fn2) {
return fn2();
3 years ago
});
effectCleanupFns = [];
}
return instance;
};
}
// node_modules/@popperjs/core/lib/popper.js
var defaultModifiers = [eventListeners_default, popperOffsets_default, computeStyles_default, applyStyles_default, offset_default, flip_default, preventOverflow_default, arrow_default, hide_default];
var createPopper = /* @__PURE__ */ popperGenerator({
defaultModifiers
});
3 years ago
// src/settings/suggesters/suggest.ts
var wrapAround = (value, size) => {
return (value % size + size) % size;
3 years ago
};
var Suggest = class {
constructor(owner, containerEl, scope) {
this.owner = owner;
this.containerEl = containerEl;
containerEl.on("click", ".suggestion-item", this.onSuggestionClick.bind(this));
containerEl.on("mousemove", ".suggestion-item", this.onSuggestionMouseover.bind(this));
scope.register([], "ArrowUp", (event) => {
if (!event.isComposing) {
this.setSelectedItem(this.selectedItem - 1, true);
return false;
}
});
scope.register([], "ArrowDown", (event) => {
if (!event.isComposing) {
this.setSelectedItem(this.selectedItem + 1, true);
return false;
}
});
scope.register([], "Enter", (event) => {
if (!event.isComposing) {
3 years ago
this.useSelectedItem(event);
return false;
}
});
}
onSuggestionClick(event, el) {
event.preventDefault();
const item = this.suggestions.indexOf(el);
this.setSelectedItem(item, false);
this.useSelectedItem(event);
}
onSuggestionMouseover(_event, el) {
const item = this.suggestions.indexOf(el);
this.setSelectedItem(item, false);
}
setSuggestions(values) {
this.containerEl.empty();
const suggestionEls = [];
values.forEach((value) => {
const suggestionEl = this.containerEl.createDiv("suggestion-item");
this.owner.renderSuggestion(value, suggestionEl);
suggestionEls.push(suggestionEl);
});
this.values = values;
this.suggestions = suggestionEls;
this.setSelectedItem(0, false);
}
useSelectedItem(event) {
const currentValue = this.values[this.selectedItem];
if (currentValue) {
this.owner.selectSuggestion(currentValue, event);
3 years ago
}
}
setSelectedItem(selectedIndex, scrollIntoView) {
const normalizedIndex = wrapAround(selectedIndex, this.suggestions.length);
const prevSelectedSuggestion = this.suggestions[this.selectedItem];
const selectedSuggestion = this.suggestions[normalizedIndex];
2 years ago
prevSelectedSuggestion?.removeClass("is-selected");
selectedSuggestion?.addClass("is-selected");
this.selectedItem = normalizedIndex;
if (scrollIntoView) {
selectedSuggestion.scrollIntoView(false);
3 years ago
}
}
};
var TextInputSuggest = class {
2 years ago
constructor(inputEl) {
this.inputEl = inputEl;
this.scope = new import_obsidian2.Scope();
this.suggestEl = createDiv("suggestion-container");
const suggestion = this.suggestEl.createDiv("suggestion");
this.suggest = new Suggest(this, suggestion, this.scope);
this.scope.register([], "Escape", this.close.bind(this));
this.inputEl.addEventListener("input", this.onInputChanged.bind(this));
this.inputEl.addEventListener("focus", this.onInputChanged.bind(this));
this.inputEl.addEventListener("blur", this.close.bind(this));
this.suggestEl.on("mousedown", ".suggestion-container", (event) => {
event.preventDefault();
});
}
onInputChanged() {
const inputStr = this.inputEl.value;
const suggestions = this.getSuggestions(inputStr);
if (!suggestions) {
this.close();
return;
3 years ago
}
if (suggestions.length > 0) {
this.suggest.setSuggestions(suggestions);
2 years ago
this.open(app.dom.appContainerEl, this.inputEl);
} else {
this.close();
3 years ago
}
}
open(container, inputEl) {
2 years ago
app.keymap.pushScope(this.scope);
container.appendChild(this.suggestEl);
this.popper = createPopper(inputEl, this.suggestEl, {
placement: "bottom-start",
modifiers: [
{
name: "sameWidth",
enabled: true,
fn: ({ state, instance }) => {
const targetWidth = `${state.rects.reference.width}px`;
if (state.styles.popper.width === targetWidth) {
return;
}
state.styles.popper.width = targetWidth;
instance.update();
},
phase: "beforeWrite",
requires: ["computeStyles"]
}
]
});
}
close() {
2 years ago
app.keymap.popScope(this.scope);
this.suggest.setSuggestions([]);
if (this.popper)
this.popper.destroy();
this.suggestEl.detach();
}
};
3 years ago
// src/settings/suggesters/FolderSuggester.ts
var FolderSuggest = class extends TextInputSuggest {
getSuggestions(inputStr) {
2 years ago
const abstractFiles = app.vault.getAllLoadedFiles();
const folders = [];
const lowerCaseInputStr = inputStr.toLowerCase();
abstractFiles.forEach((folder) => {
if (folder instanceof import_obsidian3.TFolder && folder.path.toLowerCase().contains(lowerCaseInputStr)) {
folders.push(folder);
}
});
6 months ago
return folders.slice(0, 1e3);
}
renderSuggestion(file, el) {
el.setText(file.path);
}
selectSuggestion(file) {
this.inputEl.value = file.path;
this.inputEl.trigger("input");
this.close();
}
};
3 years ago
// src/settings/suggesters/FileSuggester.ts
var import_obsidian5 = __toModule(require("obsidian"));
// src/utils/Utils.ts
var import_obsidian4 = __toModule(require("obsidian"));
3 years ago
function delay(ms) {
2 years ago
return new Promise((resolve) => setTimeout(resolve, ms));
3 years ago
}
function escape_RegExp(str) {
return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
3 years ago
}
3 years ago
function generate_dynamic_command_regex() {
return /(<%(?:-|_)?\s*[*~]{0,1})\+((?:.|\s)*?%>)/g;
3 years ago
}
2 years ago
function resolve_tfolder(folder_str) {
folder_str = (0, import_obsidian4.normalizePath)(folder_str);
const folder = app.vault.getAbstractFileByPath(folder_str);
if (!folder) {
throw new TemplaterError(`Folder "${folder_str}" doesn't exist`);
}
if (!(folder instanceof import_obsidian4.TFolder)) {
throw new TemplaterError(`${folder_str} is a file, not a folder`);
}
return folder;
3 years ago
}
2 years ago
function resolve_tfile(file_str) {
file_str = (0, import_obsidian4.normalizePath)(file_str);
const file = app.vault.getAbstractFileByPath(file_str);
if (!file) {
throw new TemplaterError(`File "${file_str}" doesn't exist`);
}
if (!(file instanceof import_obsidian4.TFile)) {
throw new TemplaterError(`${file_str} is a folder, not a file`);
}
return file;
3 years ago
}
2 years ago
function get_tfiles_from_folder(folder_str) {
const folder = resolve_tfolder(folder_str);
const files = [];
import_obsidian4.Vault.recurseChildren(folder, (file) => {
if (file instanceof import_obsidian4.TFile) {
files.push(file);
}
});
files.sort((a, b) => {
return a.basename.localeCompare(b.basename);
});
return files;
3 years ago
}
function arraymove(arr, fromIndex, toIndex) {
if (toIndex < 0 || toIndex === arr.length) {
return;
}
const element = arr[fromIndex];
arr[fromIndex] = arr[toIndex];
arr[toIndex] = element;
3 years ago
}
function get_active_file(app2) {
return app2.workspace.activeEditor?.file ?? app2.workspace.getActiveFile();
}
9 months ago
function get_folder_path_from_file_path(path) {
const path_separator = path.lastIndexOf("/");
if (path_separator !== -1)
return path.slice(0, path_separator);
return "";
}
3 years ago
// src/settings/suggesters/FileSuggester.ts
3 years ago
var FileSuggestMode;
(function(FileSuggestMode2) {
FileSuggestMode2[FileSuggestMode2["TemplateFiles"] = 0] = "TemplateFiles";
FileSuggestMode2[FileSuggestMode2["ScriptFiles"] = 1] = "ScriptFiles";
3 years ago
})(FileSuggestMode || (FileSuggestMode = {}));
var FileSuggest = class extends TextInputSuggest {
2 years ago
constructor(inputEl, plugin, mode) {
super(inputEl);
this.inputEl = inputEl;
this.plugin = plugin;
this.mode = mode;
}
get_folder(mode) {
switch (mode) {
case 0:
return this.plugin.settings.templates_folder;
case 1:
return this.plugin.settings.user_scripts_folder;
3 years ago
}
}
get_error_msg(mode) {
switch (mode) {
case 0:
return `Templates folder doesn't exist`;
case 1:
return `User Scripts folder doesn't exist`;
3 years ago
}
}
getSuggestions(input_str) {
2 years ago
const all_files = errorWrapperSync(() => get_tfiles_from_folder(this.get_folder(this.mode)), this.get_error_msg(this.mode));
if (!all_files) {
return [];
3 years ago
}
const files = [];
const lower_input_str = input_str.toLowerCase();
all_files.forEach((file) => {
if (file instanceof import_obsidian5.TFile && file.extension === "md" && file.path.toLowerCase().contains(lower_input_str)) {
files.push(file);
}
});
6 months ago
return files.slice(0, 1e3);
}
renderSuggestion(file, el) {
el.setText(file.path);
}
selectSuggestion(file) {
this.inputEl.value = file.path;
this.inputEl.trigger("input");
this.close();
}
};
3 years ago
// src/settings/Settings.ts
var DEFAULT_SETTINGS = {
command_timeout: 5,
templates_folder: "",
templates_pairs: [["", ""]],
trigger_on_file_creation: false,
auto_jump_to_cursor: false,
enable_system_commands: false,
shell_path: "",
user_scripts_folder: "",
enable_folder_templates: true,
folder_templates: [{ folder: "", template: "" }],
syntax_highlighting: true,
1 year ago
syntax_highlighting_mobile: false,
enabled_templates_hotkeys: [""],
2 years ago
startup_templates: [""],
enable_ribbon_icon: true
3 years ago
};
var TemplaterSettingTab = class extends import_obsidian6.PluginSettingTab {
2 years ago
constructor(plugin) {
super(app, plugin);
this.plugin = plugin;
}
display() {
this.containerEl.empty();
this.add_general_setting_header();
this.add_template_folder_setting();
this.add_internal_functions_setting();
1 year ago
this.add_syntax_highlighting_settings();
this.add_auto_jump_to_cursor();
this.add_trigger_on_new_file_creation_setting();
2 years ago
this.add_ribbon_icon_setting();
this.add_templates_hotkeys_setting();
if (this.plugin.settings.trigger_on_file_creation) {
this.add_folder_templates_setting();
}
this.add_startup_templates_setting();
this.add_user_script_functions_setting();
this.add_user_system_command_functions_setting();
2 years ago
this.add_donating_setting();
}
add_general_setting_header() {
6 months ago
this.containerEl.createEl("h2", { text: "General settings" });
}
add_template_folder_setting() {
new import_obsidian6.Setting(this.containerEl).setName("Template folder location").setDesc("Files in this folder will be available as templates.").addSearch((cb) => {
2 years ago
new FolderSuggest(cb.inputEl);
cb.setPlaceholder("Example: folder1/folder2").setValue(this.plugin.settings.templates_folder).onChange((new_folder) => {
this.plugin.settings.templates_folder = new_folder;
this.plugin.save_settings();
});
cb.containerEl.addClass("templater_search");
});
}
add_internal_functions_setting() {
const desc = document.createDocumentFragment();
desc.append("Templater provides multiples predefined variables / functions that you can use.", desc.createEl("br"), "Check the ", desc.createEl("a", {
href: "https://silentvoid13.github.io/Templater/",
text: "documentation"
}), " to get a list of all the available internal variables / functions.");
6 months ago
new import_obsidian6.Setting(this.containerEl).setName("Internal variables and functions").setDesc(desc);
}
1 year ago
add_syntax_highlighting_settings() {
const desktopDesc = document.createDocumentFragment();
desktopDesc.append("Adds syntax highlighting for Templater commands in edit mode.");
const mobileDesc = document.createDocumentFragment();
mobileDesc.append("Adds syntax highlighting for Templater commands in edit mode on mobile. Use with caution: this may break live preview on mobile platforms.");
6 months ago
new import_obsidian6.Setting(this.containerEl).setName("Syntax highlighting on desktop").setDesc(desktopDesc).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.syntax_highlighting).onChange((syntax_highlighting) => {
this.plugin.settings.syntax_highlighting = syntax_highlighting;
this.plugin.save_settings();
this.plugin.event_handler.update_syntax_highlighting();
});
});
6 months ago
new import_obsidian6.Setting(this.containerEl).setName("Syntax highlighting on mobile").setDesc(mobileDesc).addToggle((toggle) => {
1 year ago
toggle.setValue(this.plugin.settings.syntax_highlighting_mobile).onChange((syntax_highlighting_mobile) => {
this.plugin.settings.syntax_highlighting_mobile = syntax_highlighting_mobile;
this.plugin.save_settings();
this.plugin.event_handler.update_syntax_highlighting();
});
});
}
add_auto_jump_to_cursor() {
const desc = document.createDocumentFragment();
desc.append("Automatically triggers ", desc.createEl("code", { text: "tp.file.cursor" }), " after inserting a template.", desc.createEl("br"), "You can also set a hotkey to manually trigger ", desc.createEl("code", { text: "tp.file.cursor" }), ".");
new import_obsidian6.Setting(this.containerEl).setName("Automatic jump to cursor").setDesc(desc).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.auto_jump_to_cursor).onChange((auto_jump_to_cursor) => {
this.plugin.settings.auto_jump_to_cursor = auto_jump_to_cursor;
this.plugin.save_settings();
});
});
}
add_trigger_on_new_file_creation_setting() {
const desc = document.createDocumentFragment();
desc.append("Templater will listen for the new file creation event, and replace every command it finds in the new file's content.", desc.createEl("br"), "This makes Templater compatible with other plugins like the Daily note core plugin, Calendar plugin, Review plugin, Note refactor plugin, ...", desc.createEl("br"), desc.createEl("b", {
text: "Warning: "
}), "This can be dangerous if you create new files with unknown / unsafe content on creation. Make sure that every new file's content is safe on creation.");
new import_obsidian6.Setting(this.containerEl).setName("Trigger Templater on new file creation").setDesc(desc).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.trigger_on_file_creation).onChange((trigger_on_file_creation) => {
this.plugin.settings.trigger_on_file_creation = trigger_on_file_creation;
this.plugin.save_settings();
this.plugin.event_handler.update_trigger_file_on_creation();
this.display();
});
});
}
2 years ago
add_ribbon_icon_setting() {
const desc = document.createDocumentFragment();
desc.append("Show Templater icon in sidebar ribbon, allowing you to quickly use templates anywhere.");
new import_obsidian6.Setting(this.containerEl).setName("Show icon in sidebar").setDesc(desc).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.enable_ribbon_icon).onChange((enable_ribbon_icon) => {
this.plugin.settings.enable_ribbon_icon = enable_ribbon_icon;
this.plugin.save_settings();
if (this.plugin.settings.enable_ribbon_icon) {
2 years ago
this.plugin.addRibbonIcon("templater-icon", "Templater", async () => {
2 years ago
this.plugin.fuzzy_suggester.insert_template();
2 years ago
}).setAttribute("id", "rb-templater-icon");
2 years ago
} else {
2 years ago
document.getElementById("rb-templater-icon")?.remove();
2 years ago
}
});
});
}
add_templates_hotkeys_setting() {
6 months ago
this.containerEl.createEl("h2", { text: "Template hotkeys" });
const desc = document.createDocumentFragment();
6 months ago
desc.append("Template hotkeys allows you to bind a template to a hotkey.");
new import_obsidian6.Setting(this.containerEl).setDesc(desc);
this.plugin.settings.enabled_templates_hotkeys.forEach((template, index) => {
const s = new import_obsidian6.Setting(this.containerEl).addSearch((cb) => {
2 years ago
new FileSuggest(cb.inputEl, this.plugin, FileSuggestMode.TemplateFiles);
cb.setPlaceholder("Example: folder1/template_file").setValue(template).onChange((new_template) => {
if (new_template && this.plugin.settings.enabled_templates_hotkeys.contains(new_template)) {
log_error(new TemplaterError("This template is already bound to a hotkey"));
return;
}
this.plugin.command_handler.add_template_hotkey(this.plugin.settings.enabled_templates_hotkeys[index], new_template);
this.plugin.settings.enabled_templates_hotkeys[index] = new_template;
this.plugin.save_settings();
3 years ago
});
cb.containerEl.addClass("templater_search");
}).addExtraButton((cb) => {
cb.setIcon("any-key").setTooltip("Configure Hotkey").onClick(() => {
2 years ago
app.setting.openTabById("hotkeys");
const tab = app.setting.activeTab;
tab.searchInputEl.value = "Templater: Insert";
tab.updateHotkeyVisibility();
3 years ago
});
}).addExtraButton((cb) => {
cb.setIcon("up-chevron-glyph").setTooltip("Move up").onClick(() => {
arraymove(this.plugin.settings.enabled_templates_hotkeys, index, index - 1);
this.plugin.save_settings();
this.display();
3 years ago
});
}).addExtraButton((cb) => {
cb.setIcon("down-chevron-glyph").setTooltip("Move down").onClick(() => {
arraymove(this.plugin.settings.enabled_templates_hotkeys, index, index + 1);
this.plugin.save_settings();
this.display();
3 years ago
});
}).addExtraButton((cb) => {
cb.setIcon("cross").setTooltip("Delete").onClick(() => {
this.plugin.command_handler.remove_template_hotkey(this.plugin.settings.enabled_templates_hotkeys[index]);
this.plugin.settings.enabled_templates_hotkeys.splice(index, 1);
this.plugin.save_settings();
this.display();
3 years ago
});
});
s.infoEl.remove();
});
new import_obsidian6.Setting(this.containerEl).addButton((cb) => {
cb.setButtonText("Add new hotkey for template").setCta().onClick(() => {
this.plugin.settings.enabled_templates_hotkeys.push("");
this.plugin.save_settings();
this.display();
});
});
}
add_folder_templates_setting() {
this.containerEl.createEl("h2", { text: "Folder Templates" });
const descHeading = document.createDocumentFragment();
descHeading.append("Folder Templates are triggered when a new ", descHeading.createEl("strong", { text: "empty " }), "file is created in a given folder.", descHeading.createEl("br"), "Templater will fill the empty file with the specified template.", descHeading.createEl("br"), "The deepest match is used. A global default template would be defined on the root ", descHeading.createEl("code", { text: "/" }), ".");
new import_obsidian6.Setting(this.containerEl).setDesc(descHeading);
const descUseNewFileTemplate = document.createDocumentFragment();
descUseNewFileTemplate.append("When enabled Templater will make use of the folder templates defined below.");
new import_obsidian6.Setting(this.containerEl).setName("Enable Folder Templates").setDesc(descUseNewFileTemplate).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.enable_folder_templates).onChange((use_new_file_templates) => {
this.plugin.settings.enable_folder_templates = use_new_file_templates;
this.plugin.save_settings();
this.display();
});
});
if (!this.plugin.settings.enable_folder_templates) {
return;
3 years ago
}
new import_obsidian6.Setting(this.containerEl).setName("Add New").setDesc("Add new folder template").addButton((button) => {
button.setTooltip("Add additional folder template").setButtonText("+").setCta().onClick(() => {
this.plugin.settings.folder_templates.push({
folder: "",
template: ""
3 years ago
});
this.plugin.save_settings();
this.display();
});
});
this.plugin.settings.folder_templates.forEach((folder_template, index) => {
const s = new import_obsidian6.Setting(this.containerEl).addSearch((cb) => {
2 years ago
new FolderSuggest(cb.inputEl);
cb.setPlaceholder("Folder").setValue(folder_template.folder).onChange((new_folder) => {
if (new_folder && this.plugin.settings.folder_templates.some((e) => e.folder == new_folder)) {
log_error(new TemplaterError("This folder already has a template associated with it"));
3 years ago
return;
}
this.plugin.settings.folder_templates[index].folder = new_folder;
this.plugin.save_settings();
3 years ago
});
cb.containerEl.addClass("templater_search");
}).addSearch((cb) => {
2 years ago
new FileSuggest(cb.inputEl, this.plugin, FileSuggestMode.TemplateFiles);
cb.setPlaceholder("Template").setValue(folder_template.template).onChange((new_template) => {
this.plugin.settings.folder_templates[index].template = new_template;
this.plugin.save_settings();
3 years ago
});
cb.containerEl.addClass("templater_search");
}).addExtraButton((cb) => {
cb.setIcon("up-chevron-glyph").setTooltip("Move up").onClick(() => {
arraymove(this.plugin.settings.folder_templates, index, index - 1);
this.plugin.save_settings();
this.display();
3 years ago
});
}).addExtraButton((cb) => {
cb.setIcon("down-chevron-glyph").setTooltip("Move down").onClick(() => {
arraymove(this.plugin.settings.folder_templates, index, index + 1);
this.plugin.save_settings();
this.display();
3 years ago
});
}).addExtraButton((cb) => {
cb.setIcon("cross").setTooltip("Delete").onClick(() => {
this.plugin.settings.folder_templates.splice(index, 1);
this.plugin.save_settings();
this.display();
3 years ago
});
});
s.infoEl.remove();
});
}
add_startup_templates_setting() {
6 months ago
this.containerEl.createEl("h2", { text: "Startup templates" });
const desc = document.createDocumentFragment();
6 months ago
desc.append("Startup templates are templates that will get executed once when Templater starts.", desc.createEl("br"), "These templates won't output anything.", desc.createEl("br"), "This can be useful to set up templates adding hooks to Obsidian events for example.");
new import_obsidian6.Setting(this.containerEl).setDesc(desc);
this.plugin.settings.startup_templates.forEach((template, index) => {
const s = new import_obsidian6.Setting(this.containerEl).addSearch((cb) => {
2 years ago
new FileSuggest(cb.inputEl, this.plugin, FileSuggestMode.TemplateFiles);
cb.setPlaceholder("Example: folder1/template_file").setValue(template).onChange((new_template) => {
if (new_template && this.plugin.settings.startup_templates.contains(new_template)) {
log_error(new TemplaterError("This startup template already exist"));
return;
}
this.plugin.settings.startup_templates[index] = new_template;
this.plugin.save_settings();
3 years ago
});
cb.containerEl.addClass("templater_search");
}).addExtraButton((cb) => {
cb.setIcon("cross").setTooltip("Delete").onClick(() => {
this.plugin.settings.startup_templates.splice(index, 1);
this.plugin.save_settings();
this.display();
3 years ago
});
});
s.infoEl.remove();
});
new import_obsidian6.Setting(this.containerEl).addButton((cb) => {
cb.setButtonText("Add new startup template").setCta().onClick(() => {
this.plugin.settings.startup_templates.push("");
this.plugin.save_settings();
this.display();
});
});
}
add_user_script_functions_setting() {
6 months ago
this.containerEl.createEl("h2", { text: "User script functions" });
let desc = document.createDocumentFragment();
desc.append("All JavaScript files in this folder will be loaded as CommonJS modules, to import custom user functions.", desc.createEl("br"), "The folder needs to be accessible from the vault.", desc.createEl("br"), "Check the ", desc.createEl("a", {
href: "https://silentvoid13.github.io/Templater/",
text: "documentation"
3 years ago
}), " for more information.");
new import_obsidian6.Setting(this.containerEl).setName("Script files folder location").setDesc(desc).addSearch((cb) => {
2 years ago
new FolderSuggest(cb.inputEl);
cb.setPlaceholder("Example: folder1/folder2").setValue(this.plugin.settings.user_scripts_folder).onChange((new_folder) => {
this.plugin.settings.user_scripts_folder = new_folder;
this.plugin.save_settings();
});
cb.containerEl.addClass("templater_search");
});
desc = document.createDocumentFragment();
let name;
if (!this.plugin.settings.user_scripts_folder) {
6 months ago
name = "No user scripts folder set";
} else {
6 months ago
const files = errorWrapperSync(() => get_tfiles_from_folder(this.plugin.settings.user_scripts_folder), `User scripts folder doesn't exist`);
if (!files || files.length === 0) {
6 months ago
name = "No user scripts detected";
} else {
let count = 0;
for (const file of files) {
if (file.extension === "js") {
count++;
desc.append(desc.createEl("li", {
text: `tp.user.${file.basename}`
}));
}
3 years ago
}
name = `Detected ${count} User Script(s)`;
}
3 years ago
}
new import_obsidian6.Setting(this.containerEl).setName(name).setDesc(desc).addExtraButton((extra) => {
extra.setIcon("sync").setTooltip("Refresh").onClick(() => {
this.display();
});
});
}
add_user_system_command_functions_setting() {
let desc = document.createDocumentFragment();
desc.append("Allows you to create user functions linked to system commands.", desc.createEl("br"), desc.createEl("b", {
text: "Warning: "
}), "It can be dangerous to execute arbitrary system commands from untrusted sources. Only run system commands that you understand, from trusted sources.");
this.containerEl.createEl("h2", {
6 months ago
text: "User system command functions"
});
6 months ago
new import_obsidian6.Setting(this.containerEl).setName("Enable user system command functions").setDesc(desc).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.enable_system_commands).onChange((enable_system_commands) => {
this.plugin.settings.enable_system_commands = enable_system_commands;
this.plugin.save_settings();
this.display();
});
});
if (this.plugin.settings.enable_system_commands) {
new import_obsidian6.Setting(this.containerEl).setName("Timeout").setDesc("Maximum timeout in seconds for a system command.").addText((text) => {
text.setPlaceholder("Timeout").setValue(this.plugin.settings.command_timeout.toString()).onChange((new_value) => {
const new_timeout = Number(new_value);
if (isNaN(new_timeout)) {
log_error(new TemplaterError("Timeout must be a number"));
return;
}
this.plugin.settings.command_timeout = new_timeout;
this.plugin.save_settings();
3 years ago
});
});
desc = document.createDocumentFragment();
desc.append("Full path to the shell binary to execute the command with.", desc.createEl("br"), "This setting is optional and will default to the system's default shell if not specified.", desc.createEl("br"), "You can use forward slashes ('/') as path separators on all platforms if in doubt.");
new import_obsidian6.Setting(this.containerEl).setName("Shell binary location").setDesc(desc).addText((text) => {
text.setPlaceholder("Example: /bin/bash, ...").setValue(this.plugin.settings.shell_path).onChange((shell_path) => {
this.plugin.settings.shell_path = shell_path;
this.plugin.save_settings();
3 years ago
});
});
let i = 1;
this.plugin.settings.templates_pairs.forEach((template_pair) => {
const div2 = this.containerEl.createEl("div");
div2.addClass("templater_div");
const title = this.containerEl.createEl("h4", {
text: "User Function n\xB0" + i
3 years ago
});
title.addClass("templater_title");
const setting2 = new import_obsidian6.Setting(this.containerEl).addExtraButton((extra) => {
extra.setIcon("cross").setTooltip("Delete").onClick(() => {
const index = this.plugin.settings.templates_pairs.indexOf(template_pair);
if (index > -1) {
this.plugin.settings.templates_pairs.splice(index, 1);
this.plugin.save_settings();
this.display();
3 years ago
}
});
}).addText((text) => {
const t = text.setPlaceholder("Function name").setValue(template_pair[0]).onChange((new_value) => {
const index = this.plugin.settings.templates_pairs.indexOf(template_pair);
if (index > -1) {
this.plugin.settings.templates_pairs[index][0] = new_value;
this.plugin.save_settings();
3 years ago
}
});
t.inputEl.addClass("templater_template");
return t;
}).addTextArea((text) => {
const t = text.setPlaceholder("System Command").setValue(template_pair[1]).onChange((new_cmd) => {
const index = this.plugin.settings.templates_pairs.indexOf(template_pair);
if (index > -1) {
this.plugin.settings.templates_pairs[index][1] = new_cmd;
this.plugin.save_settings();
3 years ago
}
});
t.inputEl.setAttr("rows", 2);
t.inputEl.addClass("templater_cmd");
return t;
3 years ago
});
setting2.infoEl.remove();
div2.appendChild(title);
div2.appendChild(this.containerEl.lastChild);
i += 1;
});
const div = this.containerEl.createEl("div");
div.addClass("templater_div2");
const setting = new import_obsidian6.Setting(this.containerEl).addButton((button) => {
button.setButtonText("Add New User Function").setCta().onClick(() => {
this.plugin.settings.templates_pairs.push(["", ""]);
this.plugin.save_settings();
this.display();
3 years ago
});
});
setting.infoEl.remove();
div.appendChild(this.containerEl.lastChild);
3 years ago
}
}
2 years ago
add_donating_setting() {
const s = new import_obsidian6.Setting(this.containerEl).setName("Donate").setDesc("If you like this Plugin, consider donating to support continued development.");
const a1 = document.createElement("a");
a1.setAttribute("href", "https://github.com/sponsors/silentvoid13");
a1.addClass("templater_donating");
const img1 = document.createElement("img");
img1.src = "https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86";
a1.appendChild(img1);
const a2 = document.createElement("a");
a2.setAttribute("href", "https://www.paypal.com/donate?hosted_button_id=U2SRGAFYXT32Q");
a2.addClass("templater_donating");
const img2 = document.createElement("img");
img2.src = "https://img.shields.io/badge/paypal-silentvoid13-yellow?style=social&logo=paypal";
a2.appendChild(img2);
s.settingEl.appendChild(a1);
s.settingEl.appendChild(a2);
}
};
3 years ago
// src/handlers/FuzzySuggester.ts
var import_obsidian7 = __toModule(require("obsidian"));
var OpenMode;
(function(OpenMode2) {
OpenMode2[OpenMode2["InsertTemplate"] = 0] = "InsertTemplate";
OpenMode2[OpenMode2["CreateNoteTemplate"] = 1] = "CreateNoteTemplate";
})(OpenMode || (OpenMode = {}));
var FuzzySuggester = class extends import_obsidian7.FuzzySuggestModal {
2 years ago
constructor(plugin) {
super(app);
this.plugin = plugin;
this.setPlaceholder("Type name of a template...");
}
getItems() {
if (!this.plugin.settings.templates_folder) {
2 years ago
return app.vault.getMarkdownFiles();
3 years ago
}
2 years ago
const files = errorWrapperSync(() => get_tfiles_from_folder(this.plugin.settings.templates_folder), `Couldn't retrieve template files from templates folder ${this.plugin.settings.templates_folder}`);
if (!files) {
return [];
3 years ago
}
return files;
}
getItemText(item) {
return item.basename;
}
onChooseItem(item) {
switch (this.open_mode) {
case 0:
this.plugin.templater.append_template_to_active_file(item);
break;
case 1:
this.plugin.templater.create_new_note_from_template(item, this.creation_folder);
break;
3 years ago
}
}
start() {
try {
this.open();
} catch (e) {
log_error(e);
3 years ago
}
}
insert_template() {
this.open_mode = 0;
this.start();
}
create_new_note_from_template(folder) {
this.creation_folder = folder;
this.open_mode = 1;
this.start();
}
};
3 years ago
// src/utils/Constants.ts
var UNSUPPORTED_MOBILE_TEMPLATE = "Error_MobileUnsupportedTemplate";
var ICON_DATA = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51.1328 28.7"><path d="M0 15.14 0 10.15 18.67 1.51 18.67 6.03 4.72 12.33 4.72 12.76 18.67 19.22 18.67 23.74 0 15.14ZM33.6928 1.84C33.6928 1.84 33.9761 2.1467 34.5428 2.76C35.1094 3.38 35.3928 4.56 35.3928 6.3C35.3928 8.0466 34.8195 9.54 33.6728 10.78C32.5261 12.02 31.0995 12.64 29.3928 12.64C27.6862 12.64 26.2661 12.0267 25.1328 10.8C23.9928 9.5733 23.4228 8.0867 23.4228 6.34C23.4228 4.6 23.9995 3.1066 25.1528 1.86C26.2994.62 27.7261 0 29.4328 0C31.1395 0 32.5594.6133 33.6928 1.84M49.8228.67 29.5328 28.38 24.4128 28.38 44.7128.67 49.8228.67M31.0328 8.38C31.0328 8.38 31.1395 8.2467 31.3528 7.98C31.5662 7.7067 31.6728 7.1733 31.6728 6.38C31.6728 5.5867 31.4461 4.92 30.9928 4.38C30.5461 3.84 29.9995 3.57 29.3528 3.57C28.7061 3.57 28.1695 3.84 27.7428 4.38C27.3228 4.92 27.1128 5.5867 27.1128 6.38C27.1128 7.1733 27.3361 7.84 27.7828 8.38C28.2361 8.9267 28.7861 9.2 29.4328 9.2C30.0795 9.2 30.6128 8.9267 31.0328 8.38M49.4328 17.9C49.4328 17.9 49.7161 18.2067 50.2828 18.82C50.8495 19.4333 51.1328 20.6133 51.1328 22.36C51.1328 24.1 50.5594 25.59 49.4128 26.83C48.2595 28.0766 46.8295 28.7 45.1228 28.7C43.4228 28.7 42.0028 28.0833 40.8628 26.85C39.7295 25.6233 39.1628 24.1366 39.1628 22.39C39.1628 20.65 39.7361 19.16 40.8828 17.92C42.0361 16.6733 43.4628 16.05 45.1628 16.05C46.8694 16.05 48.2928 16.6667 49.4328 17.9M46.8528 24.52C46.8528 24.52 46.9595 24.3833 47.1728 24.11C47.3795 23.8367 47.4828 23.3033 47.4828 22.51C47.4828 21.7167 47.2595 21.05 46.8128 20.51C46.3661 19.97 45.8162 19.7 45.1628 19.7C44.5161 19.7 43.9828 19.97 43.5628 20.51C43.1428 21.05 42.9328 21.7167 42.9328 22.51C42.9328 23.3033 43.1561 23.9733 43.6028 24.52C44.0494 25.06 44.5961 25.33 45.2428 25.33C45.8895 25.33 46.4261 25.06 46.8528 24.52Z" fill="currentColor"/></svg>`;
3 years ago
// src/core/Templater.ts
1 year ago
var import_obsidian12 = __toModule(require("obsidian"));
3 years ago
// src/core/functions/internal_functions/InternalModule.ts
var InternalModule = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
this.static_functions = new Map();
this.dynamic_functions = new Map();
}
getName() {
return this.name;
}
2 years ago
async init() {
await this.create_static_templates();
this.static_object = Object.fromEntries(this.static_functions);
}
2 years ago
async generate_object(new_config) {
this.config = new_config;
await this.create_dynamic_templates();
return {
...this.static_object,
...Object.fromEntries(this.dynamic_functions)
};
}
};
3 years ago
// src/core/functions/internal_functions/date/InternalModuleDate.ts
var InternalModuleDate = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "date";
}
2 years ago
async create_static_templates() {
this.static_functions.set("now", this.generate_now());
this.static_functions.set("tomorrow", this.generate_tomorrow());
this.static_functions.set("weekday", this.generate_weekday());
this.static_functions.set("yesterday", this.generate_yesterday());
}
2 years ago
async create_dynamic_templates() {
}
1 year ago
async teardown() {
}
generate_now() {
1 year ago
return (format = "YYYY-MM-DD", offset2, reference2, reference_format) => {
if (reference2 && !window.moment(reference2, reference_format).isValid()) {
throw new TemplaterError("Invalid reference date format, try specifying one with the argument 'reference_format'");
}
let duration;
if (typeof offset2 === "string") {
duration = window.moment.duration(offset2);
} else if (typeof offset2 === "number") {
duration = window.moment.duration(offset2, "days");
}
1 year ago
return window.moment(reference2, reference_format).add(duration).format(format);
};
}
generate_tomorrow() {
1 year ago
return (format = "YYYY-MM-DD") => {
return window.moment().add(1, "days").format(format);
};
}
generate_weekday() {
1 year ago
return (format = "YYYY-MM-DD", weekday, reference2, reference_format) => {
if (reference2 && !window.moment(reference2, reference_format).isValid()) {
throw new TemplaterError("Invalid reference date format, try specifying one with the argument 'reference_format'");
}
1 year ago
return window.moment(reference2, reference_format).weekday(weekday).format(format);
};
}
generate_yesterday() {
1 year ago
return (format = "YYYY-MM-DD") => {
return window.moment().add(-1, "days").format(format);
};
}
};
3 years ago
// src/core/functions/internal_functions/file/InternalModuleFile.ts
var import_obsidian8 = __toModule(require("obsidian"));
var DEPTH_LIMIT = 10;
var InternalModuleFile = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "file";
this.include_depth = 0;
this.create_new_depth = 0;
this.linkpath_regex = new RegExp("^\\[\\[(.*)\\]\\]$");
}
2 years ago
async create_static_templates() {
this.static_functions.set("creation_date", this.generate_creation_date());
this.static_functions.set("create_new", this.generate_create_new());
this.static_functions.set("cursor", this.generate_cursor());
this.static_functions.set("cursor_append", this.generate_cursor_append());
this.static_functions.set("exists", this.generate_exists());
this.static_functions.set("find_tfile", this.generate_find_tfile());
this.static_functions.set("folder", this.generate_folder());
this.static_functions.set("include", this.generate_include());
this.static_functions.set("last_modified_date", this.generate_last_modified_date());
this.static_functions.set("move", this.generate_move());
this.static_functions.set("path", this.generate_path());
this.static_functions.set("rename", this.generate_rename());
this.static_functions.set("selection", this.generate_selection());
}
async create_dynamic_templates() {
this.dynamic_functions.set("content", await this.generate_content());
this.dynamic_functions.set("tags", this.generate_tags());
this.dynamic_functions.set("title", this.generate_title());
}
1 year ago
async teardown() {
}
2 years ago
async generate_content() {
return await app.vault.read(this.config.target_file);
}
generate_create_new() {
2 years ago
return async (template, filename, open_new = false, folder) => {
this.create_new_depth += 1;
if (this.create_new_depth > DEPTH_LIMIT) {
this.create_new_depth = 0;
throw new TemplaterError("Reached create_new depth limit (max = 10)");
}
2 years ago
const new_file = await this.plugin.templater.create_new_note_from_template(template, folder, filename, open_new);
this.create_new_depth -= 1;
return new_file;
2 years ago
};
}
generate_creation_date() {
1 year ago
return (format = "YYYY-MM-DD HH:mm") => {
return window.moment(this.config.target_file.stat.ctime).format(format);
};
}
generate_cursor() {
return (order2) => {
2 years ago
return `<% tp.file.cursor(${order2 ?? ""}) %>`;
};
}
generate_cursor_append() {
return (content) => {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.editor) {
log_error(new TemplaterError("No active editor, can't append to cursor."));
return;
}
1 year ago
const editor = active_editor.editor;
const doc = editor.getDoc();
doc.replaceSelection(content);
return "";
};
}
generate_exists() {
9 months ago
return async (filepath) => {
const path = (0, import_obsidian8.normalizePath)(filepath);
2 years ago
return await app.vault.exists(path);
};
}
generate_find_tfile() {
return (filename) => {
const path = (0, import_obsidian8.normalizePath)(filename);
2 years ago
return app.metadataCache.getFirstLinkpathDest(path, "");
};
}
generate_folder() {
return (relative = false) => {
const parent = this.config.target_file.parent;
let folder;
if (relative) {
folder = parent.path;
} else {
folder = parent.name;
}
return folder;
};
}
generate_include() {
2 years ago
return async (include_link) => {
this.include_depth += 1;
if (this.include_depth > DEPTH_LIMIT) {
this.include_depth -= 1;
throw new TemplaterError("Reached inclusion depth limit (max = 10)");
}
let inc_file_content;
if (include_link instanceof import_obsidian8.TFile) {
2 years ago
inc_file_content = await app.vault.read(include_link);
} else {
let match;
if ((match = this.linkpath_regex.exec(include_link)) === null) {
this.include_depth -= 1;
throw new TemplaterError("Invalid file format, provide an obsidian link between quotes.");
}
const { path, subpath } = (0, import_obsidian8.parseLinktext)(match[1]);
2 years ago
const inc_file = app.metadataCache.getFirstLinkpathDest(path, "");
if (!inc_file) {
this.include_depth -= 1;
throw new TemplaterError(`File ${include_link} doesn't exist`);
}
2 years ago
inc_file_content = await app.vault.read(inc_file);
if (subpath) {
2 years ago
const cache = app.metadataCache.getFileCache(inc_file);
if (cache) {
const result = (0, import_obsidian8.resolveSubpath)(cache, subpath);
if (result) {
2 years ago
inc_file_content = inc_file_content.slice(result.start.offset, result.end?.offset);
3 years ago
}
}
3 years ago
}
}
try {
2 years ago
const parsed_content = await this.plugin.templater.parser.parse_commands(inc_file_content, this.plugin.templater.current_functions_object);
this.include_depth -= 1;
return parsed_content;
} catch (e) {
this.include_depth -= 1;
throw e;
}
2 years ago
};
}
generate_last_modified_date() {
1 year ago
return (format = "YYYY-MM-DD HH:mm") => {
return window.moment(this.config.target_file.stat.mtime).format(format);
};
}
generate_move() {
2 years ago
return async (path, file_to_move) => {
2 years ago
const file = file_to_move || this.config.target_file;
const new_path = (0, import_obsidian8.normalizePath)(`${path}.${file.extension}`);
const dirs = new_path.replace(/\\/g, "/").split("/");
dirs.pop();
if (dirs.length) {
const dir = dirs.join("/");
if (!window.app.vault.getAbstractFileByPath(dir)) {
2 years ago
await window.app.vault.createFolder(dir);
2 years ago
}
}
2 years ago
await app.fileManager.renameFile(file, new_path);
return "";
2 years ago
};
}
generate_path() {
return (relative = false) => {
2 years ago
let vault_path = "";
if (import_obsidian8.Platform.isMobileApp) {
2 years ago
const vault_adapter = app.vault.adapter.fs.uri;
const vault_base = app.vault.adapter.basePath;
vault_path = `${vault_adapter}/${vault_base}`;
} else {
if (app.vault.adapter instanceof import_obsidian8.FileSystemAdapter) {
vault_path = app.vault.adapter.getBasePath();
} else {
throw new TemplaterError("app.vault is not a FileSystemAdapter instance");
}
}
if (relative) {
return this.config.target_file.path;
} else {
return `${vault_path}/${this.config.target_file.path}`;
}
};
}
generate_rename() {
2 years ago
return async (new_title) => {
if (new_title.match(/[\\/:]+/g)) {
throw new TemplaterError("File name cannot contain any of these characters: \\ / :");
}
const new_path = (0, import_obsidian8.normalizePath)(`${this.config.target_file.parent.path}/${new_title}.${this.config.target_file.extension}`);
2 years ago
await app.fileManager.renameFile(this.config.target_file, new_path);
return "";
2 years ago
};
}
generate_selection() {
return () => {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.editor) {
throw new TemplaterError("Active editor is null, can't read selection.");
}
1 year ago
const editor = active_editor.editor;
return editor.getSelection();
};
}
generate_tags() {
2 years ago
const cache = app.metadataCache.getFileCache(this.config.target_file);
if (cache) {
return (0, import_obsidian8.getAllTags)(cache);
}
return null;
}
generate_title() {
return this.config.target_file.basename;
}
};
3 years ago
// src/core/functions/internal_functions/web/InternalModuleWeb.ts
var InternalModuleWeb = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "web";
}
2 years ago
async create_static_templates() {
this.static_functions.set("daily_quote", this.generate_daily_quote());
this.static_functions.set("random_picture", this.generate_random_picture());
}
2 years ago
async create_dynamic_templates() {
}
1 year ago
async teardown() {
}
2 years ago
async getRequest(url) {
try {
const response = await fetch(url);
if (!response.ok) {
throw new TemplaterError("Error performing GET request");
}
2 years ago
return response;
} catch (error) {
throw new TemplaterError("Error performing GET request");
}
}
generate_daily_quote() {
2 years ago
return async () => {
2 years ago
try {
2 years ago
const response = await this.getRequest("https://api.quotable.io/random");
const json = await response.json();
2 years ago
const author = json.author;
const quote = json.content;
1 year ago
const new_content = `> [!quote] ${quote}
> \u2014 ${author}`;
2 years ago
return new_content;
} catch (error) {
new TemplaterError("Error generating daily quote");
return "Error generating daily quote";
}
2 years ago
};
}
generate_random_picture() {
2 years ago
return async (size, query, include_size = false) => {
2 years ago
try {
2 years ago
const response = await this.getRequest(`https://templater-unsplash.fly.dev/${query ? "?q=" + query : ""}`).then((res) => res.json());
2 years ago
let url = response.full;
if (size && !include_size) {
if (size.includes("x")) {
const [width, height] = size.split("x");
url = url.concat(`&w=${width}&h=${height}`);
} else {
url = url.concat(`&w=${size}`);
}
}
2 years ago
if (include_size) {
2 years ago
return `![photo by ${response.photog} on Unsplash|${size}](${url})`;
2 years ago
}
2 years ago
return `![photo by ${response.photog} on Unsplash](${url})`;
2 years ago
} catch (error) {
new TemplaterError("Error generating random picture");
return "Error generating random picture";
}
2 years ago
};
}
};
3 years ago
1 year ago
// src/core/functions/internal_functions/hooks/InternalModuleHooks.ts
var InternalModuleHooks = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "hooks";
this.event_refs = [];
}
async create_static_templates() {
this.static_functions.set("on_all_templates_executed", this.generate_on_all_templates_executed());
}
async create_dynamic_templates() {
}
async teardown() {
this.event_refs.forEach((eventRef) => {
eventRef.e.offref(eventRef);
});
this.event_refs = [];
}
generate_on_all_templates_executed() {
return (callback_function) => {
9 months ago
const event_ref = app.workspace.on("templater:all-templates-executed", async () => {
await delay(1);
callback_function();
});
1 year ago
if (event_ref) {
this.event_refs.push(event_ref);
}
};
}
};
// src/core/functions/internal_functions/frontmatter/InternalModuleFrontmatter.ts
var InternalModuleFrontmatter = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "frontmatter";
}
2 years ago
async create_static_templates() {
}
2 years ago
async create_dynamic_templates() {
const cache = app.metadataCache.getFileCache(this.config.target_file);
this.dynamic_functions = new Map(Object.entries(cache?.frontmatter || {}));
}
1 year ago
async teardown() {
}
};
// src/core/functions/internal_functions/system/PromptModal.ts
var import_obsidian9 = __toModule(require("obsidian"));
var PromptModal = class extends import_obsidian9.Modal {
2 years ago
constructor(prompt_text, default_value, multi_line) {
super(app);
this.prompt_text = prompt_text;
this.default_value = default_value;
2 years ago
this.multi_line = multi_line;
this.submitted = false;
}
onOpen() {
this.titleEl.setText(this.prompt_text);
this.createForm();
}
onClose() {
this.contentEl.empty();
if (!this.submitted) {
10 months ago
this.reject(new TemplaterError("Cancelled prompt"));
3 years ago
}
}
createForm() {
const div = this.contentEl.createDiv();
div.addClass("templater-prompt-div");
2 years ago
let textInput;
if (this.multi_line) {
textInput = new import_obsidian9.TextAreaComponent(div);
const buttonDiv = this.contentEl.createDiv();
buttonDiv.addClass("templater-button-div");
const submitButton = new import_obsidian9.ButtonComponent(buttonDiv);
submitButton.buttonEl.addClass("mod-cta");
submitButton.setButtonText("Submit").onClick((evt) => {
this.resolveAndClose(evt);
});
} else {
textInput = new import_obsidian9.TextComponent(div);
}
2 years ago
this.value = this.default_value ?? "";
2 years ago
textInput.inputEl.addClass("templater-prompt-input");
textInput.setPlaceholder("Type text here");
2 years ago
textInput.setValue(this.value);
2 years ago
textInput.onChange((value) => this.value = value);
textInput.inputEl.addEventListener("keydown", (evt) => this.enterCallback(evt));
}
enterCallback(evt) {
9 months ago
if (evt.isComposing || evt.keyCode === 229)
return;
2 years ago
if (this.multi_line) {
9 months ago
if (import_obsidian9.Platform.isDesktop && evt.key === "Enter" && !evt.shiftKey) {
this.resolveAndClose(evt);
2 years ago
}
} else {
if (evt.key === "Enter") {
this.resolveAndClose(evt);
}
}
}
resolveAndClose(evt) {
this.submitted = true;
evt.preventDefault();
this.resolve(this.value);
this.close();
}
2 years ago
async openAndGetValue(resolve, reject) {
this.resolve = resolve;
this.reject = reject;
this.open();
}
};
// src/core/functions/internal_functions/system/SuggesterModal.ts
var import_obsidian10 = __toModule(require("obsidian"));
var SuggesterModal = class extends import_obsidian10.FuzzySuggestModal {
2 years ago
constructor(text_items, items, placeholder, limit) {
super(app);
this.text_items = text_items;
this.items = items;
this.submitted = false;
this.setPlaceholder(placeholder);
2 years ago
limit && (this.limit = limit);
}
getItems() {
return this.items;
}
onClose() {
if (!this.submitted) {
this.reject(new TemplaterError("Cancelled prompt"));
3 years ago
}
}
selectSuggestion(value, evt) {
this.submitted = true;
this.close();
this.onChooseSuggestion(value, evt);
}
getItemText(item) {
if (this.text_items instanceof Function) {
return this.text_items(item);
3 years ago
}
return this.text_items[this.items.indexOf(item)] || "Undefined Text Item";
}
onChooseItem(item) {
this.resolve(item);
}
2 years ago
async openAndGetValue(resolve, reject) {
this.resolve = resolve;
this.reject = reject;
this.open();
}
};
3 years ago
// src/core/functions/internal_functions/system/InternalModuleSystem.ts
var InternalModuleSystem = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "system";
}
2 years ago
async create_static_templates() {
this.static_functions.set("clipboard", this.generate_clipboard());
this.static_functions.set("prompt", this.generate_prompt());
this.static_functions.set("suggester", this.generate_suggester());
}
2 years ago
async create_dynamic_templates() {
}
1 year ago
async teardown() {
}
generate_clipboard() {
2 years ago
return async () => {
return await navigator.clipboard.readText();
};
}
generate_prompt() {
2 years ago
return async (prompt_text, default_value, throw_on_cancel = false, multi_line = false) => {
2 years ago
const prompt = new PromptModal(prompt_text, default_value, multi_line);
2 years ago
const promise = new Promise((resolve, reject) => prompt.openAndGetValue(resolve, reject));
try {
2 years ago
return await promise;
} catch (error) {
if (throw_on_cancel) {
throw error;
3 years ago
}
return null;
}
2 years ago
};
}
generate_suggester() {
2 years ago
return async (text_items, items, throw_on_cancel = false, placeholder = "", limit) => {
2 years ago
const suggester = new SuggesterModal(text_items, items, placeholder, limit);
2 years ago
const promise = new Promise((resolve, reject) => suggester.openAndGetValue(resolve, reject));
try {
2 years ago
return await promise;
} catch (error) {
if (throw_on_cancel) {
throw error;
3 years ago
}
return null;
}
2 years ago
};
}
};
// src/core/functions/internal_functions/config/InternalModuleConfig.ts
var InternalModuleConfig = class extends InternalModule {
constructor() {
super(...arguments);
this.name = "config";
}
2 years ago
async create_static_templates() {
}
2 years ago
async create_dynamic_templates() {
}
1 year ago
async teardown() {
}
2 years ago
async generate_object(config) {
return config;
}
};
// src/core/functions/internal_functions/InternalFunctions.ts
var InternalFunctions = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
this.modules_array = [];
2 years ago
this.modules_array.push(new InternalModuleDate(this.plugin));
this.modules_array.push(new InternalModuleFile(this.plugin));
this.modules_array.push(new InternalModuleWeb(this.plugin));
this.modules_array.push(new InternalModuleFrontmatter(this.plugin));
1 year ago
this.modules_array.push(new InternalModuleHooks(this.plugin));
2 years ago
this.modules_array.push(new InternalModuleSystem(this.plugin));
this.modules_array.push(new InternalModuleConfig(this.plugin));
}
2 years ago
async init() {
for (const mod of this.modules_array) {
await mod.init();
}
}
1 year ago
async teardown() {
for (const mod of this.modules_array) {
await mod.teardown();
}
}
2 years ago
async generate_object(config) {
const internal_functions_object = {};
for (const mod of this.modules_array) {
internal_functions_object[mod.getName()] = await mod.generate_object(config);
}
return internal_functions_object;
}
};
// src/core/functions/user_functions/UserSystemFunctions.ts
var import_child_process = __toModule(require("child_process"));
var import_util = __toModule(require("util"));
1 year ago
var import_obsidian11 = __toModule(require("obsidian"));
var UserSystemFunctions = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
1 year ago
if (import_obsidian11.Platform.isMobileApp || !(app.vault.adapter instanceof import_obsidian11.FileSystemAdapter)) {
this.cwd = "";
} else {
this.cwd = app.vault.adapter.getBasePath();
this.exec_promise = (0, import_util.promisify)(import_child_process.exec);
3 years ago
}
}
2 years ago
async generate_system_functions(config) {
const user_system_functions = new Map();
const internal_functions_object = await this.plugin.templater.functions_generator.generate_object(config, FunctionsMode.INTERNAL);
for (const template_pair of this.plugin.settings.templates_pairs) {
const template = template_pair[0];
let cmd = template_pair[1];
if (!template || !cmd) {
continue;
}
1 year ago
if (import_obsidian11.Platform.isMobileApp) {
2 years ago
user_system_functions.set(template, () => {
return new Promise((resolve) => resolve(UNSUPPORTED_MOBILE_TEMPLATE));
});
} else {
cmd = await this.plugin.templater.parser.parse_commands(cmd, internal_functions_object);
user_system_functions.set(template, async (user_args) => {
const process_env = {
...process.env,
...user_args
};
const cmd_options = {
timeout: this.plugin.settings.command_timeout * 1e3,
cwd: this.cwd,
env: process_env,
...this.plugin.settings.shell_path && {
shell: this.plugin.settings.shell_path
}
2 years ago
};
try {
const { stdout } = await this.exec_promise(cmd, cmd_options);
return stdout.trimRight();
} catch (error) {
throw new TemplaterError(`Error with User Template ${template}`, error);
}
});
}
2 years ago
}
return user_system_functions;
}
2 years ago
async generate_object(config) {
const user_system_functions = await this.generate_system_functions(config);
return Object.fromEntries(user_system_functions);
}
};
// src/core/functions/user_functions/UserScriptFunctions.ts
var UserScriptFunctions = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
}
2 years ago
async generate_user_script_functions() {
const user_script_functions = new Map();
const files = errorWrapperSync(() => get_tfiles_from_folder(this.plugin.settings.user_scripts_folder), `Couldn't find user script folder "${this.plugin.settings.user_scripts_folder}"`);
if (!files) {
return new Map();
}
for (const file of files) {
if (file.extension.toLowerCase() === "js") {
await this.load_user_script_function(file, user_script_functions);
}
2 years ago
}
return user_script_functions;
}
2 years ago
async load_user_script_function(file, user_script_functions) {
const req = (s) => {
return window.require && window.require(s);
};
const exp = {};
const mod = {
exports: exp
};
const file_content = await app.vault.read(file);
try {
9 months ago
const wrapping_fn = window.eval("(function anonymous(require, module, exports){" + file_content + "\n})");
wrapping_fn(req, mod, exp);
} catch (err) {
throw new TemplaterError(`Failed to load user script at "${file.path}".`, err.message);
}
2 years ago
const user_function = exp["default"] || mod.exports;
if (!user_function) {
throw new TemplaterError(`Failed to load user script at "${file.path}". No exports detected.`);
2 years ago
}
if (!(user_function instanceof Function)) {
throw new TemplaterError(`Failed to load user script at "${file.path}". Default export is not a function.`);
2 years ago
}
user_script_functions.set(`${file.basename}`, user_function);
}
2 years ago
async generate_object() {
const user_script_functions = await this.generate_user_script_functions();
return Object.fromEntries(user_script_functions);
}
};
3 years ago
// src/core/functions/user_functions/UserFunctions.ts
var UserFunctions = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
2 years ago
this.user_system_functions = new UserSystemFunctions(plugin);
this.user_script_functions = new UserScriptFunctions(plugin);
}
2 years ago
async generate_object(config) {
let user_system_functions = {};
let user_script_functions = {};
if (this.plugin.settings.enable_system_commands) {
user_system_functions = await this.user_system_functions.generate_object(config);
}
if (this.plugin.settings.user_scripts_folder) {
user_script_functions = await this.user_script_functions.generate_object();
}
return {
...user_system_functions,
...user_script_functions
};
}
3 years ago
};
// src/core/functions/FunctionsGenerator.ts
var obsidian_module = __toModule(require("obsidian"));
var FunctionsMode;
(function(FunctionsMode2) {
FunctionsMode2[FunctionsMode2["INTERNAL"] = 0] = "INTERNAL";
FunctionsMode2[FunctionsMode2["USER_INTERNAL"] = 1] = "USER_INTERNAL";
})(FunctionsMode || (FunctionsMode = {}));
var FunctionsGenerator = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
2 years ago
this.internal_functions = new InternalFunctions(this.plugin);
this.user_functions = new UserFunctions(this.plugin);
}
2 years ago
async init() {
await this.internal_functions.init();
}
1 year ago
async teardown() {
await this.internal_functions.teardown();
}
additional_functions() {
return {
obsidian: obsidian_module
};
}
2 years ago
async generate_object(config, functions_mode = 1) {
const final_object = {};
const additional_functions_object = this.additional_functions();
const internal_functions_object = await this.internal_functions.generate_object(config);
let user_functions_object = {};
Object.assign(final_object, additional_functions_object);
switch (functions_mode) {
case 0:
Object.assign(final_object, internal_functions_object);
break;
case 1:
user_functions_object = await this.user_functions.generate_object(config);
Object.assign(final_object, {
...internal_functions_object,
user: user_functions_object
});
break;
}
return final_object;
}
3 years ago
};
2 years ago
// node_modules/@silentvoid13/rusty_engine/rusty_engine.js
var import_meta = {};
var wasm;
var heap = new Array(32).fill(void 0);
heap.push(void 0, null, true, false);
function getObject(idx) {
return heap[idx];
}
2 years ago
var heap_next = heap.length;
function dropObject(idx) {
if (idx < 36)
return;
heap[idx] = heap_next;
heap_next = idx;
}
2 years ago
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
2 years ago
var cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true });
cachedTextDecoder.decode();
var cachedUint8Memory0 = new Uint8Array();
function getUint8Memory0() {
if (cachedUint8Memory0.byteLength === 0) {
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
}
return cachedUint8Memory0;
3 years ago
}
2 years ago
function getStringFromWasm0(ptr, len) {
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
}
2 years ago
function addHeapObject(obj) {
if (heap_next === heap.length)
heap.push(heap.length + 1);
const idx = heap_next;
heap_next = heap[idx];
heap[idx] = obj;
return idx;
}
2 years ago
var WASM_VECTOR_LEN = 0;
var cachedTextEncoder = new TextEncoder("utf-8");
var encodeString = typeof cachedTextEncoder.encodeInto === "function" ? function(arg, view) {
return cachedTextEncoder.encodeInto(arg, view);
} : function(arg, view) {
const buf = cachedTextEncoder.encode(arg);
view.set(buf);
return {
read: arg.length,
written: buf.length
};
};
function passStringToWasm0(arg, malloc, realloc) {
if (realloc === void 0) {
const buf = cachedTextEncoder.encode(arg);
const ptr2 = malloc(buf.length);
getUint8Memory0().subarray(ptr2, ptr2 + buf.length).set(buf);
WASM_VECTOR_LEN = buf.length;
return ptr2;
}
let len = arg.length;
let ptr = malloc(len);
const mem = getUint8Memory0();
let offset2 = 0;
for (; offset2 < len; offset2++) {
const code = arg.charCodeAt(offset2);
if (code > 127)
break;
mem[ptr + offset2] = code;
}
if (offset2 !== len) {
if (offset2 !== 0) {
arg = arg.slice(offset2);
3 years ago
}
2 years ago
ptr = realloc(ptr, len, len = offset2 + arg.length * 3);
const view = getUint8Memory0().subarray(ptr + offset2, ptr + len);
const ret = encodeString(arg, view);
offset2 += ret.written;
}
2 years ago
WASM_VECTOR_LEN = offset2;
return ptr;
}
2 years ago
function isLikeNone(x) {
return x === void 0 || x === null;
}
2 years ago
var cachedInt32Memory0 = new Int32Array();
function getInt32Memory0() {
if (cachedInt32Memory0.byteLength === 0) {
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
}
2 years ago
return cachedInt32Memory0;
}
2 years ago
function debugString(val) {
const type = typeof val;
if (type == "number" || type == "boolean" || val == null) {
return `${val}`;
}
if (type == "string") {
return `"${val}"`;
}
if (type == "symbol") {
const description = val.description;
if (description == null) {
return "Symbol";
} else {
2 years ago
return `Symbol(${description})`;
3 years ago
}
2 years ago
}
if (type == "function") {
const name = val.name;
if (typeof name == "string" && name.length > 0) {
return `Function(${name})`;
} else {
2 years ago
return "Function";
3 years ago
}
}
2 years ago
if (Array.isArray(val)) {
const length = val.length;
let debug = "[";
if (length > 0) {
debug += debugString(val[0]);
3 years ago
}
2 years ago
for (let i = 1; i < length; i++) {
debug += ", " + debugString(val[i]);
3 years ago
}
2 years ago
debug += "]";
return debug;
}
2 years ago
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
let className;
if (builtInMatches.length > 1) {
className = builtInMatches[1];
} else {
return toString.call(val);
}
if (className == "Object") {
try {
return "Object(" + JSON.stringify(val) + ")";
} catch (_) {
return "Object";
3 years ago
}
}
2 years ago
if (val instanceof Error) {
return `${val.name}: ${val.message}
${val.stack}`;
}
2 years ago
return className;
3 years ago
}
2 years ago
function _assertClass(instance, klass) {
if (!(instance instanceof klass)) {
throw new Error(`expected instance of ${klass.name}`);
}
2 years ago
return instance.ptr;
}
2 years ago
var stack_pointer = 32;
function addBorrowedObject(obj) {
if (stack_pointer == 1)
throw new Error("out of js stack");
heap[--stack_pointer] = obj;
return stack_pointer;
}
2 years ago
function handleError(f, args) {
try {
2 years ago
return f.apply(this, args);
} catch (e) {
2 years ago
wasm.__wbindgen_exn_store(addHeapObject(e));
}
}
2 years ago
var ParserConfig = class {
static __wrap(ptr) {
const obj = Object.create(ParserConfig.prototype);
obj.ptr = ptr;
return obj;
}
__destroy_into_raw() {
const ptr = this.ptr;
this.ptr = 0;
return ptr;
}
free() {
const ptr = this.__destroy_into_raw();
wasm.__wbg_parserconfig_free(ptr);
}
get interpolate() {
const ret = wasm.__wbg_get_parserconfig_interpolate(this.ptr);
return String.fromCodePoint(ret);
}
set interpolate(arg0) {
wasm.__wbg_set_parserconfig_interpolate(this.ptr, arg0.codePointAt(0));
}
get execution() {
const ret = wasm.__wbg_get_parserconfig_execution(this.ptr);
return String.fromCodePoint(ret);
}
set execution(arg0) {
wasm.__wbg_set_parserconfig_execution(this.ptr, arg0.codePointAt(0));
}
get single_whitespace() {
const ret = wasm.__wbg_get_parserconfig_single_whitespace(this.ptr);
return String.fromCodePoint(ret);
}
set single_whitespace(arg0) {
wasm.__wbg_set_parserconfig_single_whitespace(this.ptr, arg0.codePointAt(0));
}
get multiple_whitespace() {
const ret = wasm.__wbg_get_parserconfig_multiple_whitespace(this.ptr);
return String.fromCodePoint(ret);
}
set multiple_whitespace(arg0) {
wasm.__wbg_set_parserconfig_multiple_whitespace(this.ptr, arg0.codePointAt(0));
}
constructor(opt, clt, inte, ex, sw, mw, gv) {
const ptr0 = passStringToWasm0(opt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
const ptr1 = passStringToWasm0(clt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len1 = WASM_VECTOR_LEN;
const ptr2 = passStringToWasm0(gv, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len2 = WASM_VECTOR_LEN;
const ret = wasm.parserconfig_new(ptr0, len0, ptr1, len1, inte.codePointAt(0), ex.codePointAt(0), sw.codePointAt(0), mw.codePointAt(0), ptr2, len2);
return ParserConfig.__wrap(ret);
}
get opening_tag() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.parserconfig_opening_tag(retptr, this.ptr);
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(r0, r1);
}
}
set opening_tag(val) {
const ptr0 = passStringToWasm0(val, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
wasm.parserconfig_set_opening_tag(this.ptr, ptr0, len0);
}
get closing_tag() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.parserconfig_closing_tag(retptr, this.ptr);
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(r0, r1);
}
}
set closing_tag(val) {
const ptr0 = passStringToWasm0(val, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
wasm.parserconfig_set_closing_tag(this.ptr, ptr0, len0);
}
get global_var() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.parserconfig_global_var(retptr, this.ptr);
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(r0, r1);
}
}
2 years ago
set global_var(val) {
const ptr0 = passStringToWasm0(val, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
wasm.parserconfig_set_global_var(this.ptr, ptr0, len0);
}
2 years ago
};
var Renderer = class {
static __wrap(ptr) {
const obj = Object.create(Renderer.prototype);
obj.ptr = ptr;
return obj;
}
__destroy_into_raw() {
const ptr = this.ptr;
this.ptr = 0;
return ptr;
}
free() {
const ptr = this.__destroy_into_raw();
wasm.__wbg_renderer_free(ptr);
}
constructor(config) {
_assertClass(config, ParserConfig);
var ptr0 = config.ptr;
config.ptr = 0;
const ret = wasm.renderer_new(ptr0);
return Renderer.__wrap(ret);
}
render_content(content, context) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(content, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
wasm.renderer_render_content(retptr, this.ptr, ptr0, len0, addBorrowedObject(context));
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
var r2 = getInt32Memory0()[retptr / 4 + 2];
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
heap[stack_pointer++] = void 0;
}
2 years ago
}
};
async function load(module2, imports) {
if (typeof Response === "function" && module2 instanceof Response) {
if (typeof WebAssembly.instantiateStreaming === "function") {
try {
return await WebAssembly.instantiateStreaming(module2, imports);
} catch (e) {
if (module2.headers.get("Content-Type") != "application/wasm") {
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
} else {
throw e;
}
}
}
2 years ago
const bytes = await module2.arrayBuffer();
return await WebAssembly.instantiate(bytes, imports);
} else {
const instance = await WebAssembly.instantiate(module2, imports);
if (instance instanceof WebAssembly.Instance) {
return { instance, module: module2 };
} else {
return instance;
}
}
}
2 years ago
function getImports() {
const imports = {};
imports.wbg = {};
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
const ret = getStringFromWasm0(arg0, arg1);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
const obj = getObject(arg1);
const ret = typeof obj === "string" ? obj : void 0;
var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
var len0 = WASM_VECTOR_LEN;
getInt32Memory0()[arg0 / 4 + 1] = len0;
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
};
imports.wbg.__wbg_call_97ae9d8645dc388b = function() {
return handleError(function(arg0, arg1) {
const ret = getObject(arg0).call(getObject(arg1));
return addHeapObject(ret);
}, arguments);
};
imports.wbg.__wbg_new_8d2af00bc1e329ee = function(arg0, arg1) {
const ret = new Error(getStringFromWasm0(arg0, arg1));
return addHeapObject(ret);
};
imports.wbg.__wbg_message_fe2af63ccc8985bc = function(arg0) {
const ret = getObject(arg0).message;
return addHeapObject(ret);
};
imports.wbg.__wbg_newwithargs_8fe23e3842840c8e = function(arg0, arg1, arg2, arg3) {
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
return addHeapObject(ret);
};
imports.wbg.__wbg_call_168da88779e35f61 = function() {
return handleError(function(arg0, arg1, arg2) {
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
return addHeapObject(ret);
}, arguments);
};
imports.wbg.__wbg_call_3999bee59e9f7719 = function() {
return handleError(function(arg0, arg1, arg2, arg3) {
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2), getObject(arg3));
return addHeapObject(ret);
}, arguments);
};
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
const ret = debugString(getObject(arg1));
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
getInt32Memory0()[arg0 / 4 + 1] = len0;
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
};
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
throw new Error(getStringFromWasm0(arg0, arg1));
};
return imports;
}
2 years ago
function initMemory(imports, maybe_memory) {
}
2 years ago
function finalizeInit(instance, module2) {
wasm = instance.exports;
init.__wbindgen_wasm_module = module2;
cachedInt32Memory0 = new Int32Array();
cachedUint8Memory0 = new Uint8Array();
return wasm;
}
2 years ago
async function init(input) {
if (typeof input === "undefined") {
input = new URL("rusty_engine_bg.wasm", import_meta.url);
}
2 years ago
const imports = getImports();
if (typeof input === "string" || typeof Request === "function" && input instanceof Request || typeof URL === "function" && input instanceof URL) {
input = fetch(input);
}
2 years ago
initMemory(imports);
const { instance, module: module2 } = await load(await input, imports);
return finalizeInit(instance, module2);
}
2 years ago
var rusty_engine_default = init;
// wasm-embed:/home/runner/work/Templater/Templater/node_modules/@silentvoid13/rusty_engine/rusty_engine_bg.wasm
var rusty_engine_bg_default = __toBinary("AGFzbQEAAAABvwEaYAJ/fwBgAn9/AX9gAX8Bf2ADf39/AX9gA39/fwBgAX8AYAV/f39/fwBgBH9/f38AYAR/f39/AX9gAABgBX9/f39/AX9gAX8BfmAAAX9gBn9/f39/fwBgB39/f39/f38AYAV/f35/fwBgBX9/fX9/AGAFf398f38AYAR/fn9/AGAFf35/f38AYAR/fX9/AGAEf3x/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gCn9/f39/f39/f38Bf2ACfn8BfwLkAgsDd2JnGl9fd2JpbmRnZW5fb2JqZWN0X2Ryb3BfcmVmAAUDd2JnFV9fd2JpbmRnZW5fc3RyaW5nX25ldwABA3diZxVfX3diaW5kZ2VuX3N0cmluZ19nZXQAAAN3YmcbX193YmdfY2FsbF85N2FlOWQ4NjQ1ZGMzODhiAAEDd2JnGl9fd2JnX25ld184ZDJhZjAwYmMxZTMyOWVlAAEDd2JnHl9fd2JnX21lc3NhZ2VfZmUyYWY2M2NjYzg5ODViYwACA3diZyJfX3diZ19uZXd3aXRoYXJnc184ZmUyM2UzODQyODQwYzhlAAgDd2JnG19fd2JnX2NhbGxfMTY4ZGE4ODc3OWUzNWY2MQADA3diZxtfX3diZ19jYWxsXzM5OTliZWU1OWU5Zjc3MTkACAN3YmcXX193YmluZGdlbl9kZWJ1Z19zdHJpbmcAAAN3YmcQX193YmluZGdlbl90aHJvdwAAA7kBtwECBwAGAgYEBAcBBQMKCAAEBgYAAwcCAAEADgETAQQXAQICAQAAAwcZAQAFAQwABgACAgAAAgAEBAAGAQAAAAAEBw0CAQUEBQYCDBgAAQAAAAQBAQEAAQABBAQEBgMDBwMJAwQIAAAABQkAAgEAAAAABwAAAgICAgAFBQMEFgoGEQ8QAAUHAwIBAgABBQEBCAACAQEBBQEAAgECAgACAQEBAgAJCQICAgIAAAAAAwMDAQECAgsLCwUEBQFwATs7BQMBABEGCQF/AUGAgMAACwfcBRkGbWVtb3J5AgAXX193YmdfcGFyc2VyY29uZmlnX2ZyZWUAUSJfX3diZ19nZXRfcGFyc2VyY29uZmlnX2ludGVycG9sYXRlAH4iX193Ymdfc2V0X3BhcnNlcmNvbmZpZ19pbnRlcnBvbGF0ZQB3IF9fd2JnX2dldF9wYXJzZXJjb25maWdfZXhlY3V0aW9uAH8gX193Ymdfc2V0X3BhcnNlcmNvbmZpZ19leGVjdXRpb24AeChfX3diZ19nZXRfcGFyc2VyY29uZmlnX3NpbmdsZV93aGl0ZXNwYWNlAIABKF9fd2JnX3NldF9wYXJzZXJjb25maWdfc2luZ2xlX3doaXRlc3BhY2UAeSpfX3diZ19nZXRfcGFyc2VyY29uZmlnX211bHRpcGxlX3doaXRlc3BhY2UAgQEqX193Ymdfc2V0X3BhcnNlcmNvbmZpZ19tdWx0aXBsZV93aGl0ZXNwYWNlAHoQcGFyc2VyY29uZmlnX25ldwBVGHBhcnNlcmNvbmZpZ19vcGVuaW5nX3RhZwBGHHBhcnNlcmNvbmZpZ19zZXRfb3BlbmluZ190YWcAYxhwYXJzZXJjb25maWdfY2xvc2luZ190YWcARxxwYXJzZXJjb25maWdfc2V0X2Nsb3NpbmdfdGFnAGQXcGFyc2VyY29uZmlnX2dsb2JhbF92YXIASBtwYXJzZXJjb25maWdfc2V0X2dsb2JhbF92YXIAZRNfX3diZ19yZW5kZXJlcl9mcmVlAE8McmVuZGVyZXJfbmV3ACAXcmVuZGVyZXJfcmVuZGVyX2NvbnRlbnQAORFfX3diaW5kZ2VuX21hbGxvYwB1El9fd2JpbmRnZW5fcmVhbGxvYwCFAR9fX3diaW5kZ2VuX2FkZF90b19zdGFja19wb2ludGVyAKsBD19fd2JpbmRnZW5fZnJlZQCaARRfX3diaW5kZ2VuX2V4bl9zdG9yZQCfAQllAQBBAQs6mAGdAaoBPzzBAZUBlgFOkgGOAWotYsEBwQFnKl3BAXaIAUyJAYgBhwGQAY8BiQGJAYwBigGLAZgBX8EBaKABXo4BvwG+AYQBOElwoQHBAWioAWCjAVclqQGcAcEBwAEK2dYCtwG8IAIPfwF+IwBBEGsiCyQAAkACQCAAQfUBTwRAQYCAfEEIQQgQlwFBFEEIEJcBakEQQQgQlwFqa0F3cUF9aiICQQBBEEEIEJcBQQJ0ayIBIAEgAksbIABNDQIgAEEEakEIEJcBIQRBrK7AACgCAEUNAUEAIARrIQMCQAJAAn9BACAEQYACSQ0AGkEfIARB////B0sNABogBEEGIARBCHZnIgBrdkEBcSAAQQF0a0E+agsiBkECdEG4sMAAaigCACIABEAgBCAGEJMBdCEHQQAhAQNAAkAgABCvASICIARJDQAgAiAEayICIANPDQAgACEBIAIiAw0AQQAhAwwDCyAAQRRqKAIAIgIgBSACIAAgB0EddkEEcWpBEGooAgAiAEcbIAUgAhshBSAHQQF0IQcgAA0ACyAFBEAgBSEADAILIAENAgtBACEBQQEgBnQQmwFBrK7AACgCAHEiAEUNAyAAEKQBaEECdEG4sMAAaigCACIARQ0DCwNAIAAgASAAEK8BIgEgBE8gASAEayIFIANJcSICGyEBIAUgAyACGyEDIAAQkQEiAA0ACyABRQ0CC0G4scAAKAIAIgAgBE9BACADIAAgBGtPGw0BIAEiACAEELoBIQYgABA1AkAgA0EQQQgQlwFPBEAgACAEEKYBIAYgAxCUASADQYACTwRAIAYgAxA0DAILIANBA3YiAUEDdEGwrsAAaiEFAn9BqK7AACgCACICQQEgAXQiAXEEQCAFKAIIDAELQaiuwAAgASACcjYCACAFCyEBIAUgBjYCCCABIAY2AgwgBiAFNgIMIAYgATYCCAwBCyAAIAMgBGoQjQELIAAQvAEiA0UNAQwCC0EQIABBBGpBEEEIEJcBQXtqIABLG0EIEJcBIQQCQAJAAkACfwJAAkBBqK7AACgCACIBIARBA3YiAHYiAkEDcUUEQCAEQbixwAAoAgBNDQcgAg0BQayuwAAoAgAiAEUNByAAEKQBaEECdEG4sMAAaigCACIBEK8BIARrIQMgARCRASIABEADQCAAEK8BIARrIgIgAyACIANJIgIbIQMgACABIAIbIQEgABCRASIADQALCyABIgAgBBC6ASEFIAAQNSADQRBBCBCXAUkNBSAAIAQQpgEgBSADEJQBQbixwAAoAgAiAUUNBCABQQN2IgFBA3RBsK7AAGohB0HAscAAKAIAIQZBqK7AACgCACICQQEgAXQiAXFFDQIgBygCCAwDCwJAIAJBf3NBAXEgAGoiA0EDdCIAQbiuwABqKAIAIgVBCGooAgAiAiAAQbCuwABqIgBHBEAgAiAANgIMIAAgAjYCCAwBC0GorsAAIAFBfiADd3E2AgALIAUgA0EDdBCNASAFELwBIQMMBwsCQEEBIABBH3EiAHQQmwEgAiAAdHEQpAFoIgJBA3QiAEG4rsAAaigCACIDQQhqKAIAIgEgAEGwrsAAaiIARwRAIAEgADYCDCAAIAE2AggMAQtBqK7AAEGorsAAKAIAQX4gAndxNgIACyADIAQQpgEgAyAEELoBIgUgAkEDdCAEayICEJQBQbixwAAoAgAiAARAIABBA3YiAEEDdEGwrsAAaiEHQcCxwAAoAgAhBgJ/QaiuwAAoAgAiAUEBIAB0IgBxBEAgBygCCAwBC0GorsAAIAAgAXI2AgAgBwshACAHIAY2AgggACAGNgIMIAYgBzYCDCAGIAA2AggLQcCxwAAgBTYCAEG4scAAIAI2AgAgAxC8ASEDDAYLQaiuwAAgASACcjYCACAHCyEBIAcgBjYCCCABIAY2AgwgBiAHNgIMIAYgATYCCAtBwLHAACAFNgIAQbixwAAgAzYCAAwBCyAAIAMgBGoQjQELIAAQvAEiAw0BCwJAAkACQAJAAkACQAJAAkBBuLHAA
3 years ago
// src/core/parser/Parser.ts
var Parser = class {
2 years ago
async init() {
await rusty_engine_default(rusty_engine_bg_default);
const config = new ParserConfig("<%", "%>", "\0", "*", "-", "_", "tR");
this.renderer = new Renderer(config);
}
async parse_commands(content, context) {
return this.renderer.render_content(content, context);
}
};
3 years ago
// src/core/Templater.ts
var RunMode;
(function(RunMode2) {
RunMode2[RunMode2["CreateNewFromTemplate"] = 0] = "CreateNewFromTemplate";
RunMode2[RunMode2["AppendActiveFile"] = 1] = "AppendActiveFile";
RunMode2[RunMode2["OverwriteFile"] = 2] = "OverwriteFile";
RunMode2[RunMode2["OverwriteActiveFile"] = 3] = "OverwriteActiveFile";
RunMode2[RunMode2["DynamicProcessor"] = 4] = "DynamicProcessor";
RunMode2[RunMode2["StartupTemplate"] = 5] = "StartupTemplate";
})(RunMode || (RunMode = {}));
var Templater = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
2 years ago
this.functions_generator = new FunctionsGenerator(this.plugin);
this.parser = new Parser();
}
2 years ago
async setup() {
6 months ago
this.files_with_pending_templates = new Set();
2 years ago
await this.parser.init();
await this.functions_generator.init();
this.plugin.registerMarkdownPostProcessor((el, ctx) => this.process_dynamic_templates(el, ctx));
}
create_running_config(template_file, target_file, run_mode) {
const active_file = get_active_file(app);
return {
template_file,
target_file,
run_mode,
active_file
};
}
2 years ago
async read_and_parse_template(config) {
const template_content = await app.vault.read(config.template_file);
return this.parse_template(config, template_content);
}
async parse_template(config, template_content) {
const functions_object = await this.functions_generator.generate_object(config, FunctionsMode.USER_INTERNAL);
this.current_functions_object = functions_object;
const content = await this.parser.parse_commands(template_content, functions_object);
return content;
}
6 months ago
start_templater_task(path) {
this.files_with_pending_templates.add(path);
1 year ago
}
6 months ago
async end_templater_task(path) {
this.files_with_pending_templates.delete(path);
if (this.files_with_pending_templates.size === 0) {
1 year ago
app.workspace.trigger("templater:all-templates-executed");
await this.functions_generator.teardown();
}
}
2 years ago
async create_new_note_from_template(template, folder, filename, open_new_note = true) {
if (!folder) {
const new_file_location = app.vault.getConfig("newFileLocation");
switch (new_file_location) {
case "current": {
const active_file = get_active_file(app);
2 years ago
if (active_file) {
folder = active_file.parent;
}
2 years ago
break;
}
2 years ago
case "folder":
folder = app.fileManager.getNewFileParent("");
break;
case "root":
folder = app.vault.getRoot();
break;
default:
break;
}
2 years ago
}
9 months ago
const extension = template instanceof import_obsidian12.TFile ? template.extension || "md" : "md";
const created_note = await errorWrapper(async () => {
6 months ago
const folderPath = folder instanceof import_obsidian12.TFolder ? folder.path : folder;
const path2 = app.vault.getAvailablePath((0, import_obsidian12.normalizePath)(`${folderPath ?? ""}/${filename || "Untitled"}`), extension);
const folder_path = get_folder_path_from_file_path(path2);
9 months ago
if (folder_path && !app.vault.getAbstractFileByPathInsensitive(folder_path)) {
await app.vault.createFolder(folder_path);
}
6 months ago
return app.vault.create(path2, "");
9 months ago
}, `Couldn't create ${extension} file.`);
1 year ago
if (created_note == null) {
return;
}
6 months ago
const { path } = created_note;
this.start_templater_task(path);
2 years ago
let running_config;
let output_content;
1 year ago
if (template instanceof import_obsidian12.TFile) {
2 years ago
running_config = this.create_running_config(template, created_note, 0);
output_content = await errorWrapper(async () => this.read_and_parse_template(running_config), "Template parsing error, aborting.");
} else {
running_config = this.create_running_config(void 0, created_note, 0);
output_content = await errorWrapper(async () => this.parse_template(running_config, template), "Template parsing error, aborting.");
}
if (output_content == null) {
await app.vault.delete(created_note);
6 months ago
await this.end_templater_task(path);
2 years ago
return;
}
await app.vault.modify(created_note, output_content);
app.workspace.trigger("templater:new-note-from-template", {
file: created_note,
content: output_content
3 years ago
});
2 years ago
if (open_new_note) {
const active_leaf = app.workspace.getLeaf(false);
if (!active_leaf) {
log_error(new TemplaterError("No active leaf"));
return;
}
2 years ago
await active_leaf.openFile(created_note, {
state: { mode: "source" }
});
await this.plugin.editor_handler.jump_to_next_cursor_location(created_note, true);
active_leaf.setEphemeralState({
rename: "all"
});
2 years ago
}
6 months ago
await this.end_templater_task(path);
2 years ago
return created_note;
}
async append_template_to_active_file(template_file) {
1 year ago
const active_view = app.workspace.getActiveViewOfType(import_obsidian12.MarkdownView);
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.file || !active_editor.editor) {
log_error(new TemplaterError("No active editor, can't append templates."));
2 years ago
return;
}
6 months ago
const { path } = active_editor.file;
this.start_templater_task(path);
1 year ago
const running_config = this.create_running_config(template_file, active_editor.file, 1);
2 years ago
const output_content = await errorWrapper(async () => this.read_and_parse_template(running_config), "Template parsing error, aborting.");
if (output_content == null) {
6 months ago
await this.end_templater_task(path);
2 years ago
return;
}
1 year ago
const editor = active_editor.editor;
2 years ago
const doc = editor.getDoc();
const oldSelections = doc.listSelections();
doc.replaceSelection(output_content);
6 months ago
if (active_editor.file) {
await app.vault.append(active_editor.file, "");
}
2 years ago
app.workspace.trigger("templater:template-appended", {
view: active_view,
1 year ago
editor: active_editor,
2 years ago
content: output_content,
oldSelections,
newSelections: doc.listSelections()
3 years ago
});
1 year ago
await this.plugin.editor_handler.jump_to_next_cursor_location(active_editor.file, true);
6 months ago
await this.end_templater_task(path);
}
2 years ago
async write_template_to_file(template_file, file) {
6 months ago
const { path } = file;
this.start_templater_task(path);
1 year ago
const active_editor = app.workspace.activeEditor;
9 months ago
const active_file = get_active_file(app);
2 years ago
const running_config = this.create_running_config(template_file, file, 2);
const output_content = await errorWrapper(async () => this.read_and_parse_template(running_config), "Template parsing error, aborting.");
if (output_content == null) {
6 months ago
await this.end_templater_task(path);
2 years ago
return;
}
await app.vault.modify(file, output_content);
9 months ago
if (active_file?.path === file.path && active_editor && active_editor.editor) {
1 year ago
const editor = active_editor.editor;
editor.setSelection({ line: 0, ch: 0 }, { line: 0, ch: 0 });
}
2 years ago
app.workspace.trigger("templater:new-note-from-template", {
file,
content: output_content
3 years ago
});
2 years ago
await this.plugin.editor_handler.jump_to_next_cursor_location(file, true);
6 months ago
await this.end_templater_task(path);
}
overwrite_active_file_commands() {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.file) {
log_error(new TemplaterError("Active editor is null, can't overwrite content"));
return;
}
1 year ago
this.overwrite_file_commands(active_editor.file, true);
}
2 years ago
async overwrite_file_commands(file, active_file = false) {
6 months ago
const { path } = file;
this.start_templater_task(path);
2 years ago
const running_config = this.create_running_config(file, file, active_file ? 3 : 2);
const output_content = await errorWrapper(async () => this.read_and_parse_template(running_config), "Template parsing error, aborting.");
if (output_content == null) {
6 months ago
await this.end_templater_task(path);
2 years ago
return;
}
await app.vault.modify(file, output_content);
app.workspace.trigger("templater:overwrite-file", {
file,
content: output_content
3 years ago
});
2 years ago
await this.plugin.editor_handler.jump_to_next_cursor_location(file, true);
6 months ago
await this.end_templater_task(path);
2 years ago
}
async process_dynamic_templates(el, ctx) {
const dynamic_command_regex = generate_dynamic_command_regex();
const walker = document.createNodeIterator(el, NodeFilter.SHOW_TEXT);
let node;
let pass = false;
let functions_object;
while (node = walker.nextNode()) {
let content = node.nodeValue;
if (content !== null) {
let match = dynamic_command_regex.exec(content);
if (match !== null) {
const file = app.metadataCache.getFirstLinkpathDest("", ctx.sourcePath);
1 year ago
if (!file || !(file instanceof import_obsidian12.TFile)) {
2 years ago
return;
}
2 years ago
if (!pass) {
pass = true;
const config = this.create_running_config(file, file, 4);
functions_object = await this.functions_generator.generate_object(config, FunctionsMode.USER_INTERNAL);
this.current_functions_object = functions_object;
}
}
2 years ago
while (match != null) {
const complete_command = match[1] + match[2];
const command_output = await errorWrapper(async () => {
return await this.parser.parse_commands(complete_command, functions_object);
}, `Command Parsing error in dynamic command '${complete_command}'`);
if (command_output == null) {
return;
}
const start2 = dynamic_command_regex.lastIndex - match[0].length;
const end2 = dynamic_command_regex.lastIndex;
content = content.substring(0, start2) + command_output + content.substring(end2);
dynamic_command_regex.lastIndex += command_output.length - match[0].length;
match = dynamic_command_regex.exec(content);
}
node.nodeValue = content;
}
2 years ago
}
}
get_new_file_template_for_folder(folder) {
do {
const match = this.plugin.settings.folder_templates.find((e) => e.folder == folder.path);
if (match && match.template) {
return match.template;
}
folder = folder.parent;
} while (folder);
}
2 years ago
static async on_file_creation(templater, file) {
1 year ago
if (!(file instanceof import_obsidian12.TFile) || file.extension !== "md") {
2 years ago
return;
}
1 year ago
const template_folder = (0, import_obsidian12.normalizePath)(templater.plugin.settings.templates_folder);
2 years ago
if (file.path.includes(template_folder) && template_folder !== "/") {
return;
}
await delay(300);
6 months ago
if (templater.files_with_pending_templates.has(file.path)) {
return;
}
2 years ago
if (file.stat.size == 0 && templater.plugin.settings.enable_folder_templates) {
const folder_template_match = templater.get_new_file_template_for_folder(file.parent);
if (!folder_template_match) {
return;
}
2 years ago
const template_file = await errorWrapper(async () => {
return resolve_tfile(folder_template_match);
}, `Couldn't find template ${folder_template_match}`);
if (template_file == null) {
return;
}
2 years ago
await templater.write_template_to_file(template_file, file);
} else {
if (file.stat.size <= 1e5) {
await templater.overwrite_file_commands(file);
} else {
2 years ago
console.log(`Templater skipped parsing ${file.path} because file size exceeds 10000`);
}
2 years ago
}
}
2 years ago
async execute_startup_scripts() {
for (const template of this.plugin.settings.startup_templates) {
if (!template) {
continue;
}
2 years ago
const file = errorWrapperSync(() => resolve_tfile(template), `Couldn't find startup template "${template}"`);
if (!file) {
continue;
}
6 months ago
const { path } = file;
this.start_templater_task(path);
2 years ago
const running_config = this.create_running_config(file, file, 5);
await errorWrapper(async () => this.read_and_parse_template(running_config), `Startup Template parsing error, aborting.`);
6 months ago
await this.end_templater_task(path);
2 years ago
}
}
};
3 years ago
// src/handlers/EventHandler.ts
1 year ago
var import_obsidian13 = __toModule(require("obsidian"));
var EventHandler = class {
2 years ago
constructor(plugin, templater, settings) {
this.plugin = plugin;
this.templater = templater;
this.settings = settings;
}
setup() {
9 months ago
this.plugin.app.workspace.onLayoutReady(() => {
this.update_trigger_file_on_creation();
});
this.update_syntax_highlighting();
this.update_file_menu();
}
update_syntax_highlighting() {
1 year ago
const desktopShouldHighlight = this.plugin.editor_handler.desktopShouldHighlight();
const mobileShouldHighlight = this.plugin.editor_handler.mobileShouldHighlight();
if (desktopShouldHighlight || mobileShouldHighlight) {
9 months ago
this.plugin.editor_handler.enable_highlighter();
} else {
9 months ago
this.plugin.editor_handler.disable_highlighter();
3 years ago
}
}
update_trigger_file_on_creation() {
if (this.settings.trigger_on_file_creation) {
9 months ago
this.trigger_on_file_creation_event = this.plugin.app.vault.on("create", (file) => Templater.on_file_creation(this.templater, file));
this.plugin.registerEvent(this.trigger_on_file_creation_event);
} else {
if (this.trigger_on_file_creation_event) {
9 months ago
this.plugin.app.vault.offref(this.trigger_on_file_creation_event);
this.trigger_on_file_creation_event = void 0;
}
3 years ago
}
}
update_file_menu() {
9 months ago
this.plugin.registerEvent(this.plugin.app.workspace.on("file-menu", (menu, file) => {
1 year ago
if (file instanceof import_obsidian13.TFolder) {
menu.addItem((item) => {
item.setTitle("Create new note from template").setIcon("templater-icon").onClick(() => {
this.plugin.fuzzy_suggester.create_new_note_from_template(file);
});
3 years ago
});
}
}));
}
};
// src/handlers/CommandHandler.ts
var CommandHandler = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
}
setup() {
this.plugin.addCommand({
id: "insert-templater",
name: "Open Insert Template modal",
9 months ago
icon: "templater-icon",
hotkeys: [
{
modifiers: ["Alt"],
key: "e"
}
],
callback: () => {
this.plugin.fuzzy_suggester.insert_template();
}
});
this.plugin.addCommand({
id: "replace-in-file-templater",
name: "Replace templates in the active file",
9 months ago
icon: "templater-icon",
hotkeys: [
{
modifiers: ["Alt"],
key: "r"
}
],
callback: () => {
this.plugin.templater.overwrite_active_file_commands();
}
});
this.plugin.addCommand({
id: "jump-to-next-cursor-location",
name: "Jump to next cursor location",
9 months ago
icon: "text-cursor",
hotkeys: [
{
modifiers: ["Alt"],
key: "Tab"
}
],
callback: () => {
this.plugin.editor_handler.jump_to_next_cursor_location();
}
});
this.plugin.addCommand({
id: "create-new-note-from-template",
name: "Create new note from template",
9 months ago
icon: "templater-icon",
hotkeys: [
{
modifiers: ["Alt"],
key: "n"
}
],
callback: () => {
this.plugin.fuzzy_suggester.create_new_note_from_template();
}
});
this.register_templates_hotkeys();
}
register_templates_hotkeys() {
this.plugin.settings.enabled_templates_hotkeys.forEach((template) => {
if (template) {
this.add_template_hotkey(null, template);
}
});
}
add_template_hotkey(old_template, new_template) {
this.remove_template_hotkey(old_template);
if (new_template) {
this.plugin.addCommand({
id: new_template,
name: `Insert ${new_template}`,
9 months ago
icon: "templater-icon",
callback: () => {
2 years ago
const template = errorWrapperSync(() => resolve_tfile(new_template), `Couldn't find the template file associated with this hotkey`);
if (!template) {
return;
}
this.plugin.templater.append_template_to_active_file(template);
}
});
3 years ago
}
}
remove_template_hotkey(template) {
if (template) {
2 years ago
app.commands.removeCommand(`${this.plugin.manifest.id}:${template}`);
3 years ago
}
}
};
3 years ago
// src/editor/Editor.ts
1 year ago
var import_obsidian16 = __toModule(require("obsidian"));
3 years ago
// src/editor/CursorJumper.ts
1 year ago
var import_obsidian14 = __toModule(require("obsidian"));
var CursorJumper = class {
2 years ago
constructor() {
}
2 years ago
async jump_to_next_cursor_location() {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.editor) {
2 years ago
return;
}
1 year ago
const content = active_editor.editor.getValue();
2 years ago
const { new_content, positions } = this.replace_and_get_cursor_positions(content);
if (positions) {
1 year ago
const fold_info = active_editor instanceof import_obsidian14.MarkdownView ? active_editor.currentMode.getFoldInfo() : null;
1 year ago
active_editor.editor.setValue(new_content);
1 year ago
if (fold_info && Array.isArray(fold_info.folds)) {
positions.forEach((position) => {
fold_info.folds = fold_info.folds.filter((fold) => fold.from > position.line || fold.to < position.line);
});
if (active_editor instanceof import_obsidian14.MarkdownView) {
active_editor.currentMode.applyFoldInfo(fold_info);
}
}
2 years ago
this.set_cursor_location(positions);
}
if (app.vault.getConfig("vimMode")) {
1 year ago
const cm = active_editor.editor.cm.cm;
2 years ago
window.CodeMirrorAdapter.Vim.handleKey(cm, "i", "mapping");
}
}
get_editor_position_from_index(content, index) {
const substr = content.slice(0, index);
let l = 0;
let offset2 = -1;
let r = -1;
for (; (r = substr.indexOf("\n", r + 1)) !== -1; l++, offset2 = r)
;
offset2 += 1;
const ch = content.slice(offset2, index).length;
return { line: l, ch };
}
replace_and_get_cursor_positions(content) {
let cursor_matches = [];
let match;
1 year ago
const cursor_regex = new RegExp("<%\\s*tp.file.cursor\\((?<order>[0-9]*)\\)\\s*%>", "g");
while ((match = cursor_regex.exec(content)) != null) {
cursor_matches.push(match);
}
if (cursor_matches.length === 0) {
return {};
}
cursor_matches.sort((m1, m2) => {
2 years ago
return Number(m1.groups && m1.groups["order"]) - Number(m2.groups && m2.groups["order"]);
});
const match_str = cursor_matches[0][0];
cursor_matches = cursor_matches.filter((m) => {
return m[0] === match_str;
});
const positions = [];
let index_offset = 0;
for (const match2 of cursor_matches) {
const index = match2.index - index_offset;
positions.push(this.get_editor_position_from_index(content, index));
content = content.replace(new RegExp(escape_RegExp(match2[0])), "");
index_offset += match2[0].length;
if (match2[1] === "") {
break;
}
}
return { new_content: content, positions };
}
set_cursor_location(positions) {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.editor) {
return;
}
1 year ago
const editor = active_editor.editor;
const selections = [];
for (const pos of positions) {
selections.push({ from: pos });
}
const transaction = {
selections
};
editor.transaction(transaction);
}
};
3 years ago
// src/editor/Autocomplete.ts
1 year ago
var import_obsidian15 = __toModule(require("obsidian"));
3 years ago
// toml:/home/runner/work/Templater/Templater/docs/documentation.toml
6 months ago
var tp = { config: { name: "config", description: "This module exposes Templater's running configuration.\n\nThis is mostly useful when writing scripts requiring some context information.\n", functions: { template_file: { name: "template_file", description: "The `TFile` object representing the template file.", definition: "tp.config.template_file" }, target_file: { name: "target_file", description: "The `TFile` object representing the target file where the template will be inserted.", definition: "tp.config.target_file" }, run_mode: { name: "run_mode", description: "The `RunMode`, representing the way Templater was launched (Create new from template, Append to active file, ...).", definition: "tp.config.run_mode" }, active_file: { name: "active_file", description: "The active file (if existing) when launching Templater.", definition: "tp.config.active_file?" } } }, date: { name: "date", description: "This module contains every internal function related to dates.", functions: { now: { name: "now", description: "Retrieves the date.", definition: 'tp.date.now(format: string = "YYYY-MM-DD", offset?: number\u23AEstring, reference?: string, reference_format?: string)', args: [{ name: "format", description: 'The format for the date. Defaults to `"YYYY-MM-DD"`. Refer to [format reference](https://momentjs.com/docs/#/displaying/format/).' }, { name: "offset", description: "Duration to offset the date from. If a number is provided, duration will be added to the date in days. You can also specify the offset as a string using the ISO 8601 format." }, { name: "reference", description: "The date referential, e.g. set this to the note's title." }, { name: "reference_format", description: "The format for the reference date. Refer to [format reference](https://momentjs.com/docs/#/displaying/format/)." }], examples: [{ name: "Date now", example: "<% tp.date.now() %>" }, { name: "Date now with format", example: '<% tp.date.now("Do MMMM YYYY") %>' }, { name: "Last week", example: '<% tp.date.now("YYYY-MM-DD", -7) %>' }, { name: "Next week", example: '<% tp.date.now("YYYY-MM-DD", 7) %>' }, { name: "Last month", example: '<% tp.date.now("YYYY-MM-DD", "P-1M") %>' }, { name: "Next year", example: '<% tp.date.now("YYYY-MM-DD", "P1Y") %>' }, { name: "File's title date + 1 day (tomorrow)", example: '<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>' }, { name: "File's title date - 1 day (yesterday)", example: '<% tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>' }] }, tomorrow: { name: "tomorrow", description: "Retrieves tomorrow's date.", definition: 'tp.date.tomorrow(format: string = "YYYY-MM-DD")', args: [{ name: "format", description: 'The format for the date. Defaults to `"YYYY-MM-DD"`. Refer to [format reference](https://momentjs.com/docs/#/displaying/format/).' }], examples: [{ name: "Date tomorrow", example: "<% tp.date.tomorrow() %>" }, { name: "Date tomorrow with format", example: '<% tp.date.tomorrow("Do MMMM YYYY") %>' }] }, yesterday: { name: "yesterday", description: "Retrieves yesterday's date.", definition: 'tp.date.yesterday(format: string = "YYYY-MM-DD")', args: [{ name: "format", description: 'The format for the date. Defaults to `"YYYY-MM-DD"`. Refer to [format reference](https://momentjs.com/docs/#/displaying/format/).' }], examples: [{ name: "Date yesterday", example: "<% tp.date.yesterday() %>" }, { name: "Date yesterday with format", example: '<% tp.date.yesterday("Do MMMM YYYY") %>' }] }, weekday: { name: "weekday", description: "", definition: 'tp.date.weekday(format: string = "YYYY-MM-DD", weekday: number, reference?: string, reference_format?: string)', args: [{ name: "format", description: 'The format for the date. Defaults to `"YYYY-MM-DD"`. Refer to [format reference](https://momentjs.com/docs/#/displaying/format/).' }, { name: "weekday", description: "Week day number. If the locale assigns Monday as the first day of the week, `0` will be Monday, `-7` will be last week's day." }, { name: "reference", description: "The date referential, e.g. set this to the note's title." }, { name: "refere
var documentation_default = { tp };
3 years ago
// src/editor/TpDocumentation.ts
2 years ago
var module_names = [
"config",
"date",
"file",
"frontmatter",
1 year ago
"hooks",
2 years ago
"obsidian",
"system",
"user",
"web"
];
var module_names_checker = new Set(module_names);
function is_module_name(x) {
return typeof x === "string" && module_names_checker.has(x);
3 years ago
}
function is_function_documentation(x) {
if (x.definition) {
return true;
}
return false;
3 years ago
}
var Documentation = class {
constructor(settings) {
this.settings = settings;
this.documentation = documentation_default;
}
get_all_modules_documentation() {
return Object.values(this.documentation.tp);
}
get_all_functions_documentation(module_name) {
if (module_name === "user") {
if (!this.settings || !this.settings.user_scripts_folder)
return;
const files = errorWrapperSync(() => get_tfiles_from_folder(this.settings.user_scripts_folder), `User Scripts folder doesn't exist`);
if (!files || files.length === 0)
return;
return files.reduce((processedFiles, file) => {
if (file.extension !== "js")
return processedFiles;
return [
...processedFiles,
{
name: file.basename,
definition: "",
description: "",
example: ""
}
];
}, []);
}
if (!this.documentation.tp[module_name].functions) {
2 years ago
return;
3 years ago
}
return Object.values(this.documentation.tp[module_name].functions);
}
get_module_documentation(module_name) {
return this.documentation.tp[module_name];
}
get_function_documentation(module_name, function_name) {
return this.documentation.tp[module_name].functions[function_name];
}
get_argument_documentation(module_name, function_name, argument_name) {
const function_doc = this.get_function_documentation(module_name, function_name);
if (!function_doc || !function_doc.args) {
return null;
}
return function_doc.args[argument_name];
}
};
3 years ago
// src/editor/Autocomplete.ts
1 year ago
var Autocomplete = class extends import_obsidian15.EditorSuggest {
constructor(settings) {
super(app);
this.tp_keyword_regex = /tp\.(?<module>[a-z]*)?(?<fn_trigger>\.(?<fn>[a-z_]*)?)?$/;
this.documentation = new Documentation(settings);
}
2 years ago
onTrigger(cursor, editor, _file) {
const range = editor.getRange({ line: cursor.line, ch: 0 }, { line: cursor.line, ch: cursor.ch });
const match = this.tp_keyword_regex.exec(range);
if (!match) {
return null;
3 years ago
}
let query;
2 years ago
const module_name = match.groups && match.groups["module"] || "";
this.module_name = module_name;
2 years ago
if (match.groups && match.groups["fn_trigger"]) {
if (module_name == "" || !is_module_name(module_name)) {
2 years ago
return null;
}
this.function_trigger = true;
this.function_name = match.groups["fn"] || "";
query = this.function_name;
} else {
this.function_trigger = false;
query = this.module_name;
3 years ago
}
const trigger_info = {
start: { line: cursor.line, ch: cursor.ch - query.length },
end: { line: cursor.line, ch: cursor.ch },
query
};
this.latest_trigger_info = trigger_info;
return trigger_info;
}
getSuggestions(context) {
let suggestions;
if (this.module_name && this.function_trigger) {
suggestions = this.documentation.get_all_functions_documentation(this.module_name);
} else {
suggestions = this.documentation.get_all_modules_documentation();
3 years ago
}
if (!suggestions) {
return [];
3 years ago
}
return suggestions.filter((s) => s.name.startsWith(context.query));
}
renderSuggestion(value, el) {
el.createEl("b", { text: value.name });
el.createEl("br");
if (this.function_trigger && is_function_documentation(value)) {
el.createEl("code", { text: value.definition });
3 years ago
}
if (value.description) {
el.createEl("div", { text: value.description });
3 years ago
}
}
2 years ago
selectSuggestion(value, _evt) {
1 year ago
const active_editor = app.workspace.activeEditor;
if (!active_editor || !active_editor.editor) {
return;
3 years ago
}
1 year ago
active_editor.editor.replaceRange(value.name, this.latest_trigger_info.start, this.latest_trigger_info.end);
if (this.latest_trigger_info.start.ch == this.latest_trigger_info.end.ch) {
const cursor_pos = this.latest_trigger_info.end;
cursor_pos.ch += value.name.length;
1 year ago
active_editor.editor.setCursor(cursor_pos);
3 years ago
}
}
};
// src/editor/mode/javascript.js
(function(mod) {
mod(window.CodeMirror);
})(function(CodeMirror) {
"use strict";
2 years ago
CodeMirror.defineMode("javascript", function(config, parserConfig) {
var indentUnit = config.indentUnit;
var statementIndent = parserConfig.statementIndent;
var jsonldMode = parserConfig.jsonld;
var jsonMode = parserConfig.json || jsonldMode;
var trackScope = parserConfig.trackScope !== false;
var isTS = parserConfig.typescript;
var wordRE = parserConfig.wordCharacters || /[\w$\xa1-\uffff]/;
var keywords = function() {
function kw(type2) {
return { type: type2, style: "keyword" };
}
var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"), D = kw("keyword d");
var operator = kw("operator"), atom = { type: "atom", style: "atom" };
return {
if: kw("if"),
while: A,
with: A,
else: B,
do: B,
try: B,
finally: B,
return: D,
break: D,
continue: D,
new: kw("new"),
delete: C,
void: C,
throw: C,
debugger: kw("debugger"),
var: kw("var"),
const: kw("var"),
let: kw("var"),
function: kw("function"),
catch: kw("catch"),
for: kw("for"),
switch: kw("switch"),
case: kw("case"),
default: kw("default"),
in: operator,
typeof: operator,
instanceof: operator,
true: atom,
false: atom,
null: atom,
undefined: atom,
NaN: atom,
Infinity: atom,
this: kw("this"),
class: kw("class"),
super: kw("atom"),
yield: C,
export: kw("export"),
import: kw("import"),
extends: C,
await: C
};
}();
var isOperatorChar = /[+\-*&%=<>!?|~^@]/;
var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
function readRegexp(stream) {
var escaped = false, next, inSet = false;
while ((next = stream.next()) != null) {
if (!escaped) {
if (next == "/" && !inSet)
3 years ago
return;
if (next == "[")
inSet = true;
else if (inSet && next == "]")
inSet = false;
3 years ago
}
escaped = !escaped && next == "\\";
}
3 years ago
}
var type, content;
function ret(tp2, style, cont2) {
type = tp2;
content = cont2;
return style;
}
function tokenBase(stream, state) {
var ch = stream.next();
if (ch == '"' || ch == "'") {
state.tokenize = tokenString(ch);
return state.tokenize(stream, state);
} else if (ch == "." && stream.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/)) {
return ret("number", "number");
} else if (ch == "." && stream.match("..")) {
return ret("spread", "meta");
} else if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
return ret(ch);
} else if (ch == "=" && stream.eat(">")) {
return ret("=>", "operator");
} else if (ch == "0" && stream.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/)) {
return ret("number", "number");
} else if (/\d/.test(ch)) {
stream.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/);
return ret("number", "number");
} else if (ch == "/") {
if (stream.eat("*")) {
state.tokenize = tokenComment;
return tokenComment(stream, state);
} else if (stream.eat("/")) {
stream.skipToEnd();
return ret("comment", "comment");
} else if (expressionAllowed(stream, state, 1)) {
readRegexp(stream);
stream.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/);
return ret("regexp", "string-2");
} else {
stream.eat("=");
return ret("operator", "operator", stream.current());
}
} else if (ch == "`") {
state.tokenize = tokenQuasi;
return tokenQuasi(stream, state);
} else if (ch == "#" && stream.peek() == "!") {
stream.skipToEnd();
return ret("meta", "meta");
} else if (ch == "#" && stream.eatWhile(wordRE)) {
return ret("variable", "property");
} else if (ch == "<" && stream.match("!--") || ch == "-" && stream.match("->") && !/\S/.test(stream.string.slice(0, stream.start))) {
stream.skipToEnd();
return ret("comment", "comment");
} else if (isOperatorChar.test(ch)) {
if (ch != ">" || !state.lexical || state.lexical.type != ">") {
if (stream.eat("=")) {
if (ch == "!" || ch == "=")
stream.eat("=");
} else if (/[<>*+\-|&?]/.test(ch)) {
stream.eat(ch);
if (ch == ">")
stream.eat(ch);
}
}
if (ch == "?" && stream.eat("."))
return ret(".");
return ret("operator", "operator", stream.current());
} else if (wordRE.test(ch)) {
stream.eatWhile(wordRE);
var word = stream.current();
if (state.lastType != ".") {
if (keywords.propertyIsEnumerable(word)) {
var kw = keywords[word];
return ret(kw.type, kw.style, word);
}
if (word == "async" && stream.match(/^(\s|\/\*([^*]|\*(?!\/))*?\*\/)*[\[\(\w]/, false))
return ret("async", "keyword", word);
}
return ret("variable", "variable", word);
}
3 years ago
}
function tokenString(quote) {
return function(stream, state) {
var escaped = false, next;
if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)) {
state.tokenize = tokenBase;
return ret("jsonld-keyword", "meta");
}
while ((next = stream.next()) != null) {
if (next == quote && !escaped)
break;
escaped = !escaped && next == "\\";
}
if (!escaped)
state.tokenize = tokenBase;
return ret("string", "string");
};
3 years ago
}
function tokenComment(stream, state) {
var maybeEnd = false, ch;
while (ch = stream.next()) {
if (ch == "/" && maybeEnd) {
state.tokenize = tokenBase;
break;
}
maybeEnd = ch == "*";
}
return ret("comment", "comment");
3 years ago
}
function tokenQuasi(stream, state) {
var escaped = false, next;
while ((next = stream.next()) != null) {
if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) {
state.tokenize = tokenBase;
break;
3 years ago
}
escaped = !escaped && next == "\\";
}
return ret("quasi", "string-2", stream.current());
}
var brackets = "([{}])";
function findFatArrow(stream, state) {
if (state.fatArrowAt)
state.fatArrowAt = null;
var arrow2 = stream.string.indexOf("=>", stream.start);
if (arrow2 < 0)
return;
if (isTS) {
var m = /:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(stream.string.slice(stream.start, arrow2));
if (m)
arrow2 = m.index;
}
var depth = 0, sawSomething = false;
for (var pos = arrow2 - 1; pos >= 0; --pos) {
var ch = stream.string.charAt(pos);
var bracket = brackets.indexOf(ch);
if (bracket >= 0 && bracket < 3) {
if (!depth) {
++pos;
break;
}
if (--depth == 0) {
if (ch == "(")
sawSomething = true;
break;
}
} else if (bracket >= 3 && bracket < 6) {
++depth;
} else if (wordRE.test(ch)) {
sawSomething = true;
} else if (/["'\/`]/.test(ch)) {
for (; ; --pos) {
if (pos == 0)
return;
var next = stream.string.charAt(pos - 1);
if (next == ch && stream.string.charAt(pos - 2) != "\\") {
pos--;
break;
3 years ago
}
}
} else if (sawSomething && !depth) {
++pos;
break;
3 years ago
}
}
if (sawSomething && !depth)
state.fatArrowAt = pos;
}
var atomicTypes = {
atom: true,
number: true,
variable: true,
string: true,
regexp: true,
this: true,
import: true,
"jsonld-keyword": true
};
function JSLexical(indented, column, type2, align, prev, info) {
this.indented = indented;
this.column = column;
this.type = type2;
this.prev = prev;
this.info = info;
if (align != null)
this.align = align;
}
function inScope(state, varname) {
if (!trackScope)
return false;
for (var v = state.localVars; v; v = v.next)
if (v.name == varname)
return true;
for (var cx2 = state.context; cx2; cx2 = cx2.prev) {
for (var v = cx2.vars; v; v = v.next)
if (v.name == varname)
return true;
}
3 years ago
}
function parseJS(state, style, type2, content2, stream) {
var cc = state.cc;
cx.state = state;
cx.stream = stream;
cx.marked = null, cx.cc = cc;
cx.style = style;
if (!state.lexical.hasOwnProperty("align"))
state.lexical.align = true;
while (true) {
var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
if (combinator(type2, content2)) {
while (cc.length && cc[cc.length - 1].lex)
cc.pop()();
if (cx.marked)
return cx.marked;
if (type2 == "variable" && inScope(state, content2))
return "variable-2";
return style;
3 years ago
}
}
3 years ago
}
var cx = { state: null, column: null, marked: null, cc: null };
function pass() {
for (var i = arguments.length - 1; i >= 0; i--)
cx.cc.push(arguments[i]);
3 years ago
}
function cont() {
pass.apply(null, arguments);
return true;
3 years ago
}
function inList(name, list) {
for (var v = list; v; v = v.next)
if (v.name == name)
return true;
return false;
3 years ago
}
function register(varname) {
var state = cx.state;
cx.marked = "def";
if (!trackScope)
return;
if (state.context) {
if (state.lexical.info == "var" && state.context && state.context.block) {
var newContext = registerVarScoped(varname, state.context);
if (newContext != null) {
state.context = newContext;
return;
}
} else if (!inList(varname, state.localVars)) {
state.localVars = new Var(varname, state.localVars);
return;
3 years ago
}
}
if (parserConfig.globalVars && !inList(varname, state.globalVars))
state.globalVars = new Var(varname, state.globalVars);
}
function registerVarScoped(varname, context) {
if (!context) {
return null;
} else if (context.block) {
var inner = registerVarScoped(varname, context.prev);
if (!inner)
return null;
if (inner == context.prev)
return context;
return new Context(inner, context.vars, true);
} else if (inList(varname, context.vars)) {
return context;
} else {
return new Context(context.prev, new Var(varname, context.vars), false);
}
}
function isModifier(name) {
return name == "public" || name == "private" || name == "protected" || name == "abstract" || name == "readonly";
}
function Context(prev, vars, block2) {
this.prev = prev;
this.vars = vars;
this.block = block2;
}
function Var(name, next) {
this.name = name;
this.next = next;
}
var defaultVars = new Var("this", new Var("arguments", null));
function pushcontext() {
cx.state.context = new Context(cx.state.context, cx.state.localVars, false);
cx.state.localVars = defaultVars;
}
function pushblockcontext() {
cx.state.context = new Context(cx.state.context, cx.state.localVars, true);
cx.state.localVars = null;
}
function popcontext() {
cx.state.localVars = cx.state.context.vars;
cx.state.context = cx.state.context.prev;
}
popcontext.lex = true;
function pushlex(type2, info) {
var result = function() {
var state = cx.state, indent = state.indented;
if (state.lexical.type == "stat")
indent = state.lexical.indented;
else
for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev)
indent = outer.indented;
state.lexical = new JSLexical(indent, cx.stream.column(), type2, null, state.lexical, info);
};
result.lex = true;
return result;
}
function poplex() {
var state = cx.state;
if (state.lexical.prev) {
if (state.lexical.type == ")")
state.indented = state.lexical.indented;
state.lexical = state.lexical.prev;
}
3 years ago
}
poplex.lex = true;
function expect(wanted) {
function exp(type2) {
if (type2 == wanted)
return cont();
else if (wanted == ";" || type2 == "}" || type2 == ")" || type2 == "]")
return pass();
else
return cont(exp);
}
return exp;
}
function statement(type2, value) {
if (type2 == "var")
return cont(pushlex("vardef", value), vardef, expect(";"), poplex);
if (type2 == "keyword a")
return cont(pushlex("form"), parenExpr, statement, poplex);
if (type2 == "keyword b")
return cont(pushlex("form"), statement, poplex);
if (type2 == "keyword d")
return cx.stream.match(/^\s*$/, false) ? cont() : cont(pushlex("stat"), maybeexpression, expect(";"), poplex);
if (type2 == "debugger")
return cont(expect(";"));
if (type2 == "{")
return cont(pushlex("}"), pushblockcontext, block, poplex, popcontext);
if (type2 == ";")
return cont();
if (type2 == "if") {
if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
cx.state.cc.pop()();
return cont(pushlex("form"), parenExpr, statement, poplex, maybeelse);
}
if (type2 == "function")
return cont(functiondef);
if (type2 == "for")
return cont(pushlex("form"), pushblockcontext, forspec, statement, popcontext, poplex);
if (type2 == "class" || isTS && value == "interface") {
cx.marked = "keyword";
return cont(pushlex("form", type2 == "class" ? type2 : value), className, poplex);
}
if (type2 == "variable") {
if (isTS && value == "declare") {
cx.marked = "keyword";
return cont(statement);
} else if (isTS && (value == "module" || value == "enum" || value == "type") && cx.stream.match(/^\s*\w/, false)) {
cx.marked = "keyword";
if (value == "enum")
return cont(enumdef);
else if (value == "type")
return cont(typename, expect("operator"), typeexpr, expect(";"));
else
return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex);
} else if (isTS && value == "namespace") {
cx.marked = "keyword";
return cont(pushlex("form"), expression, statement, poplex);
} else if (isTS && value == "abstract") {
cx.marked = "keyword";
return cont(statement);
} else {
return cont(pushlex("stat"), maybelabel);
3 years ago
}
}
if (type2 == "switch")
return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"), pushblockcontext, block, poplex, poplex, popcontext);
if (type2 == "case")
return cont(expression, expect(":"));
if (type2 == "default")
return cont(expect(":"));
if (type2 == "catch")
return cont(pushlex("form"), pushcontext, maybeCatchBinding, statement, poplex, popcontext);
if (type2 == "export")
return cont(pushlex("stat"), afterExport, poplex);
if (type2 == "import")
return cont(pushlex("stat"), afterImport, poplex);
if (type2 == "async")
return cont(statement);
if (value == "@")
return cont(expression, statement);
return pass(pushlex("stat"), expression, expect(";"), poplex);
}
function maybeCatchBinding(type2) {
if (type2 == "(")
return cont(funarg, expect(")"));
}
function expression(type2, value) {
return expressionInner(type2, value, false);
}
function expressionNoComma(type2, value) {
return expressionInner(type2, value, true);
}
function parenExpr(type2) {
if (type2 != "(")
return pass();
return cont(pushlex(")"), maybeexpression, expect(")"), poplex);
}
function expressionInner(type2, value, noComma) {
if (cx.state.fatArrowAt == cx.stream.start) {
var body = noComma ? arrowBodyNoComma : arrowBody;
if (type2 == "(")
return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, expect("=>"), body, popcontext);
else if (type2 == "variable")
return pass(pushcontext, pattern, expect("=>"), body, popcontext);
}
var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
if (atomicTypes.hasOwnProperty(type2))
return cont(maybeop);
if (type2 == "function")
return cont(functiondef, maybeop);
if (type2 == "class" || isTS && value == "interface") {
cx.marked = "keyword";
return cont(pushlex("form"), classExpression, poplex);
}
if (type2 == "keyword c" || type2 == "async")
return cont(noComma ? expressionNoComma : expression);
if (type2 == "(")
return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop);
if (type2 == "operator" || type2 == "spread")
return cont(noComma ? expressionNoComma : expression);
if (type2 == "[")
return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
if (type2 == "{")
return contCommasep(objprop, "}", null, maybeop);
if (type2 == "quasi")
return pass(quasi, maybeop);
if (type2 == "new")
return cont(maybeTarget(noComma));
return cont();
}
function maybeexpression(type2) {
if (type2.match(/[;\}\)\],]/))
return pass();
return pass(expression);
}
function maybeoperatorComma(type2, value) {
if (type2 == ",")
return cont(maybeexpression);
return maybeoperatorNoComma(type2, value, false);
}
function maybeoperatorNoComma(type2, value, noComma) {
var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;
var expr = noComma == false ? expression : expressionNoComma;
if (type2 == "=>")
return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
if (type2 == "operator") {
if (/\+\+|--/.test(value) || isTS && value == "!")
return cont(me);
if (isTS && value == "<" && cx.stream.match(/^([^<>]|<[^<>]*>)*>\s*\(/, false))
return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, me);
if (value == "?")
return cont(expression, expect(":"), expr);
return cont(expr);
}
if (type2 == "quasi") {
return pass(quasi, me);
}
if (type2 == ";")
return;
if (type2 == "(")
return contCommasep(expressionNoComma, ")", "call", me);
if (type2 == ".")
return cont(property, me);
if (type2 == "[")
return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
if (isTS && value == "as") {
cx.marked = "keyword";
return cont(typeexpr, me);
}
if (type2 == "regexp") {
cx.state.lastType = cx.marked = "operator";
cx.stream.backUp(cx.stream.pos - cx.stream.start - 1);
return cont(expr);
}
3 years ago
}
function quasi(type2, value) {
if (type2 != "quasi")
return pass();
if (value.slice(value.length - 2) != "${")
return cont(quasi);
return cont(maybeexpression, continueQuasi);
}
function continueQuasi(type2) {
if (type2 == "}") {
cx.marked = "string-2";
cx.state.tokenize = tokenQuasi;
return cont(quasi);
}
3 years ago
}
function arrowBody(type2) {
findFatArrow(cx.stream, cx.state);
return pass(type2 == "{" ? statement : expression);
}
function arrowBodyNoComma(type2) {
findFatArrow(cx.stream, cx.state);
return pass(type2 == "{" ? statement : expressionNoComma);
}
function maybeTarget(noComma) {
return function(type2) {
if (type2 == ".")
return cont(noComma ? targetNoComma : target);
else if (type2 == "variable" && isTS)
return cont(maybeTypeArgs, noComma ? maybeoperatorNoComma : maybeoperatorComma);
else
return pass(noComma ? expressionNoComma : expression);
};
3 years ago
}
function target(_, value) {
if (value == "target") {
cx.marked = "keyword";
return cont(maybeoperatorComma);
}
3 years ago
}
function targetNoComma(_, value) {
if (value == "target") {
cx.marked = "keyword";
return cont(maybeoperatorNoComma);
}
}
function maybelabel(type2) {
if (type2 == ":")
return cont(poplex, statement);
return pass(maybeoperatorComma, expect(";"), poplex);
}
function property(type2) {
if (type2 == "variable") {
cx.marked = "property";
return cont();
}
}
function objprop(type2, value) {
if (type2 == "async") {
cx.marked = "property";
return cont(objprop);
} else if (type2 == "variable" || cx.style == "keyword") {
cx.marked = "property";
if (value == "get" || value == "set")
return cont(getterSetter);
var m;
if (isTS && cx.state.fatArrowAt == cx.stream.start && (m = cx.stream.match(/^\s*:\s*/, false)))
cx.state.fatArrowAt = cx.stream.pos + m[0].length;
return cont(afterprop);
} else if (type2 == "number" || type2 == "string") {
cx.marked = jsonldMode ? "property" : cx.style + " property";
return cont(afterprop);
} else if (type2 == "jsonld-keyword") {
return cont(afterprop);
} else if (isTS && isModifier(value)) {
cx.marked = "keyword";
return cont(objprop);
} else if (type2 == "[") {
return cont(expression, maybetype, expect("]"), afterprop);
} else if (type2 == "spread") {
return cont(expressionNoComma, afterprop);
} else if (value == "*") {
cx.marked = "keyword";
return cont(objprop);
} else if (type2 == ":") {
return pass(afterprop);
}
}
function getterSetter(type2) {
if (type2 != "variable")
return pass(afterprop);
cx.marked = "property";
return cont(functiondef);
}
function afterprop(type2) {
if (type2 == ":")
return cont(expressionNoComma);
if (type2 == "(")
return pass(functiondef);
}
function commasep(what, end2, sep) {
function proceed(type2, value) {
if (sep ? sep.indexOf(type2) > -1 : type2 == ",") {
var lex = cx.state.lexical;
if (lex.info == "call")
lex.pos = (lex.pos || 0) + 1;
return cont(function(type3, value2) {
if (type3 == end2 || value2 == end2)
return pass();
return pass(what);
}, proceed);
}
if (type2 == end2 || value == end2)
return cont();
if (sep && sep.indexOf(";") > -1)
return pass(what);
return cont(expect(end2));
}
return function(type2, value) {
if (type2 == end2 || value == end2)
return cont();
return pass(what, proceed);
};
}
function contCommasep(what, end2, info) {
for (var i = 3; i < arguments.length; i++)
cx.cc.push(arguments[i]);
return cont(pushlex(end2, info), commasep(what, end2), poplex);
}
function block(type2) {
if (type2 == "}")
return cont();
return pass(statement, block);
}
function maybetype(type2, value) {
if (isTS) {
if (type2 == ":")
return cont(typeexpr);
if (value == "?")
return cont(maybetype);
}
}
function maybetypeOrIn(type2, value) {
if (isTS && (type2 == ":" || value == "in"))
return cont(typeexpr);
}
function mayberettype(type2) {
if (isTS && type2 == ":") {
if (cx.stream.match(/^\s*\w+\s+is\b/, false))
return cont(expression, isKW, typeexpr);
else
return cont(typeexpr);
}
}
function isKW(_, value) {
if (value == "is") {
cx.marked = "keyword";
return cont();
}
}
function typeexpr(type2, value) {
if (value == "keyof" || value == "typeof" || value == "infer" || value == "readonly") {
cx.marked = "keyword";
return cont(value == "typeof" ? expressionNoComma : typeexpr);
}
if (type2 == "variable" || value == "void") {
cx.marked = "type";
return cont(afterType);
}
if (value == "|" || value == "&")
return cont(typeexpr);
if (type2 == "string" || type2 == "number" || type2 == "atom")
return cont(afterType);
if (type2 == "[")
return cont(pushlex("]"), commasep(typeexpr, "]", ","), poplex, afterType);
if (type2 == "{")
return cont(pushlex("}"), typeprops, poplex, afterType);
if (type2 == "(")
return cont(commasep(typearg, ")"), maybeReturnType, afterType);
if (type2 == "<")
return cont(commasep(typeexpr, ">"), typeexpr);
if (type2 == "quasi") {
return pass(quasiType, afterType);
}
}
function maybeReturnType(type2) {
if (type2 == "=>")
return cont(typeexpr);
}
function typeprops(type2) {
if (type2.match(/[\}\)\]]/))
return cont();
if (type2 == "," || type2 == ";")
return cont(typeprops);
return pass(typeprop, typeprops);
}
function typeprop(type2, value) {
if (type2 == "variable" || cx.style == "keyword") {
cx.marked = "property";
return cont(typeprop);
} else if (value == "?" || type2 == "number" || type2 == "string") {
return cont(typeprop);
} else if (type2 == ":") {
return cont(typeexpr);
} else if (type2 == "[") {
return cont(expect("variable"), maybetypeOrIn, expect("]"), typeprop);
} else if (type2 == "(") {
return pass(functiondecl, typeprop);
} else if (!type2.match(/[;\}\)\],]/)) {
return cont();
}
}
function quasiType(type2, value) {
if (type2 != "quasi")
return pass();
if (value.slice(value.length - 2) != "${")
return cont(quasiType);
return cont(typeexpr, continueQuasiType);
}
function continueQuasiType(type2) {
if (type2 == "}") {
cx.marked = "string-2";
cx.state.tokenize = tokenQuasi;
return cont(quasiType);
}
}
function typearg(type2, value) {
if (type2 == "variable" && cx.stream.match(/^\s*[?:]/, false) || value == "?")
return cont(typearg);
if (type2 == ":")
return cont(typeexpr);
if (type2 == "spread")
return cont(typearg);
return pass(typeexpr);
}
function afterType(type2, value) {
if (value == "<")
return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType);
if (value == "|" || type2 == "." || value == "&")
return cont(typeexpr);
if (type2 == "[")
return cont(typeexpr, expect("]"), afterType);
if (value == "extends" || value == "implements") {
cx.marked = "keyword";
return cont(typeexpr);
}
if (value == "?")
return cont(typeexpr, expect(":"), typeexpr);
}
function maybeTypeArgs(_, value) {
if (value == "<")
return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType);
}
function typeparam() {
return pass(typeexpr, maybeTypeDefault);
}
function maybeTypeDefault(_, value) {
if (value == "=")
return cont(typeexpr);
}
function vardef(_, value) {
if (value == "enum") {
cx.marked = "keyword";
return cont(enumdef);
}
return pass(pattern, maybetype, maybeAssign, vardefCont);
}
function pattern(type2, value) {
if (isTS && isModifier(value)) {
cx.marked = "keyword";
return cont(pattern);
}
if (type2 == "variable") {
register(value);
return cont();
}
if (type2 == "spread")
return cont(pattern);
if (type2 == "[")
return contCommasep(eltpattern, "]");
if (type2 == "{")
return contCommasep(proppattern, "}");
}
function proppattern(type2, value) {
if (type2 == "variable" && !cx.stream.match(/^\s*:/, false)) {
register(value);
return cont(maybeAssign);
}
if (type2 == "variable")
cx.marked = "property";
if (type2 == "spread")
return cont(pattern);
if (type2 == "}")
return pass();
if (type2 == "[")
return cont(expression, expect("]"), expect(":"), proppattern);
return cont(expect(":"), pattern, maybeAssign);
}
function eltpattern() {
return pass(pattern, maybeAssign);
}
function maybeAssign(_type, value) {
if (value == "=")
return cont(expressionNoComma);
}
function vardefCont(type2) {
if (type2 == ",")
return cont(vardef);
}
function maybeelse(type2, value) {
if (type2 == "keyword b" && value == "else")
return cont(pushlex("form", "else"), statement, poplex);
}
function forspec(type2, value) {
if (value == "await")
return cont(forspec);
if (type2 == "(")
return cont(pushlex(")"), forspec1, poplex);
}
function forspec1(type2) {
if (type2 == "var")
return cont(vardef, forspec2);
if (type2 == "variable")
return cont(forspec2);
return pass(forspec2);
}
function forspec2(type2, value) {
if (type2 == ")")
return cont();
if (type2 == ";")
return cont(forspec2);
if (value == "in" || value == "of") {
cx.marked = "keyword";
return cont(expression, forspec2);
}
return pass(expression, forspec2);
}
function functiondef(type2, value) {
if (value == "*") {
cx.marked = "keyword";
return cont(functiondef);
}
if (type2 == "variable") {
register(value);
return cont(functiondef);
}
if (type2 == "(")
return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, statement, popcontext);
if (isTS && value == "<")
return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondef);
}
function functiondecl(type2, value) {
if (value == "*") {
cx.marked = "keyword";
return cont(functiondecl);
}
if (type2 == "variable") {
register(value);
return cont(functiondecl);
}
if (type2 == "(")
return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, popcontext);
if (isTS && value == "<")
return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondecl);
}
function typename(type2, value) {
if (type2 == "keyword" || type2 == "variable") {
cx.marked = "type";
return cont(typename);
} else if (value == "<") {
return cont(pushlex(">"), commasep(typeparam, ">"), poplex);
}
}
function funarg(type2, value) {
if (value == "@")
cont(expression, funarg);
if (type2 == "spread")
return cont(funarg);
if (isTS && isModifier(value)) {
cx.marked = "keyword";
return cont(funarg);
}
if (isTS && type2 == "this")
return cont(maybetype, maybeAssign);
return pass(pattern, maybetype, maybeAssign);
}
function classExpression(type2, value) {
if (type2 == "variable")
return className(type2, value);
return classNameAfter(type2, value);
}
function className(type2, value) {
if (type2 == "variable") {
register(value);
return cont(classNameAfter);
}
}
function classNameAfter(type2, value) {
if (value == "<")
return cont(pushlex(">"), commasep(typeparam, ">"), poplex, classNameAfter);
if (value == "extends" || value == "implements" || isTS && type2 == ",") {
if (value == "implements")
cx.marked = "keyword";
return cont(isTS ? typeexpr : expression, classNameAfter);
}
if (type2 == "{")
return cont(pushlex("}"), classBody, poplex);
}
function classBody(type2, value) {
if (type2 == "async" || type2 == "variable" && (value == "static" || value == "get" || value == "set" || isTS && isModifier(value)) && cx.stream.match(/^\s+[\w$\xa1-\uffff]/, false)) {
cx.marked = "keyword";
return cont(classBody);
}
if (type2 == "variable" || cx.style == "keyword") {
cx.marked = "property";
return cont(classfield, classBody);
}
if (type2 == "number" || type2 == "string")
return cont(classfield, classBody);
if (type2 == "[")
return cont(expression, maybetype, expect("]"), classfield, classBody);
if (value == "*") {
cx.marked = "keyword";
return cont(classBody);
}
if (isTS && type2 == "(")
return pass(functiondecl, classBody);
if (type2 == ";" || type2 == ",")
return cont(classBody);
if (type2 == "}")
return cont();
if (value == "@")
return cont(expression, classBody);
}
function classfield(type2, value) {
if (value == "!")
return cont(classfield);
if (value == "?")
return cont(classfield);
if (type2 == ":")
return cont(typeexpr, maybeAssign);
if (value == "=")
return cont(expressionNoComma);
var context = cx.state.lexical.prev, isInterface = context && context.info == "interface";
return pass(isInterface ? functiondecl : functiondef);
}
function afterExport(type2, value) {
if (value == "*") {
cx.marked = "keyword";
return cont(maybeFrom, expect(";"));
}
if (value == "default") {
cx.marked = "keyword";
return cont(expression, expect(";"));
}
if (type2 == "{")
return cont(commasep(exportField, "}"), maybeFrom, expect(";"));
return pass(statement);
}
function exportField(type2, value) {
if (value == "as") {
cx.marked = "keyword";
return cont(expect("variable"));
}
if (type2 == "variable")
return pass(expressionNoComma, exportField);
}
function afterImport(type2) {
if (type2 == "string")
return cont();
if (type2 == "(")
return pass(expression);
if (type2 == ".")
return pass(maybeoperatorComma);
return pass(importSpec, maybeMoreImports, maybeFrom);
}
function importSpec(type2, value) {
if (type2 == "{")
return contCommasep(importSpec, "}");
if (type2 == "variable")
register(value);
if (value == "*")
cx.marked = "keyword";
return cont(maybeAs);
}
function maybeMoreImports(type2) {
if (type2 == ",")
return cont(importSpec, maybeMoreImports);
}
function maybeAs(_type, value) {
if (value == "as") {
cx.marked = "keyword";
return cont(importSpec);
}
}
function maybeFrom(_type, value) {
if (value == "from") {
cx.marked = "keyword";
return cont(expression);
}
}
function arrayLiteral(type2) {
if (type2 == "]")
return cont();
return pass(commasep(expressionNoComma, "]"));
}
function enumdef() {
return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex);
}
function enummember() {
return pass(pattern, maybeAssign);
}
function isContinuedStatement(state, textAfter) {
return state.lastType == "operator" || state.lastType == "," || isOperatorChar.test(textAfter.charAt(0)) || /[,.]/.test(textAfter.charAt(0));
}
function expressionAllowed(stream, state, backUp) {
return state.tokenize == tokenBase && /^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(state.lastType) || state.lastType == "quasi" && /\{\s*$/.test(stream.string.slice(0, stream.pos - (backUp || 0)));
}
return {
startState: function(basecolumn) {
var state = {
tokenize: tokenBase,
lastType: "sof",
cc: [],
lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
localVars: parserConfig.localVars,
context: parserConfig.localVars && new Context(null, null, false),
indented: basecolumn || 0
};
if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
state.globalVars = parserConfig.globalVars;
return state;
},
token: function(stream, state) {
if (stream.sol()) {
if (!state.lexical.hasOwnProperty("align"))
state.lexical.align = false;
state.indented = stream.indentation();
findFatArrow(stream, state);
}
if (state.tokenize != tokenComment && stream.eatSpace())
return null;
var style = state.tokenize(stream, state);
if (type == "comment")
return style;
state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
return parseJS(state, style, type, content, stream);
},
indent: function(state, textAfter) {
if (state.tokenize == tokenComment || state.tokenize == tokenQuasi)
return CodeMirror.Pass;
if (state.tokenize != tokenBase)
return 0;
var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical, top2;
if (!/^\s*else\b/.test(textAfter))
for (var i = state.cc.length - 1; i >= 0; --i) {
var c = state.cc[i];
if (c == poplex)
lexical = lexical.prev;
else if (c != maybeelse && c != popcontext)
break;
}
while ((lexical.type == "stat" || lexical.type == "form") && (firstChar == "}" || (top2 = state.cc[state.cc.length - 1]) && (top2 == maybeoperatorComma || top2 == maybeoperatorNoComma) && !/^[,\.=+\-*:?[\(]/.test(textAfter)))
lexical = lexical.prev;
if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
lexical = lexical.prev;
var type2 = lexical.type, closing = firstChar == type2;
if (type2 == "vardef")
return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info.length + 1 : 0);
else if (type2 == "form" && firstChar == "{")
return lexical.indented;
else if (type2 == "form")
return lexical.indented + indentUnit;
else if (type2 == "stat")
return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0);
else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
else if (lexical.align)
return lexical.column + (closing ? 0 : 1);
else
return lexical.indented + (closing ? 0 : indentUnit);
},
electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
blockCommentStart: jsonMode ? null : "/*",
blockCommentEnd: jsonMode ? null : "*/",
blockCommentContinue: jsonMode ? null : " * ",
lineComment: jsonMode ? null : "//",
fold: "brace",
closeBrackets: "()[]{}''\"\"``",
helperType: jsonMode ? "json" : "javascript",
jsonldMode,
jsonMode,
expressionAllowed,
skipExpression: function(state) {
parseJS(state, "atom", "atom", "true", new CodeMirror.StringStream("", 2, null));
}
};
});
CodeMirror.registerHelper("wordChars", "javascript", /[\w$]/);
CodeMirror.defineMIME("text/javascript", "javascript");
CodeMirror.defineMIME("text/ecmascript", "javascript");
CodeMirror.defineMIME("application/javascript", "javascript");
CodeMirror.defineMIME("application/x-javascript", "javascript");
CodeMirror.defineMIME("application/ecmascript", "javascript");
CodeMirror.defineMIME("application/json", {
name: "javascript",
json: true
});
CodeMirror.defineMIME("application/x-json", {
name: "javascript",
json: true
});
CodeMirror.defineMIME("application/manifest+json", {
name: "javascript",
json: true
});
CodeMirror.defineMIME("application/ld+json", {
name: "javascript",
jsonld: true
});
CodeMirror.defineMIME("text/typescript", {
name: "javascript",
typescript: true
});
CodeMirror.defineMIME("application/typescript", {
name: "javascript",
typescript: true
});
});
// src/editor/mode/custom_overlay.js
(function(mod) {
mod(window.CodeMirror);
})(function(CodeMirror) {
"use strict";
CodeMirror.customOverlayMode = function(base, overlay, combine) {
return {
startState: function() {
return {
base: CodeMirror.startState(base),
overlay: CodeMirror.startState(overlay),
basePos: 0,
baseCur: null,
overlayPos: 0,
overlayCur: null,
streamSeen: null
};
},
copyState: function(state) {
return {
base: CodeMirror.copyState(base, state.base),
overlay: CodeMirror.copyState(overlay, state.overlay),
basePos: state.basePos,
baseCur: null,
overlayPos: state.overlayPos,
overlayCur: null
};
},
token: function(stream, state) {
if (stream != state.streamSeen || Math.min(state.basePos, state.overlayPos) < stream.start) {
state.streamSeen = stream;
state.basePos = state.overlayPos = stream.start;
}
if (stream.start == state.basePos) {
state.baseCur = base.token(stream, state.base);
state.basePos = stream.pos;
}
if (stream.start == state.overlayPos) {
stream.pos = stream.start;
state.overlayCur = overlay.token(stream, state.overlay);
state.overlayPos = stream.pos;
}
stream.pos = Math.min(state.basePos, state.overlayPos);
if (state.baseCur && state.overlayCur && state.baseCur.contains("line-HyperMD-codeblock")) {
state.overlayCur = state.overlayCur.replace("line-templater-inline", "");
state.overlayCur += ` line-background-HyperMD-codeblock-bg`;
}
if (state.overlayCur == null)
return state.baseCur;
else if (state.baseCur != null && state.overlay.combineTokens || combine && state.overlay.combineTokens == null)
return state.baseCur + " " + state.overlayCur;
else
return state.overlayCur;
},
indent: base.indent && function(state, textAfter, line) {
return base.indent(state.base, textAfter, line);
},
electricChars: base.electricChars,
innerMode: function(state) {
return { state: state.base, mode: base };
},
blankLine: function(state) {
9 months ago
let baseToken, overlayToken;
if (base.blankLine)
baseToken = base.blankLine(state.base);
if (overlay.blankLine)
overlayToken = overlay.blankLine(state.overlay);
return overlayToken == null ? baseToken : combine && baseToken != null ? baseToken + " " + overlayToken : overlayToken;
}
};
};
});
// src/editor/Editor.ts
2 years ago
var import_language = __toModule(require("@codemirror/language"));
9 months ago
var import_state = __toModule(require("@codemirror/state"));
var TEMPLATER_MODE_NAME = "templater";
var TP_CMD_TOKEN_CLASS = "templater-command";
var TP_INLINE_CLASS = "templater-inline";
var TP_OPENING_TAG_TOKEN_CLASS = "templater-opening-tag";
var TP_CLOSING_TAG_TOKEN_CLASS = "templater-closing-tag";
var TP_INTERPOLATION_TAG_TOKEN_CLASS = "templater-interpolation-tag";
var TP_EXEC_TAG_TOKEN_CLASS = "templater-execution-tag";
var Editor2 = class {
2 years ago
constructor(plugin) {
this.plugin = plugin;
2 years ago
this.cursor_jumper = new CursorJumper();
9 months ago
this.activeEditorExtensions = [];
}
1 year ago
desktopShouldHighlight() {
return import_obsidian16.Platform.isDesktopApp && this.plugin.settings.syntax_highlighting;
}
mobileShouldHighlight() {
return import_obsidian16.Platform.isMobileApp && this.plugin.settings.syntax_highlighting_mobile;
}
2 years ago
async setup() {
this.plugin.registerEditorSuggest(new Autocomplete(this.plugin.settings));
9 months ago
await this.registerCodeMirrorMode();
this.templaterLanguage = import_state.Prec.high(import_language.StreamLanguage.define(window.CodeMirror.getMode({}, TEMPLATER_MODE_NAME)));
if (this.templaterLanguage === void 0) {
log_error(new TemplaterError("Unable to enable syntax highlighting. Could not define language."));
}
this.plugin.registerEditorExtension(this.activeEditorExtensions);
1 year ago
if (this.desktopShouldHighlight() || this.mobileShouldHighlight()) {
9 months ago
await this.enable_highlighter();
}
}
async enable_highlighter() {
if (this.activeEditorExtensions.length === 0 && this.templaterLanguage) {
this.activeEditorExtensions.push(this.templaterLanguage);
this.plugin.app.workspace.updateOptions();
}
}
async disable_highlighter() {
if (this.activeEditorExtensions.length > 0) {
this.activeEditorExtensions.pop();
this.plugin.app.workspace.updateOptions();
2 years ago
}
}
2 years ago
async jump_to_next_cursor_location(file = null, auto_jump = false) {
if (auto_jump && !this.plugin.settings.auto_jump_to_cursor) {
return;
}
9 months ago
if (file && get_active_file(this.plugin.app) !== file) {
2 years ago
return;
}
await this.cursor_jumper.jump_to_next_cursor_location();
}
2 years ago
async registerCodeMirrorMode() {
1 year ago
if (!this.desktopShouldHighlight() && !this.mobileShouldHighlight()) {
2 years ago
return;
}
const js_mode = window.CodeMirror.getMode({}, "javascript");
if (js_mode.name === "null") {
log_error(new TemplaterError("Javascript syntax mode couldn't be found, can't enable syntax highlighting."));
return;
}
const overlay_mode = window.CodeMirror.customOverlayMode;
if (overlay_mode == null) {
log_error(new TemplaterError("Couldn't find customOverlayMode, can't enable syntax highlighting."));
return;
}
9 months ago
window.CodeMirror.defineMode(TEMPLATER_MODE_NAME, function(config) {
2 years ago
const templaterOverlay = {
startState: function() {
const js_state = window.CodeMirror.startState(js_mode);
return {
...js_state,
inCommand: false,
tag_class: "",
freeLine: false
};
},
copyState: function(state) {
const js_state = window.CodeMirror.startState(js_mode);
const new_state = {
...js_state,
inCommand: state.inCommand,
tag_class: state.tag_class,
freeLine: state.freeLine
};
return new_state;
},
blankLine: function(state) {
if (state.inCommand) {
return `line-background-templater-command-bg`;
}
return null;
},
token: function(stream, state) {
if (stream.sol() && state.inCommand) {
state.freeLine = true;
}
if (state.inCommand) {
let keywords = "";
if (stream.match(/[-_]{0,1}%>/, true)) {
state.inCommand = false;
state.freeLine = false;
const tag_class = state.tag_class;
state.tag_class = "";
return `line-${TP_INLINE_CLASS} ${TP_CMD_TOKEN_CLASS} ${TP_CLOSING_TAG_TOKEN_CLASS} ${tag_class}`;
}
2 years ago
const js_result = js_mode.token && js_mode.token(stream, state);
if (stream.peek() == null && state.freeLine) {
keywords += ` line-background-templater-command-bg`;
}
2 years ago
if (!state.freeLine) {
keywords += ` line-${TP_INLINE_CLASS}`;
}
2 years ago
return `${keywords} ${TP_CMD_TOKEN_CLASS} ${js_result}`;
}
const match = stream.match(/<%[-_]{0,1}\s*([*+]{0,1})/, true);
if (match != null) {
switch (match[1]) {
case "*":
state.tag_class = TP_EXEC_TAG_TOKEN_CLASS;
break;
default:
state.tag_class = TP_INTERPOLATION_TAG_TOKEN_CLASS;
break;
}
2 years ago
state.inCommand = true;
return `line-${TP_INLINE_CLASS} ${TP_CMD_TOKEN_CLASS} ${TP_OPENING_TAG_TOKEN_CLASS} ${state.tag_class}`;
}
2 years ago
while (stream.next() != null && !stream.match(/<%/, false))
;
return null;
}
};
return overlay_mode(window.CodeMirror.getMode(config, "hypermd"), templaterOverlay);
});
}
};
3 years ago
// src/main.ts
1 year ago
var TemplaterPlugin = class extends import_obsidian17.Plugin {
2 years ago
async onload() {
await this.load_settings();
this.templater = new Templater(this);
await this.templater.setup();
this.editor_handler = new Editor2(this);
await this.editor_handler.setup();
this.fuzzy_suggester = new FuzzySuggester(this);
this.event_handler = new EventHandler(this, this.templater, this.settings);
this.event_handler.setup();
this.command_handler = new CommandHandler(this);
this.command_handler.setup();
1 year ago
(0, import_obsidian17.addIcon)("templater-icon", ICON_DATA);
2 years ago
if (this.settings.enable_ribbon_icon) {
this.addRibbonIcon("templater-icon", "Templater", async () => {
this.fuzzy_suggester.insert_template();
}).setAttribute("id", "rb-templater-icon");
}
this.addSettingTab(new TemplaterSettingTab(this));
app.workspace.onLayoutReady(() => {
this.templater.execute_startup_scripts();
});
}
12 months ago
onunload() {
this.templater.functions_generator.teardown();
1 year ago
}
2 years ago
async save_settings() {
await this.saveData(this.settings);
}
2 years ago
async load_settings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
};