587 lines
61 KiB
JavaScript
587 lines
61 KiB
JavaScript
|
/*
|
||
|
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||
|
if you want to view the source, please visit the github repository of this plugin
|
||
|
*/
|
||
|
|
||
|
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 __commonJS = (cb, mod) => function __require() {
|
||
|
return mod || (0, cb[Object.keys(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
||
|
};
|
||
|
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);
|
||
|
};
|
||
|
var __async = (__this, __arguments, generator) => {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
var fulfilled = (value) => {
|
||
|
try {
|
||
|
step(generator.next(value));
|
||
|
} catch (e) {
|
||
|
reject(e);
|
||
|
}
|
||
|
};
|
||
|
var rejected = (value) => {
|
||
|
try {
|
||
|
step(generator.throw(value));
|
||
|
} catch (e) {
|
||
|
reject(e);
|
||
|
}
|
||
|
};
|
||
|
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
||
|
step((generator = generator.apply(__this, __arguments)).next());
|
||
|
});
|
||
|
};
|
||
|
|
||
|
// node_modules/.pnpm/lz-string@1.4.4/node_modules/lz-string/libs/lz-string.js
|
||
|
var require_lz_string = __commonJS({
|
||
|
"node_modules/.pnpm/lz-string@1.4.4/node_modules/lz-string/libs/lz-string.js"(exports, module2) {
|
||
|
var LZString2 = function() {
|
||
|
var f = String.fromCharCode;
|
||
|
var keyStrBase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
||
|
var keyStrUriSafe = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-$";
|
||
|
var baseReverseDic = {};
|
||
|
function getBaseValue(alphabet, character) {
|
||
|
if (!baseReverseDic[alphabet]) {
|
||
|
baseReverseDic[alphabet] = {};
|
||
|
for (var i = 0; i < alphabet.length; i++) {
|
||
|
baseReverseDic[alphabet][alphabet.charAt(i)] = i;
|
||
|
}
|
||
|
}
|
||
|
return baseReverseDic[alphabet][character];
|
||
|
}
|
||
|
var LZString3 = {
|
||
|
compressToBase64: function(input) {
|
||
|
if (input == null)
|
||
|
return "";
|
||
|
var res = LZString3._compress(input, 6, function(a) {
|
||
|
return keyStrBase64.charAt(a);
|
||
|
});
|
||
|
switch (res.length % 4) {
|
||
|
default:
|
||
|
case 0:
|
||
|
return res;
|
||
|
case 1:
|
||
|
return res + "===";
|
||
|
case 2:
|
||
|
return res + "==";
|
||
|
case 3:
|
||
|
return res + "=";
|
||
|
}
|
||
|
},
|
||
|
decompressFromBase64: function(input) {
|
||
|
if (input == null)
|
||
|
return "";
|
||
|
if (input == "")
|
||
|
return null;
|
||
|
return LZString3._decompress(input.length, 32, function(index) {
|
||
|
return getBaseValue(keyStrBase64, input.charAt(index));
|
||
|
});
|
||
|
},
|
||
|
compressToUTF16: function(input) {
|
||
|
if (input == null)
|
||
|
return "";
|
||
|
return LZString3._compress(input, 15, function(a) {
|
||
|
return f(a + 32);
|
||
|
}) + " ";
|
||
|
},
|
||
|
decompressFromUTF16: function(compressed) {
|
||
|
if (compressed == null)
|
||
|
return "";
|
||
|
if (compressed == "")
|
||
|
return null;
|
||
|
return LZString3._decompress(compressed.length, 16384, function(index) {
|
||
|
return compressed.charCodeAt(index) - 32;
|
||
|
});
|
||
|
},
|
||
|
compressToUint8Array: function(uncompressed) {
|
||
|
var compressed = LZString3.compress(uncompressed);
|
||
|
var buf = new Uint8Array(compressed.length * 2);
|
||
|
for (var i = 0, TotalLen = compressed.length; i < TotalLen; i++) {
|
||
|
var current_value = compressed.charCodeAt(i);
|
||
|
buf[i * 2] = current_value >>> 8;
|
||
|
buf[i * 2 + 1] = current_value % 256;
|
||
|
}
|
||
|
return buf;
|
||
|
},
|
||
|
decompressFromUint8Array: function(compressed) {
|
||
|
if (compressed === null || compressed === void 0) {
|
||
|
return LZString3.decompress(compressed);
|
||
|
} else {
|
||
|
var buf = new Array(compressed.length / 2);
|
||
|
for (var i = 0, TotalLen = buf.length; i < TotalLen; i++) {
|
||
|
buf[i] = compressed[i * 2] * 256 + compressed[i * 2 + 1];
|
||
|
}
|
||
|
var result = [];
|
||
|
buf.forEach(function(c) {
|
||
|
result.push(f(c));
|
||
|
});
|
||
|
return LZString3.decompress(result.join(""));
|
||
|
}
|
||
|
},
|
||
|
compressToEncodedURIComponent: function(input) {
|
||
|
if (input == null)
|
||
|
return "";
|
||
|
return LZString3._compress(input, 6, function(a) {
|
||
|
return keyStrUriSafe.charAt(a);
|
||
|
});
|
||
|
},
|
||
|
decompressFromEncodedURIComponent: function(input) {
|
||
|
if (input == null)
|
||
|
return "";
|
||
|
if (input == "")
|
||
|
return null;
|
||
|
input = input.replace(/ /g, "+");
|
||
|
return LZString3._decompress(input.length, 32, function(index) {
|
||
|
return getBaseValue(keyStrUriSafe, input.charAt(index));
|
||
|
});
|
||
|
},
|
||
|
compress: function(uncompressed) {
|
||
|
return LZString3._compress(uncompressed, 16, function(a) {
|
||
|
return f(a);
|
||
|
});
|
||
|
},
|
||
|
_compress: function(uncompressed, bitsPerChar, getCharFromInt) {
|
||
|
if (uncompressed == null)
|
||
|
return "";
|
||
|
var i, value, context_dictionary = {}, context_dictionaryToCreate = {}, context_c = "", context_wc = "", context_w = "", context_enlargeIn = 2, context_dictSize = 3, context_numBits = 2, context_data = [], context_data_val = 0, context_data_position = 0, ii;
|
||
|
for (ii = 0; ii < uncompressed.length; ii += 1) {
|
||
|
context_c = uncompressed.charAt(ii);
|
||
|
if (!Object.prototype.hasOwnProperty.call(context_dictionary, context_c)) {
|
||
|
context_dictionary[context_c] = context_dictSize++;
|
||
|
context_dictionaryToCreate[context_c] = true;
|
||
|
}
|
||
|
context_wc = context_w + context_c;
|
||
|
if (Object.prototype.hasOwnProperty.call(context_dictionary, context_wc)) {
|
||
|
context_w = context_wc;
|
||
|
} else {
|
||
|
if (Object.prototype.hasOwnProperty.call(context_dictionaryToCreate, context_w)) {
|
||
|
if (context_w.charCodeAt(0) < 256) {
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
}
|
||
|
value = context_w.charCodeAt(0);
|
||
|
for (i = 0; i < 8; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
} else {
|
||
|
value = 1;
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1 | value;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = 0;
|
||
|
}
|
||
|
value = context_w.charCodeAt(0);
|
||
|
for (i = 0; i < 16; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
}
|
||
|
context_enlargeIn--;
|
||
|
if (context_enlargeIn == 0) {
|
||
|
context_enlargeIn = Math.pow(2, context_numBits);
|
||
|
context_numBits++;
|
||
|
}
|
||
|
delete context_dictionaryToCreate[context_w];
|
||
|
} else {
|
||
|
value = context_dictionary[context_w];
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
}
|
||
|
context_enlargeIn--;
|
||
|
if (context_enlargeIn == 0) {
|
||
|
context_enlargeIn = Math.pow(2, context_numBits);
|
||
|
context_numBits++;
|
||
|
}
|
||
|
context_dictionary[context_wc] = context_dictSize++;
|
||
|
context_w = String(context_c);
|
||
|
}
|
||
|
}
|
||
|
if (context_w !== "") {
|
||
|
if (Object.prototype.hasOwnProperty.call(context_dictionaryToCreate, context_w)) {
|
||
|
if (context_w.charCodeAt(0) < 256) {
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
}
|
||
|
value = context_w.charCodeAt(0);
|
||
|
for (i = 0; i < 8; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
} else {
|
||
|
value = 1;
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1 | value;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = 0;
|
||
|
}
|
||
|
value = context_w.charCodeAt(0);
|
||
|
for (i = 0; i < 16; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
}
|
||
|
context_enlargeIn--;
|
||
|
if (context_enlargeIn == 0) {
|
||
|
context_enlargeIn = Math.pow(2, context_numBits);
|
||
|
context_numBits++;
|
||
|
}
|
||
|
delete context_dictionaryToCreate[context_w];
|
||
|
} else {
|
||
|
value = context_dictionary[context_w];
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
}
|
||
|
context_enlargeIn--;
|
||
|
if (context_enlargeIn == 0) {
|
||
|
context_enlargeIn = Math.pow(2, context_numBits);
|
||
|
context_numBits++;
|
||
|
}
|
||
|
}
|
||
|
value = 2;
|
||
|
for (i = 0; i < context_numBits; i++) {
|
||
|
context_data_val = context_data_val << 1 | value & 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data_position = 0;
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
context_data_val = 0;
|
||
|
} else {
|
||
|
context_data_position++;
|
||
|
}
|
||
|
value = value >> 1;
|
||
|
}
|
||
|
while (true) {
|
||
|
context_data_val = context_data_val << 1;
|
||
|
if (context_data_position == bitsPerChar - 1) {
|
||
|
context_data.push(getCharFromInt(context_data_val));
|
||
|
break;
|
||
|
} else
|
||
|
context_data_position++;
|
||
|
}
|
||
|
return context_data.join("");
|
||
|
},
|
||
|
decompress: function(compressed) {
|
||
|
if (compressed == null)
|
||
|
return "";
|
||
|
if (compressed == "")
|
||
|
return null;
|
||
|
return LZString3._decompress(compressed.length, 32768, function(index) {
|
||
|
return compressed.charCodeAt(index);
|
||
|
});
|
||
|
},
|
||
|
_decompress: function(length, resetValue, getNextValue) {
|
||
|
var dictionary = [], next, enlargeIn = 4, dictSize = 4, numBits = 3, entry = "", result = [], i, w, bits, resb, maxpower, power, c, data = { val: getNextValue(0), position: resetValue, index: 1 };
|
||
|
for (i = 0; i < 3; i += 1) {
|
||
|
dictionary[i] = i;
|
||
|
}
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, 2);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
switch (next = bits) {
|
||
|
case 0:
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, 8);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
c = f(bits);
|
||
|
break;
|
||
|
case 1:
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, 16);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
c = f(bits);
|
||
|
break;
|
||
|
case 2:
|
||
|
return "";
|
||
|
}
|
||
|
dictionary[3] = c;
|
||
|
w = c;
|
||
|
result.push(c);
|
||
|
while (true) {
|
||
|
if (data.index > length) {
|
||
|
return "";
|
||
|
}
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, numBits);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
switch (c = bits) {
|
||
|
case 0:
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, 8);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
dictionary[dictSize++] = f(bits);
|
||
|
c = dictSize - 1;
|
||
|
enlargeIn--;
|
||
|
break;
|
||
|
case 1:
|
||
|
bits = 0;
|
||
|
maxpower = Math.pow(2, 16);
|
||
|
power = 1;
|
||
|
while (power != maxpower) {
|
||
|
resb = data.val & data.position;
|
||
|
data.position >>= 1;
|
||
|
if (data.position == 0) {
|
||
|
data.position = resetValue;
|
||
|
data.val = getNextValue(data.index++);
|
||
|
}
|
||
|
bits |= (resb > 0 ? 1 : 0) * power;
|
||
|
power <<= 1;
|
||
|
}
|
||
|
dictionary[dictSize++] = f(bits);
|
||
|
c = dictSize - 1;
|
||
|
enlargeIn--;
|
||
|
break;
|
||
|
case 2:
|
||
|
return result.join("");
|
||
|
}
|
||
|
if (enlargeIn == 0) {
|
||
|
enlargeIn = Math.pow(2, numBits);
|
||
|
numBits++;
|
||
|
}
|
||
|
if (dictionary[c]) {
|
||
|
entry = dictionary[c];
|
||
|
} else {
|
||
|
if (c === dictSize) {
|
||
|
entry = w + w.charAt(0);
|
||
|
} else {
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
result.push(entry);
|
||
|
dictionary[dictSize++] = w + entry.charAt(0);
|
||
|
enlargeIn--;
|
||
|
w = entry;
|
||
|
if (enlargeIn == 0) {
|
||
|
enlargeIn = Math.pow(2, numBits);
|
||
|
numBits++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
return LZString3;
|
||
|
}();
|
||
|
if (typeof define === "function" && define.amd) {
|
||
|
define(function() {
|
||
|
return LZString2;
|
||
|
});
|
||
|
} else if (typeof module2 !== "undefined" && module2 != null) {
|
||
|
module2.exports = LZString2;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// main.ts
|
||
|
__export(exports, {
|
||
|
default: () => CircuitJsPlugin
|
||
|
});
|
||
|
var import_obsidian2 = __toModule(require("obsidian"));
|
||
|
|
||
|
// circuitRenderer.ts
|
||
|
var import_obsidian = __toModule(require("obsidian"));
|
||
|
var LZString = __toModule(require_lz_string());
|
||
|
var CircuitRenderChild = class extends import_obsidian.MarkdownRenderChild {
|
||
|
constructor(el, renderer, content, settings) {
|
||
|
super(el);
|
||
|
this.settings = settings;
|
||
|
this.code = content;
|
||
|
this.compressed = LZString.compressToEncodedURIComponent(this.code);
|
||
|
if (this.settings.editable) {
|
||
|
this.url = `${this.settings.circuitJsUrl}?ctz=${this.compressed}&running=true`;
|
||
|
} else {
|
||
|
this.url = `${this.settings.circuitJsUrl}?ctz=${this.compressed}&running=false`;
|
||
|
}
|
||
|
}
|
||
|
onload() {
|
||
|
const div = document.createElement("div");
|
||
|
if (this.settings.editLink) {
|
||
|
const editLink = document.createElement("a");
|
||
|
editLink.setAttribute("href", this.url);
|
||
|
const editLinkContent = document.createTextNode("[EDIT]");
|
||
|
editLink.appendChild(editLinkContent);
|
||
|
div.appendChild(editLink);
|
||
|
}
|
||
|
const iframeNode = document.createElement("iframe");
|
||
|
iframeNode.setAttribute("src", this.url);
|
||
|
iframeNode.setAttribute("width", "100%");
|
||
|
iframeNode.setAttribute("height", "600px");
|
||
|
div.appendChild(iframeNode);
|
||
|
this.containerEl.appendChild(div);
|
||
|
}
|
||
|
onunload() {
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// main.ts
|
||
|
var DEFAULT_SETTINGS = {
|
||
|
editable: true,
|
||
|
editLink: true,
|
||
|
circuitJsUrl: "http://falstad.com/circuit/circuitjs.html",
|
||
|
circuitTag: "circuitjs"
|
||
|
};
|
||
|
var CircuitJsPlugin = class extends import_obsidian2.Plugin {
|
||
|
constructor() {
|
||
|
super(...arguments);
|
||
|
this.postprocessor = (content, el, ctx) => __async(this, null, function* () {
|
||
|
ctx.addChild(new CircuitRenderChild(el, this, content, this.settings));
|
||
|
});
|
||
|
}
|
||
|
onload() {
|
||
|
return __async(this, null, function* () {
|
||
|
yield this.loadSettings();
|
||
|
this.registerMarkdownCodeBlockProcessor(this.settings.circuitTag, this.postprocessor);
|
||
|
});
|
||
|
}
|
||
|
onunload() {
|
||
|
}
|
||
|
loadSettings() {
|
||
|
return __async(this, null, function* () {
|
||
|
this.settings = Object.assign({}, DEFAULT_SETTINGS, yield this.loadData());
|
||
|
});
|
||
|
}
|
||
|
saveSettings() {
|
||
|
return __async(this, null, function* () {
|
||
|
yield this.saveData(this.settings);
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsibm9kZV9tb2R1bGVzLy5wbnBtL2x6LXN0cmluZ0AxLjQuNC9ub2RlX21vZHVsZXMvbHotc3RyaW5nL2xpYnMvbHotc3RyaW5nLmpzIiwgIm1haW4udHMiLCAiY2lyY3VpdFJlbmRlcmVyLnRzIl0sCiAgInNvdXJjZXNDb250ZW50IjogWyIvLyBDb3B5cmlnaHQgKGMpIDIwMTMgUGllcm94eSA8cGllcm94eUBwaWVyb3h5Lm5ldD5cbi8vIFRoaXMgd29yayBpcyBmcmVlLiBZb3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3IgbW9kaWZ5IGl0XG4vLyB1bmRlciB0aGUgdGVybXMgb2YgdGhlIFdURlBMLCBWZXJzaW9uIDJcbi8vIEZvciBtb3JlIGluZm9ybWF0aW9uIHNlZSBMSUNFTlNFLnR4dCBvciBodHRwOi8vd3d3Lnd0ZnBsLm5ldC9cbi8vXG4vLyBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgdGhlIGhvbWUgcGFnZTpcbi8vIGh0dHA6Ly9waWVyb3h5Lm5ldC9ibG9nL3BhZ2VzL2x6LXN0cmluZy90ZXN0aW5nLmh0bWxcbi8vXG4vLyBMWi1iYXNlZCBjb21wcmVzc2lvbiBhbGdvcml0aG0sIHZlcnNpb24gMS40LjRcbnZhciBMWlN0cmluZyA9IChmdW5jdGlvbigpIHtcblxuLy8gcHJpdmF0ZSBwcm9wZXJ0eVxudmFyIGYgPSBTdHJpbmcuZnJvbUNoYXJDb2RlO1xudmFyIGtleVN0ckJhc2U2NCA9IFwiQUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVphYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ejAxMjM0NTY3ODkrLz1cIjtcbnZhciBrZXlTdHJVcmlTYWZlID0gXCJBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWmFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6MDEyMzQ1Njc4OSstJFwiO1xudmFyIGJhc2VSZXZlcnNlRGljID0ge307XG5cbmZ1bmN0aW9uIGdldEJhc2VWYWx1ZShhbHBoYWJldCwgY2hhcmFjdGVyKSB7XG4gIGlmICghYmFzZVJldmVyc2VEaWNbYWxwaGFiZXRdKSB7XG4gICAgYmFzZVJldmVyc2VEaWNbYWxwaGFiZXRdID0ge307XG4gICAgZm9yICh2YXIgaT0wIDsgaTxhbHBoYWJldC5sZW5ndGggOyBpKyspIHtcbiAgICAgIGJhc2VSZXZlcnNlRGljW2FscGhhYmV0XVthbHBoYWJldC5jaGFyQXQoaSldID0gaTtcbiAgICB9XG4gIH1cbiAgcmV0dXJuIGJhc2VSZXZlcnNlRGljW2FscGhhYmV0XVtjaGFyYWN0ZXJdO1xufVxuXG52YXIgTFpTdHJpbmcgPSB7XG4gIGNvbXByZXNzVG9CYXNlNjQgOiBmdW5jdGlvbiAoaW5wdXQpIHtcbiAgICBpZiAoaW5wdXQgPT0gbnVsbCkgcmV0dXJuIFwiXCI7XG4gICAgdmFyIHJlcyA9IExaU3RyaW5nLl9jb21wcmVzcyhpbnB1dCwgNiwgZnVuY3Rpb24oYSl7cmV0dXJuIGtleVN0ckJhc2U2NC5jaGFyQXQoYSk7fSk7XG4gICAgc3dpdGNoIChyZXMubGVuZ3RoICUgNCkgeyAvLyBUbyBwcm9kdWNlIHZhbGlkIEJhc2U2NFxuICAgIGRlZmF1bHQ6IC8vIFdoZW4gY291bGQgdGhpcyBoYXBwZW4gP1xuICAgIGNhc2UgMCA6IHJldHVybiByZXM7XG4gICAgY2FzZSAxIDogcmV0dXJuIHJlcytcIj09PVwiO1xuICAgIGNhc2UgMiA6IHJldHVybiByZXMrXCI9PVwiO1xuICAgIGNhc2UgMyA6IHJldHVybiByZXMrXCI9XCI7XG4gICAgfVxuICB9LFxuXG4gIGRlY29tcHJlc3NGcm9tQmFzZTY0IDogZnVuY3Rpb24gKGlucHV0KSB7XG4gICAgaWYgKGlucHV0ID09IG51bGwpIHJldHVybiBcIlwiO1xuICAgIGlmIChpbnB1dCA9PSBcIlwiKSByZXR1cm4gbnVsbDtcbiAgICByZXR1cm4gTFpTdHJpbmcuX2RlY29tcHJlc3MoaW5wdXQubGVuZ3RoLCAzMiwgZnVuY3Rpb24oaW5kZXgpIHsgcmV0dXJuIGdldEJhc2VWYWx1ZShrZXlTdHJCYXNlNjQsIGlucHV0LmNoYXJBdChpbmRleCkpOyB9KTtcbiAgfSxcblxuICBjb21wcmVzc1RvVVRGMTYgOiBmdW5jdGlvbiAoaW5wdXQpIHtcbiAgICBpZiAoaW5wdXQgPT0gbnVsbCkgcmV0dXJuIFwiXCI7XG4gICAgcmV0dXJuIExaU3RyaW5nLl9jb21wcmVzcyhpbnB1dCwgMTUsIGZ1bmN0aW9uKGEpe3JldHVybiBmKGErMzIpO30pICsgXCIgXCI7XG4gIH0sXG5cbiAgZGVjb21wcmVzc0Zyb21VVEYxNjogZnVuY3Rpb24gKGNvbXByZXNzZWQpIHtcbiAgICBpZiAoY29tcHJlc3NlZCA9PSBudWxsKSByZXR1cm4gXCJcIjtcbiAgICBpZiAoY29tcHJlc3NlZCA9PSBcIlwiKSByZXR1cm4gbnVsbDtcbiAgICByZXR1cm4gTFpTdHJpbmcuX2RlY29tcHJlc3MoY29tcHJlc3NlZC5sZW5ndGgsIDE2Mzg0LCBmdW5jdGlvbihpbmRleCkgeyByZXR1cm4gY29tcHJlc3NlZC5jaGFyQ29kZUF0KGluZGV4KSAtIDMyOyB9KTtcbiAgfSxcblxuICAvL2NvbXByZXNzIGludG8gdWludDhhcnJheSAoVUNTLTIgYmlnIGVuZGlhbiBmb3JtYXQpXG4gIGNvbXByZXNzVG9VaW50OEFycmF5OiBmdW5jdGlvbiAodW5jb21wcmVzc2VkKSB7XG4gICAgdmFyIGNvbXByZXNzZWQgPSBMWlN0cmluZy5jb21wcmVzcyh1bmNvbXByZXNzZWQpO1xuICAgIHZhciBidWY9bmV3IFVpbnQ4QXJyYXkoY29tcHJlc3NlZC5sZW5ndGgqMik7IC8vIDIgYnl0ZXMgcGVyIGNoYXJhY3RlclxuXG4gICAgZm9yICh2YXIgaT0wLCBUb3RhbExlbj1jb21wcmVzc2VkLmxlbmd0aDsgaTxUb3RhbExlbjsgaSsrKSB7XG4gICAgICB2YXIgY3VycmVudF92YWx1ZSA9IGNvbXByZXNzZWQuY2hhckNvZGVBdChpKTtcbiAgICAgIGJ1ZltpKjJdID0gY3VycmVudF92YWx1ZSA+Pj4gODtcbiAgICAgIGJ1ZltpKjIrMV0gPSBjdXJyZW50X3ZhbHVlICUgMjU2O1xuICAgIH1cbiAgICByZXR1cm4gYnVmO1xuICB9LFxuXG4gIC8vZGVjb21wcmVzcyBmcm9tIHVpbnQ4YXJyYXkgKFVDUy0yIGJpZyBlbmRpYW4gZm9ybWF0KVxuICBkZWNvbXByZXNzRnJvbVVpbnQ4QXJyYXk6ZnVuY3Rpb24gKGNvbXByZXNzZWQpIHtcbiAgICBpZiAoY29tcHJlc3NlZD09PW51bGwgfHwgY29tcHJlc3NlZD09PXVuZGVmaW5lZCl7XG4gICAgICAgIHJldHVybiBMWlN0cmluZy5kZWNvbXByZXNzKGNvbXByZXNzZWQpO1xuICAgIH0gZWxzZSB7XG4gICAgICAgIHZhciBidWY9bmV3IEFycmF5KGNvbXByZXNzZWQubGVuZ3RoLzIpOyAvLyAyIGJ5dGVzIHBlciBjaGFyYWN0ZXJcbiAgICAgICAgZm9yICh2YXIgaT0wL
|