22833 lines
783 KiB
JavaScript
22833 lines
783 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
|
|
*/
|
|
|
|
"use strict";
|
|
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 __typeError = (msg) => {
|
|
throw TypeError(msg);
|
|
};
|
|
var __defNormalProp = (obj, key2, value) => key2 in obj ? __defProp(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
|
|
var __commonJS = (cb, mod) => function __require() {
|
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
};
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key2 of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key2) && key2 !== except)
|
|
__defProp(to, key2, { get: () => from[key2], enumerable: !(desc = __getOwnPropDesc(from, key2)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
// file that has been converted to a CommonJS file using a Babel-
|
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
mod
|
|
));
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var __publicField = (obj, key2, value) => __defNormalProp(obj, typeof key2 !== "symbol" ? key2 + "" : key2, value);
|
|
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/common.js
|
|
var require_common = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/common.js"(exports, module2) {
|
|
"use strict";
|
|
function isNothing(subject) {
|
|
return typeof subject === "undefined" || subject === null;
|
|
}
|
|
function isObject(subject) {
|
|
return typeof subject === "object" && subject !== null;
|
|
}
|
|
function toArray(sequence) {
|
|
if (Array.isArray(sequence)) return sequence;
|
|
else if (isNothing(sequence)) return [];
|
|
return [sequence];
|
|
}
|
|
function extend(target, source2) {
|
|
var index2, length, key2, sourceKeys;
|
|
if (source2) {
|
|
sourceKeys = Object.keys(source2);
|
|
for (index2 = 0, length = sourceKeys.length; index2 < length; index2 += 1) {
|
|
key2 = sourceKeys[index2];
|
|
target[key2] = source2[key2];
|
|
}
|
|
}
|
|
return target;
|
|
}
|
|
function repeat(string, count) {
|
|
var result = "", cycle;
|
|
for (cycle = 0; cycle < count; cycle += 1) {
|
|
result += string;
|
|
}
|
|
return result;
|
|
}
|
|
function isNegativeZero(number) {
|
|
return number === 0 && Number.NEGATIVE_INFINITY === 1 / number;
|
|
}
|
|
module2.exports.isNothing = isNothing;
|
|
module2.exports.isObject = isObject;
|
|
module2.exports.toArray = toArray;
|
|
module2.exports.repeat = repeat;
|
|
module2.exports.isNegativeZero = isNegativeZero;
|
|
module2.exports.extend = extend;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/exception.js
|
|
var require_exception = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/exception.js"(exports, module2) {
|
|
"use strict";
|
|
function YAMLException(reason, mark) {
|
|
Error.call(this);
|
|
this.name = "YAMLException";
|
|
this.reason = reason;
|
|
this.mark = mark;
|
|
this.message = (this.reason || "(unknown reason)") + (this.mark ? " " + this.mark.toString() : "");
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this, this.constructor);
|
|
} else {
|
|
this.stack = new Error().stack || "";
|
|
}
|
|
}
|
|
YAMLException.prototype = Object.create(Error.prototype);
|
|
YAMLException.prototype.constructor = YAMLException;
|
|
YAMLException.prototype.toString = function toString(compact) {
|
|
var result = this.name + ": ";
|
|
result += this.reason || "(unknown reason)";
|
|
if (!compact && this.mark) {
|
|
result += " " + this.mark.toString();
|
|
}
|
|
return result;
|
|
};
|
|
module2.exports = YAMLException;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/mark.js
|
|
var require_mark = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/mark.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
function Mark(name, buffer, position, line, column) {
|
|
this.name = name;
|
|
this.buffer = buffer;
|
|
this.position = position;
|
|
this.line = line;
|
|
this.column = column;
|
|
}
|
|
Mark.prototype.getSnippet = function getSnippet(indent, maxLength) {
|
|
var head2, start, tail, end, snippet2;
|
|
if (!this.buffer) return null;
|
|
indent = indent || 4;
|
|
maxLength = maxLength || 75;
|
|
head2 = "";
|
|
start = this.position;
|
|
while (start > 0 && "\0\r\n\x85\u2028\u2029".indexOf(this.buffer.charAt(start - 1)) === -1) {
|
|
start -= 1;
|
|
if (this.position - start > maxLength / 2 - 1) {
|
|
head2 = " ... ";
|
|
start += 5;
|
|
break;
|
|
}
|
|
}
|
|
tail = "";
|
|
end = this.position;
|
|
while (end < this.buffer.length && "\0\r\n\x85\u2028\u2029".indexOf(this.buffer.charAt(end)) === -1) {
|
|
end += 1;
|
|
if (end - this.position > maxLength / 2 - 1) {
|
|
tail = " ... ";
|
|
end -= 5;
|
|
break;
|
|
}
|
|
}
|
|
snippet2 = this.buffer.slice(start, end);
|
|
return common.repeat(" ", indent) + head2 + snippet2 + tail + "\n" + common.repeat(" ", indent + this.position - start + head2.length) + "^";
|
|
};
|
|
Mark.prototype.toString = function toString(compact) {
|
|
var snippet2, where = "";
|
|
if (this.name) {
|
|
where += 'in "' + this.name + '" ';
|
|
}
|
|
where += "at line " + (this.line + 1) + ", column " + (this.column + 1);
|
|
if (!compact) {
|
|
snippet2 = this.getSnippet();
|
|
if (snippet2) {
|
|
where += ":\n" + snippet2;
|
|
}
|
|
}
|
|
return where;
|
|
};
|
|
module2.exports = Mark;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type.js
|
|
var require_type = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type.js"(exports, module2) {
|
|
"use strict";
|
|
var YAMLException = require_exception();
|
|
var TYPE_CONSTRUCTOR_OPTIONS = [
|
|
"kind",
|
|
"resolve",
|
|
"construct",
|
|
"instanceOf",
|
|
"predicate",
|
|
"represent",
|
|
"defaultStyle",
|
|
"styleAliases"
|
|
];
|
|
var YAML_NODE_KINDS = [
|
|
"scalar",
|
|
"sequence",
|
|
"mapping"
|
|
];
|
|
function compileStyleAliases(map) {
|
|
var result = {};
|
|
if (map !== null) {
|
|
Object.keys(map).forEach(function(style) {
|
|
map[style].forEach(function(alias) {
|
|
result[String(alias)] = style;
|
|
});
|
|
});
|
|
}
|
|
return result;
|
|
}
|
|
function Type(tag2, options) {
|
|
options = options || {};
|
|
Object.keys(options).forEach(function(name) {
|
|
if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) {
|
|
throw new YAMLException('Unknown option "' + name + '" is met in definition of "' + tag2 + '" YAML type.');
|
|
}
|
|
});
|
|
this.tag = tag2;
|
|
this.kind = options["kind"] || null;
|
|
this.resolve = options["resolve"] || function() {
|
|
return true;
|
|
};
|
|
this.construct = options["construct"] || function(data) {
|
|
return data;
|
|
};
|
|
this.instanceOf = options["instanceOf"] || null;
|
|
this.predicate = options["predicate"] || null;
|
|
this.represent = options["represent"] || null;
|
|
this.defaultStyle = options["defaultStyle"] || null;
|
|
this.styleAliases = compileStyleAliases(options["styleAliases"] || null);
|
|
if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {
|
|
throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag2 + '" YAML type.');
|
|
}
|
|
}
|
|
module2.exports = Type;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema.js
|
|
var require_schema = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
var YAMLException = require_exception();
|
|
var Type = require_type();
|
|
function compileList(schema, name, result) {
|
|
var exclude = [];
|
|
schema.include.forEach(function(includedSchema) {
|
|
result = compileList(includedSchema, name, result);
|
|
});
|
|
schema[name].forEach(function(currentType) {
|
|
result.forEach(function(previousType, previousIndex) {
|
|
if (previousType.tag === currentType.tag && previousType.kind === currentType.kind) {
|
|
exclude.push(previousIndex);
|
|
}
|
|
});
|
|
result.push(currentType);
|
|
});
|
|
return result.filter(function(type, index2) {
|
|
return exclude.indexOf(index2) === -1;
|
|
});
|
|
}
|
|
function compileMap() {
|
|
var result = {
|
|
scalar: {},
|
|
sequence: {},
|
|
mapping: {},
|
|
fallback: {}
|
|
}, index2, length;
|
|
function collectType(type) {
|
|
result[type.kind][type.tag] = result["fallback"][type.tag] = type;
|
|
}
|
|
for (index2 = 0, length = arguments.length; index2 < length; index2 += 1) {
|
|
arguments[index2].forEach(collectType);
|
|
}
|
|
return result;
|
|
}
|
|
function Schema(definition) {
|
|
this.include = definition.include || [];
|
|
this.implicit = definition.implicit || [];
|
|
this.explicit = definition.explicit || [];
|
|
this.implicit.forEach(function(type) {
|
|
if (type.loadKind && type.loadKind !== "scalar") {
|
|
throw new YAMLException("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");
|
|
}
|
|
});
|
|
this.compiledImplicit = compileList(this, "implicit", []);
|
|
this.compiledExplicit = compileList(this, "explicit", []);
|
|
this.compiledTypeMap = compileMap(this.compiledImplicit, this.compiledExplicit);
|
|
}
|
|
Schema.DEFAULT = null;
|
|
Schema.create = function createSchema() {
|
|
var schemas, types;
|
|
switch (arguments.length) {
|
|
case 1:
|
|
schemas = Schema.DEFAULT;
|
|
types = arguments[0];
|
|
break;
|
|
case 2:
|
|
schemas = arguments[0];
|
|
types = arguments[1];
|
|
break;
|
|
default:
|
|
throw new YAMLException("Wrong number of arguments for Schema.create function");
|
|
}
|
|
schemas = common.toArray(schemas);
|
|
types = common.toArray(types);
|
|
if (!schemas.every(function(schema) {
|
|
return schema instanceof Schema;
|
|
})) {
|
|
throw new YAMLException("Specified list of super schemas (or a single Schema object) contains a non-Schema object.");
|
|
}
|
|
if (!types.every(function(type) {
|
|
return type instanceof Type;
|
|
})) {
|
|
throw new YAMLException("Specified list of YAML types (or a single Type object) contains a non-Type object.");
|
|
}
|
|
return new Schema({
|
|
include: schemas,
|
|
explicit: types
|
|
});
|
|
};
|
|
module2.exports = Schema;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/str.js
|
|
var require_str = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/str.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
module2.exports = new Type("tag:yaml.org,2002:str", {
|
|
kind: "scalar",
|
|
construct: function(data) {
|
|
return data !== null ? data : "";
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/seq.js
|
|
var require_seq = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/seq.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
module2.exports = new Type("tag:yaml.org,2002:seq", {
|
|
kind: "sequence",
|
|
construct: function(data) {
|
|
return data !== null ? data : [];
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/map.js
|
|
var require_map = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/map.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
module2.exports = new Type("tag:yaml.org,2002:map", {
|
|
kind: "mapping",
|
|
construct: function(data) {
|
|
return data !== null ? data : {};
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js
|
|
var require_failsafe = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js"(exports, module2) {
|
|
"use strict";
|
|
var Schema = require_schema();
|
|
module2.exports = new Schema({
|
|
explicit: [
|
|
require_str(),
|
|
require_seq(),
|
|
require_map()
|
|
]
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/null.js
|
|
var require_null = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/null.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
function resolveYamlNull(data) {
|
|
if (data === null) return true;
|
|
var max2 = data.length;
|
|
return max2 === 1 && data === "~" || max2 === 4 && (data === "null" || data === "Null" || data === "NULL");
|
|
}
|
|
function constructYamlNull() {
|
|
return null;
|
|
}
|
|
function isNull(object) {
|
|
return object === null;
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:null", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlNull,
|
|
construct: constructYamlNull,
|
|
predicate: isNull,
|
|
represent: {
|
|
canonical: function() {
|
|
return "~";
|
|
},
|
|
lowercase: function() {
|
|
return "null";
|
|
},
|
|
uppercase: function() {
|
|
return "NULL";
|
|
},
|
|
camelcase: function() {
|
|
return "Null";
|
|
}
|
|
},
|
|
defaultStyle: "lowercase"
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/bool.js
|
|
var require_bool = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/bool.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
function resolveYamlBoolean(data) {
|
|
if (data === null) return false;
|
|
var max2 = data.length;
|
|
return max2 === 4 && (data === "true" || data === "True" || data === "TRUE") || max2 === 5 && (data === "false" || data === "False" || data === "FALSE");
|
|
}
|
|
function constructYamlBoolean(data) {
|
|
return data === "true" || data === "True" || data === "TRUE";
|
|
}
|
|
function isBoolean(object) {
|
|
return Object.prototype.toString.call(object) === "[object Boolean]";
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:bool", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlBoolean,
|
|
construct: constructYamlBoolean,
|
|
predicate: isBoolean,
|
|
represent: {
|
|
lowercase: function(object) {
|
|
return object ? "true" : "false";
|
|
},
|
|
uppercase: function(object) {
|
|
return object ? "TRUE" : "FALSE";
|
|
},
|
|
camelcase: function(object) {
|
|
return object ? "True" : "False";
|
|
}
|
|
},
|
|
defaultStyle: "lowercase"
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/int.js
|
|
var require_int = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/int.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
var Type = require_type();
|
|
function isHexCode(c) {
|
|
return 48 <= c && c <= 57 || 65 <= c && c <= 70 || 97 <= c && c <= 102;
|
|
}
|
|
function isOctCode(c) {
|
|
return 48 <= c && c <= 55;
|
|
}
|
|
function isDecCode(c) {
|
|
return 48 <= c && c <= 57;
|
|
}
|
|
function resolveYamlInteger(data) {
|
|
if (data === null) return false;
|
|
var max2 = data.length, index2 = 0, hasDigits = false, ch;
|
|
if (!max2) return false;
|
|
ch = data[index2];
|
|
if (ch === "-" || ch === "+") {
|
|
ch = data[++index2];
|
|
}
|
|
if (ch === "0") {
|
|
if (index2 + 1 === max2) return true;
|
|
ch = data[++index2];
|
|
if (ch === "b") {
|
|
index2++;
|
|
for (; index2 < max2; index2++) {
|
|
ch = data[index2];
|
|
if (ch === "_") continue;
|
|
if (ch !== "0" && ch !== "1") return false;
|
|
hasDigits = true;
|
|
}
|
|
return hasDigits && ch !== "_";
|
|
}
|
|
if (ch === "x") {
|
|
index2++;
|
|
for (; index2 < max2; index2++) {
|
|
ch = data[index2];
|
|
if (ch === "_") continue;
|
|
if (!isHexCode(data.charCodeAt(index2))) return false;
|
|
hasDigits = true;
|
|
}
|
|
return hasDigits && ch !== "_";
|
|
}
|
|
for (; index2 < max2; index2++) {
|
|
ch = data[index2];
|
|
if (ch === "_") continue;
|
|
if (!isOctCode(data.charCodeAt(index2))) return false;
|
|
hasDigits = true;
|
|
}
|
|
return hasDigits && ch !== "_";
|
|
}
|
|
if (ch === "_") return false;
|
|
for (; index2 < max2; index2++) {
|
|
ch = data[index2];
|
|
if (ch === "_") continue;
|
|
if (ch === ":") break;
|
|
if (!isDecCode(data.charCodeAt(index2))) {
|
|
return false;
|
|
}
|
|
hasDigits = true;
|
|
}
|
|
if (!hasDigits || ch === "_") return false;
|
|
if (ch !== ":") return true;
|
|
return /^(:[0-5]?[0-9])+$/.test(data.slice(index2));
|
|
}
|
|
function constructYamlInteger(data) {
|
|
var value = data, sign = 1, ch, base, digits = [];
|
|
if (value.indexOf("_") !== -1) {
|
|
value = value.replace(/_/g, "");
|
|
}
|
|
ch = value[0];
|
|
if (ch === "-" || ch === "+") {
|
|
if (ch === "-") sign = -1;
|
|
value = value.slice(1);
|
|
ch = value[0];
|
|
}
|
|
if (value === "0") return 0;
|
|
if (ch === "0") {
|
|
if (value[1] === "b") return sign * parseInt(value.slice(2), 2);
|
|
if (value[1] === "x") return sign * parseInt(value, 16);
|
|
return sign * parseInt(value, 8);
|
|
}
|
|
if (value.indexOf(":") !== -1) {
|
|
value.split(":").forEach(function(v) {
|
|
digits.unshift(parseInt(v, 10));
|
|
});
|
|
value = 0;
|
|
base = 1;
|
|
digits.forEach(function(d) {
|
|
value += d * base;
|
|
base *= 60;
|
|
});
|
|
return sign * value;
|
|
}
|
|
return sign * parseInt(value, 10);
|
|
}
|
|
function isInteger(object) {
|
|
return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 === 0 && !common.isNegativeZero(object));
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:int", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlInteger,
|
|
construct: constructYamlInteger,
|
|
predicate: isInteger,
|
|
represent: {
|
|
binary: function(obj) {
|
|
return obj >= 0 ? "0b" + obj.toString(2) : "-0b" + obj.toString(2).slice(1);
|
|
},
|
|
octal: function(obj) {
|
|
return obj >= 0 ? "0" + obj.toString(8) : "-0" + obj.toString(8).slice(1);
|
|
},
|
|
decimal: function(obj) {
|
|
return obj.toString(10);
|
|
},
|
|
/* eslint-disable max-len */
|
|
hexadecimal: function(obj) {
|
|
return obj >= 0 ? "0x" + obj.toString(16).toUpperCase() : "-0x" + obj.toString(16).toUpperCase().slice(1);
|
|
}
|
|
},
|
|
defaultStyle: "decimal",
|
|
styleAliases: {
|
|
binary: [2, "bin"],
|
|
octal: [8, "oct"],
|
|
decimal: [10, "dec"],
|
|
hexadecimal: [16, "hex"]
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/float.js
|
|
var require_float = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/float.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
var Type = require_type();
|
|
var YAML_FLOAT_PATTERN = new RegExp(
|
|
// 2.5e4, 2.5 and integers
|
|
"^(?:[-+]?(?:0|[1-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$"
|
|
);
|
|
function resolveYamlFloat(data) {
|
|
if (data === null) return false;
|
|
if (!YAML_FLOAT_PATTERN.test(data) || // Quick hack to not allow integers end with `_`
|
|
// Probably should update regexp & check speed
|
|
data[data.length - 1] === "_") {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
function constructYamlFloat(data) {
|
|
var value, sign, base, digits;
|
|
value = data.replace(/_/g, "").toLowerCase();
|
|
sign = value[0] === "-" ? -1 : 1;
|
|
digits = [];
|
|
if ("+-".indexOf(value[0]) >= 0) {
|
|
value = value.slice(1);
|
|
}
|
|
if (value === ".inf") {
|
|
return sign === 1 ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY;
|
|
} else if (value === ".nan") {
|
|
return NaN;
|
|
} else if (value.indexOf(":") >= 0) {
|
|
value.split(":").forEach(function(v) {
|
|
digits.unshift(parseFloat(v, 10));
|
|
});
|
|
value = 0;
|
|
base = 1;
|
|
digits.forEach(function(d) {
|
|
value += d * base;
|
|
base *= 60;
|
|
});
|
|
return sign * value;
|
|
}
|
|
return sign * parseFloat(value, 10);
|
|
}
|
|
var SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/;
|
|
function representYamlFloat(object, style) {
|
|
var res;
|
|
if (isNaN(object)) {
|
|
switch (style) {
|
|
case "lowercase":
|
|
return ".nan";
|
|
case "uppercase":
|
|
return ".NAN";
|
|
case "camelcase":
|
|
return ".NaN";
|
|
}
|
|
} else if (Number.POSITIVE_INFINITY === object) {
|
|
switch (style) {
|
|
case "lowercase":
|
|
return ".inf";
|
|
case "uppercase":
|
|
return ".INF";
|
|
case "camelcase":
|
|
return ".Inf";
|
|
}
|
|
} else if (Number.NEGATIVE_INFINITY === object) {
|
|
switch (style) {
|
|
case "lowercase":
|
|
return "-.inf";
|
|
case "uppercase":
|
|
return "-.INF";
|
|
case "camelcase":
|
|
return "-.Inf";
|
|
}
|
|
} else if (common.isNegativeZero(object)) {
|
|
return "-0.0";
|
|
}
|
|
res = object.toString(10);
|
|
return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace("e", ".e") : res;
|
|
}
|
|
function isFloat(object) {
|
|
return Object.prototype.toString.call(object) === "[object Number]" && (object % 1 !== 0 || common.isNegativeZero(object));
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:float", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlFloat,
|
|
construct: constructYamlFloat,
|
|
predicate: isFloat,
|
|
represent: representYamlFloat,
|
|
defaultStyle: "lowercase"
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/json.js
|
|
var require_json = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/json.js"(exports, module2) {
|
|
"use strict";
|
|
var Schema = require_schema();
|
|
module2.exports = new Schema({
|
|
include: [
|
|
require_failsafe()
|
|
],
|
|
implicit: [
|
|
require_null(),
|
|
require_bool(),
|
|
require_int(),
|
|
require_float()
|
|
]
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/core.js
|
|
var require_core = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/core.js"(exports, module2) {
|
|
"use strict";
|
|
var Schema = require_schema();
|
|
module2.exports = new Schema({
|
|
include: [
|
|
require_json()
|
|
]
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/timestamp.js
|
|
var require_timestamp = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/timestamp.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
var YAML_DATE_REGEXP = new RegExp(
|
|
"^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"
|
|
);
|
|
var YAML_TIMESTAMP_REGEXP = new RegExp(
|
|
"^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$"
|
|
);
|
|
function resolveYamlTimestamp(data) {
|
|
if (data === null) return false;
|
|
if (YAML_DATE_REGEXP.exec(data) !== null) return true;
|
|
if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true;
|
|
return false;
|
|
}
|
|
function constructYamlTimestamp(data) {
|
|
var match, year, month, day, hour, minute, second, fraction = 0, delta = null, tz_hour, tz_minute, date;
|
|
match = YAML_DATE_REGEXP.exec(data);
|
|
if (match === null) match = YAML_TIMESTAMP_REGEXP.exec(data);
|
|
if (match === null) throw new Error("Date resolve error");
|
|
year = +match[1];
|
|
month = +match[2] - 1;
|
|
day = +match[3];
|
|
if (!match[4]) {
|
|
return new Date(Date.UTC(year, month, day));
|
|
}
|
|
hour = +match[4];
|
|
minute = +match[5];
|
|
second = +match[6];
|
|
if (match[7]) {
|
|
fraction = match[7].slice(0, 3);
|
|
while (fraction.length < 3) {
|
|
fraction += "0";
|
|
}
|
|
fraction = +fraction;
|
|
}
|
|
if (match[9]) {
|
|
tz_hour = +match[10];
|
|
tz_minute = +(match[11] || 0);
|
|
delta = (tz_hour * 60 + tz_minute) * 6e4;
|
|
if (match[9] === "-") delta = -delta;
|
|
}
|
|
date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction));
|
|
if (delta) date.setTime(date.getTime() - delta);
|
|
return date;
|
|
}
|
|
function representYamlTimestamp(object) {
|
|
return object.toISOString();
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:timestamp", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlTimestamp,
|
|
construct: constructYamlTimestamp,
|
|
instanceOf: Date,
|
|
represent: representYamlTimestamp
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/merge.js
|
|
var require_merge = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/merge.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
function resolveYamlMerge(data) {
|
|
return data === "<<" || data === null;
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:merge", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlMerge
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/binary.js
|
|
var require_binary = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/binary.js"(exports, module2) {
|
|
"use strict";
|
|
var NodeBuffer;
|
|
try {
|
|
_require = require;
|
|
NodeBuffer = _require("buffer").Buffer;
|
|
} catch (__) {
|
|
}
|
|
var _require;
|
|
var Type = require_type();
|
|
var BASE64_MAP = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r";
|
|
function resolveYamlBinary(data) {
|
|
if (data === null) return false;
|
|
var code, idx, bitlen = 0, max2 = data.length, map = BASE64_MAP;
|
|
for (idx = 0; idx < max2; idx++) {
|
|
code = map.indexOf(data.charAt(idx));
|
|
if (code > 64) continue;
|
|
if (code < 0) return false;
|
|
bitlen += 6;
|
|
}
|
|
return bitlen % 8 === 0;
|
|
}
|
|
function constructYamlBinary(data) {
|
|
var idx, tailbits, input = data.replace(/[\r\n=]/g, ""), max2 = input.length, map = BASE64_MAP, bits = 0, result = [];
|
|
for (idx = 0; idx < max2; idx++) {
|
|
if (idx % 4 === 0 && idx) {
|
|
result.push(bits >> 16 & 255);
|
|
result.push(bits >> 8 & 255);
|
|
result.push(bits & 255);
|
|
}
|
|
bits = bits << 6 | map.indexOf(input.charAt(idx));
|
|
}
|
|
tailbits = max2 % 4 * 6;
|
|
if (tailbits === 0) {
|
|
result.push(bits >> 16 & 255);
|
|
result.push(bits >> 8 & 255);
|
|
result.push(bits & 255);
|
|
} else if (tailbits === 18) {
|
|
result.push(bits >> 10 & 255);
|
|
result.push(bits >> 2 & 255);
|
|
} else if (tailbits === 12) {
|
|
result.push(bits >> 4 & 255);
|
|
}
|
|
if (NodeBuffer) {
|
|
return NodeBuffer.from ? NodeBuffer.from(result) : new NodeBuffer(result);
|
|
}
|
|
return result;
|
|
}
|
|
function representYamlBinary(object) {
|
|
var result = "", bits = 0, idx, tail, max2 = object.length, map = BASE64_MAP;
|
|
for (idx = 0; idx < max2; idx++) {
|
|
if (idx % 3 === 0 && idx) {
|
|
result += map[bits >> 18 & 63];
|
|
result += map[bits >> 12 & 63];
|
|
result += map[bits >> 6 & 63];
|
|
result += map[bits & 63];
|
|
}
|
|
bits = (bits << 8) + object[idx];
|
|
}
|
|
tail = max2 % 3;
|
|
if (tail === 0) {
|
|
result += map[bits >> 18 & 63];
|
|
result += map[bits >> 12 & 63];
|
|
result += map[bits >> 6 & 63];
|
|
result += map[bits & 63];
|
|
} else if (tail === 2) {
|
|
result += map[bits >> 10 & 63];
|
|
result += map[bits >> 4 & 63];
|
|
result += map[bits << 2 & 63];
|
|
result += map[64];
|
|
} else if (tail === 1) {
|
|
result += map[bits >> 2 & 63];
|
|
result += map[bits << 4 & 63];
|
|
result += map[64];
|
|
result += map[64];
|
|
}
|
|
return result;
|
|
}
|
|
function isBinary(object) {
|
|
return NodeBuffer && NodeBuffer.isBuffer(object);
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:binary", {
|
|
kind: "scalar",
|
|
resolve: resolveYamlBinary,
|
|
construct: constructYamlBinary,
|
|
predicate: isBinary,
|
|
represent: representYamlBinary
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/omap.js
|
|
var require_omap = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/omap.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
var _toString = Object.prototype.toString;
|
|
function resolveYamlOmap(data) {
|
|
if (data === null) return true;
|
|
var objectKeys = [], index2, length, pair, pairKey, pairHasKey, object = data;
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
pair = object[index2];
|
|
pairHasKey = false;
|
|
if (_toString.call(pair) !== "[object Object]") return false;
|
|
for (pairKey in pair) {
|
|
if (_hasOwnProperty.call(pair, pairKey)) {
|
|
if (!pairHasKey) pairHasKey = true;
|
|
else return false;
|
|
}
|
|
}
|
|
if (!pairHasKey) return false;
|
|
if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey);
|
|
else return false;
|
|
}
|
|
return true;
|
|
}
|
|
function constructYamlOmap(data) {
|
|
return data !== null ? data : [];
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:omap", {
|
|
kind: "sequence",
|
|
resolve: resolveYamlOmap,
|
|
construct: constructYamlOmap
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/pairs.js
|
|
var require_pairs = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/pairs.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
var _toString = Object.prototype.toString;
|
|
function resolveYamlPairs(data) {
|
|
if (data === null) return true;
|
|
var index2, length, pair, keys, result, object = data;
|
|
result = new Array(object.length);
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
pair = object[index2];
|
|
if (_toString.call(pair) !== "[object Object]") return false;
|
|
keys = Object.keys(pair);
|
|
if (keys.length !== 1) return false;
|
|
result[index2] = [keys[0], pair[keys[0]]];
|
|
}
|
|
return true;
|
|
}
|
|
function constructYamlPairs(data) {
|
|
if (data === null) return [];
|
|
var index2, length, pair, keys, result, object = data;
|
|
result = new Array(object.length);
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
pair = object[index2];
|
|
keys = Object.keys(pair);
|
|
result[index2] = [keys[0], pair[keys[0]]];
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:pairs", {
|
|
kind: "sequence",
|
|
resolve: resolveYamlPairs,
|
|
construct: constructYamlPairs
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/set.js
|
|
var require_set = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/set.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
function resolveYamlSet(data) {
|
|
if (data === null) return true;
|
|
var key2, object = data;
|
|
for (key2 in object) {
|
|
if (_hasOwnProperty.call(object, key2)) {
|
|
if (object[key2] !== null) return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
function constructYamlSet(data) {
|
|
return data !== null ? data : {};
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:set", {
|
|
kind: "mapping",
|
|
resolve: resolveYamlSet,
|
|
construct: constructYamlSet
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
|
|
var require_default_safe = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js"(exports, module2) {
|
|
"use strict";
|
|
var Schema = require_schema();
|
|
module2.exports = new Schema({
|
|
include: [
|
|
require_core()
|
|
],
|
|
implicit: [
|
|
require_timestamp(),
|
|
require_merge()
|
|
],
|
|
explicit: [
|
|
require_binary(),
|
|
require_omap(),
|
|
require_pairs(),
|
|
require_set()
|
|
]
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
|
|
var require_undefined = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
function resolveJavascriptUndefined() {
|
|
return true;
|
|
}
|
|
function constructJavascriptUndefined() {
|
|
return void 0;
|
|
}
|
|
function representJavascriptUndefined() {
|
|
return "";
|
|
}
|
|
function isUndefined(object) {
|
|
return typeof object === "undefined";
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:js/undefined", {
|
|
kind: "scalar",
|
|
resolve: resolveJavascriptUndefined,
|
|
construct: constructJavascriptUndefined,
|
|
predicate: isUndefined,
|
|
represent: representJavascriptUndefined
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
|
|
var require_regexp = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js"(exports, module2) {
|
|
"use strict";
|
|
var Type = require_type();
|
|
function resolveJavascriptRegExp(data) {
|
|
if (data === null) return false;
|
|
if (data.length === 0) return false;
|
|
var regexp = data, tail = /\/([gim]*)$/.exec(data), modifiers = "";
|
|
if (regexp[0] === "/") {
|
|
if (tail) modifiers = tail[1];
|
|
if (modifiers.length > 3) return false;
|
|
if (regexp[regexp.length - modifiers.length - 1] !== "/") return false;
|
|
}
|
|
return true;
|
|
}
|
|
function constructJavascriptRegExp(data) {
|
|
var regexp = data, tail = /\/([gim]*)$/.exec(data), modifiers = "";
|
|
if (regexp[0] === "/") {
|
|
if (tail) modifiers = tail[1];
|
|
regexp = regexp.slice(1, regexp.length - modifiers.length - 1);
|
|
}
|
|
return new RegExp(regexp, modifiers);
|
|
}
|
|
function representJavascriptRegExp(object) {
|
|
var result = "/" + object.source + "/";
|
|
if (object.global) result += "g";
|
|
if (object.multiline) result += "m";
|
|
if (object.ignoreCase) result += "i";
|
|
return result;
|
|
}
|
|
function isRegExp(object) {
|
|
return Object.prototype.toString.call(object) === "[object RegExp]";
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:js/regexp", {
|
|
kind: "scalar",
|
|
resolve: resolveJavascriptRegExp,
|
|
construct: constructJavascriptRegExp,
|
|
predicate: isRegExp,
|
|
represent: representJavascriptRegExp
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/function.js
|
|
var require_function = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/type/js/function.js"(exports, module2) {
|
|
"use strict";
|
|
var esprima;
|
|
try {
|
|
_require = require;
|
|
esprima = _require("esprima");
|
|
} catch (_) {
|
|
if (typeof window !== "undefined") esprima = window.esprima;
|
|
}
|
|
var _require;
|
|
var Type = require_type();
|
|
function resolveJavascriptFunction(data) {
|
|
if (data === null) return false;
|
|
try {
|
|
var source2 = "(" + data + ")", ast = esprima.parse(source2, { range: true });
|
|
if (ast.type !== "Program" || ast.body.length !== 1 || ast.body[0].type !== "ExpressionStatement" || ast.body[0].expression.type !== "ArrowFunctionExpression" && ast.body[0].expression.type !== "FunctionExpression") {
|
|
return false;
|
|
}
|
|
return true;
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}
|
|
function constructJavascriptFunction(data) {
|
|
var source2 = "(" + data + ")", ast = esprima.parse(source2, { range: true }), params = [], body;
|
|
if (ast.type !== "Program" || ast.body.length !== 1 || ast.body[0].type !== "ExpressionStatement" || ast.body[0].expression.type !== "ArrowFunctionExpression" && ast.body[0].expression.type !== "FunctionExpression") {
|
|
throw new Error("Failed to resolve function");
|
|
}
|
|
ast.body[0].expression.params.forEach(function(param) {
|
|
params.push(param.name);
|
|
});
|
|
body = ast.body[0].expression.body.range;
|
|
if (ast.body[0].expression.body.type === "BlockStatement") {
|
|
return new Function(params, source2.slice(body[0] + 1, body[1] - 1));
|
|
}
|
|
return new Function(params, "return " + source2.slice(body[0], body[1]));
|
|
}
|
|
function representJavascriptFunction(object) {
|
|
return object.toString();
|
|
}
|
|
function isFunction(object) {
|
|
return Object.prototype.toString.call(object) === "[object Function]";
|
|
}
|
|
module2.exports = new Type("tag:yaml.org,2002:js/function", {
|
|
kind: "scalar",
|
|
resolve: resolveJavascriptFunction,
|
|
construct: constructJavascriptFunction,
|
|
predicate: isFunction,
|
|
represent: representJavascriptFunction
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/default_full.js
|
|
var require_default_full = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/schema/default_full.js"(exports, module2) {
|
|
"use strict";
|
|
var Schema = require_schema();
|
|
module2.exports = Schema.DEFAULT = new Schema({
|
|
include: [
|
|
require_default_safe()
|
|
],
|
|
explicit: [
|
|
require_undefined(),
|
|
require_regexp(),
|
|
require_function()
|
|
]
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/loader.js
|
|
var require_loader = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/loader.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
var YAMLException = require_exception();
|
|
var Mark = require_mark();
|
|
var DEFAULT_SAFE_SCHEMA = require_default_safe();
|
|
var DEFAULT_FULL_SCHEMA = require_default_full();
|
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
var CONTEXT_FLOW_IN = 1;
|
|
var CONTEXT_FLOW_OUT = 2;
|
|
var CONTEXT_BLOCK_IN = 3;
|
|
var CONTEXT_BLOCK_OUT = 4;
|
|
var CHOMPING_CLIP = 1;
|
|
var CHOMPING_STRIP = 2;
|
|
var CHOMPING_KEEP = 3;
|
|
var PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/;
|
|
var PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/;
|
|
var PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/;
|
|
var PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i;
|
|
var PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;
|
|
function _class(obj) {
|
|
return Object.prototype.toString.call(obj);
|
|
}
|
|
function is_EOL(c) {
|
|
return c === 10 || c === 13;
|
|
}
|
|
function is_WHITE_SPACE(c) {
|
|
return c === 9 || c === 32;
|
|
}
|
|
function is_WS_OR_EOL(c) {
|
|
return c === 9 || c === 32 || c === 10 || c === 13;
|
|
}
|
|
function is_FLOW_INDICATOR(c) {
|
|
return c === 44 || c === 91 || c === 93 || c === 123 || c === 125;
|
|
}
|
|
function fromHexCode(c) {
|
|
var lc;
|
|
if (48 <= c && c <= 57) {
|
|
return c - 48;
|
|
}
|
|
lc = c | 32;
|
|
if (97 <= lc && lc <= 102) {
|
|
return lc - 97 + 10;
|
|
}
|
|
return -1;
|
|
}
|
|
function escapedHexLen(c) {
|
|
if (c === 120) {
|
|
return 2;
|
|
}
|
|
if (c === 117) {
|
|
return 4;
|
|
}
|
|
if (c === 85) {
|
|
return 8;
|
|
}
|
|
return 0;
|
|
}
|
|
function fromDecimalCode(c) {
|
|
if (48 <= c && c <= 57) {
|
|
return c - 48;
|
|
}
|
|
return -1;
|
|
}
|
|
function simpleEscapeSequence(c) {
|
|
return c === 48 ? "\0" : c === 97 ? "\x07" : c === 98 ? "\b" : c === 116 ? " " : c === 9 ? " " : c === 110 ? "\n" : c === 118 ? "\v" : c === 102 ? "\f" : c === 114 ? "\r" : c === 101 ? "\x1B" : c === 32 ? " " : c === 34 ? '"' : c === 47 ? "/" : c === 92 ? "\\" : c === 78 ? "\x85" : c === 95 ? "\xA0" : c === 76 ? "\u2028" : c === 80 ? "\u2029" : "";
|
|
}
|
|
function charFromCodepoint(c) {
|
|
if (c <= 65535) {
|
|
return String.fromCharCode(c);
|
|
}
|
|
return String.fromCharCode(
|
|
(c - 65536 >> 10) + 55296,
|
|
(c - 65536 & 1023) + 56320
|
|
);
|
|
}
|
|
function setProperty(object, key2, value) {
|
|
if (key2 === "__proto__") {
|
|
Object.defineProperty(object, key2, {
|
|
configurable: true,
|
|
enumerable: true,
|
|
writable: true,
|
|
value
|
|
});
|
|
} else {
|
|
object[key2] = value;
|
|
}
|
|
}
|
|
var simpleEscapeCheck = new Array(256);
|
|
var simpleEscapeMap = new Array(256);
|
|
for (i = 0; i < 256; i++) {
|
|
simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0;
|
|
simpleEscapeMap[i] = simpleEscapeSequence(i);
|
|
}
|
|
var i;
|
|
function State(input, options) {
|
|
this.input = input;
|
|
this.filename = options["filename"] || null;
|
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
this.onWarning = options["onWarning"] || null;
|
|
this.legacy = options["legacy"] || false;
|
|
this.json = options["json"] || false;
|
|
this.listener = options["listener"] || null;
|
|
this.implicitTypes = this.schema.compiledImplicit;
|
|
this.typeMap = this.schema.compiledTypeMap;
|
|
this.length = input.length;
|
|
this.position = 0;
|
|
this.line = 0;
|
|
this.lineStart = 0;
|
|
this.lineIndent = 0;
|
|
this.documents = [];
|
|
}
|
|
function generateError(state2, message) {
|
|
return new YAMLException(
|
|
message,
|
|
new Mark(state2.filename, state2.input, state2.position, state2.line, state2.position - state2.lineStart)
|
|
);
|
|
}
|
|
function throwError(state2, message) {
|
|
throw generateError(state2, message);
|
|
}
|
|
function throwWarning(state2, message) {
|
|
if (state2.onWarning) {
|
|
state2.onWarning.call(null, generateError(state2, message));
|
|
}
|
|
}
|
|
var directiveHandlers = {
|
|
YAML: function handleYamlDirective(state2, name, args) {
|
|
var match, major, minor;
|
|
if (state2.version !== null) {
|
|
throwError(state2, "duplication of %YAML directive");
|
|
}
|
|
if (args.length !== 1) {
|
|
throwError(state2, "YAML directive accepts exactly one argument");
|
|
}
|
|
match = /^([0-9]+)\.([0-9]+)$/.exec(args[0]);
|
|
if (match === null) {
|
|
throwError(state2, "ill-formed argument of the YAML directive");
|
|
}
|
|
major = parseInt(match[1], 10);
|
|
minor = parseInt(match[2], 10);
|
|
if (major !== 1) {
|
|
throwError(state2, "unacceptable YAML version of the document");
|
|
}
|
|
state2.version = args[0];
|
|
state2.checkLineBreaks = minor < 2;
|
|
if (minor !== 1 && minor !== 2) {
|
|
throwWarning(state2, "unsupported YAML version of the document");
|
|
}
|
|
},
|
|
TAG: function handleTagDirective(state2, name, args) {
|
|
var handle, prefix;
|
|
if (args.length !== 2) {
|
|
throwError(state2, "TAG directive accepts exactly two arguments");
|
|
}
|
|
handle = args[0];
|
|
prefix = args[1];
|
|
if (!PATTERN_TAG_HANDLE.test(handle)) {
|
|
throwError(state2, "ill-formed tag handle (first argument) of the TAG directive");
|
|
}
|
|
if (_hasOwnProperty.call(state2.tagMap, handle)) {
|
|
throwError(state2, 'there is a previously declared suffix for "' + handle + '" tag handle');
|
|
}
|
|
if (!PATTERN_TAG_URI.test(prefix)) {
|
|
throwError(state2, "ill-formed tag prefix (second argument) of the TAG directive");
|
|
}
|
|
state2.tagMap[handle] = prefix;
|
|
}
|
|
};
|
|
function captureSegment(state2, start, end, checkJson) {
|
|
var _position, _length, _character, _result;
|
|
if (start < end) {
|
|
_result = state2.input.slice(start, end);
|
|
if (checkJson) {
|
|
for (_position = 0, _length = _result.length; _position < _length; _position += 1) {
|
|
_character = _result.charCodeAt(_position);
|
|
if (!(_character === 9 || 32 <= _character && _character <= 1114111)) {
|
|
throwError(state2, "expected valid JSON character");
|
|
}
|
|
}
|
|
} else if (PATTERN_NON_PRINTABLE.test(_result)) {
|
|
throwError(state2, "the stream contains non-printable characters");
|
|
}
|
|
state2.result += _result;
|
|
}
|
|
}
|
|
function mergeMappings(state2, destination, source2, overridableKeys) {
|
|
var sourceKeys, key2, index2, quantity;
|
|
if (!common.isObject(source2)) {
|
|
throwError(state2, "cannot merge mappings; the provided source object is unacceptable");
|
|
}
|
|
sourceKeys = Object.keys(source2);
|
|
for (index2 = 0, quantity = sourceKeys.length; index2 < quantity; index2 += 1) {
|
|
key2 = sourceKeys[index2];
|
|
if (!_hasOwnProperty.call(destination, key2)) {
|
|
setProperty(destination, key2, source2[key2]);
|
|
overridableKeys[key2] = true;
|
|
}
|
|
}
|
|
}
|
|
function storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, valueNode, startLine, startPos) {
|
|
var index2, quantity;
|
|
if (Array.isArray(keyNode)) {
|
|
keyNode = Array.prototype.slice.call(keyNode);
|
|
for (index2 = 0, quantity = keyNode.length; index2 < quantity; index2 += 1) {
|
|
if (Array.isArray(keyNode[index2])) {
|
|
throwError(state2, "nested arrays are not supported inside keys");
|
|
}
|
|
if (typeof keyNode === "object" && _class(keyNode[index2]) === "[object Object]") {
|
|
keyNode[index2] = "[object Object]";
|
|
}
|
|
}
|
|
}
|
|
if (typeof keyNode === "object" && _class(keyNode) === "[object Object]") {
|
|
keyNode = "[object Object]";
|
|
}
|
|
keyNode = String(keyNode);
|
|
if (_result === null) {
|
|
_result = {};
|
|
}
|
|
if (keyTag === "tag:yaml.org,2002:merge") {
|
|
if (Array.isArray(valueNode)) {
|
|
for (index2 = 0, quantity = valueNode.length; index2 < quantity; index2 += 1) {
|
|
mergeMappings(state2, _result, valueNode[index2], overridableKeys);
|
|
}
|
|
} else {
|
|
mergeMappings(state2, _result, valueNode, overridableKeys);
|
|
}
|
|
} else {
|
|
if (!state2.json && !_hasOwnProperty.call(overridableKeys, keyNode) && _hasOwnProperty.call(_result, keyNode)) {
|
|
state2.line = startLine || state2.line;
|
|
state2.position = startPos || state2.position;
|
|
throwError(state2, "duplicated mapping key");
|
|
}
|
|
setProperty(_result, keyNode, valueNode);
|
|
delete overridableKeys[keyNode];
|
|
}
|
|
return _result;
|
|
}
|
|
function readLineBreak(state2) {
|
|
var ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch === 10) {
|
|
state2.position++;
|
|
} else if (ch === 13) {
|
|
state2.position++;
|
|
if (state2.input.charCodeAt(state2.position) === 10) {
|
|
state2.position++;
|
|
}
|
|
} else {
|
|
throwError(state2, "a line break is expected");
|
|
}
|
|
state2.line += 1;
|
|
state2.lineStart = state2.position;
|
|
}
|
|
function skipSeparationSpace(state2, allowComments, checkIndent) {
|
|
var lineBreaks = 0, ch = state2.input.charCodeAt(state2.position);
|
|
while (ch !== 0) {
|
|
while (is_WHITE_SPACE(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (allowComments && ch === 35) {
|
|
do {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} while (ch !== 10 && ch !== 13 && ch !== 0);
|
|
}
|
|
if (is_EOL(ch)) {
|
|
readLineBreak(state2);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
lineBreaks++;
|
|
state2.lineIndent = 0;
|
|
while (ch === 32) {
|
|
state2.lineIndent++;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
if (checkIndent !== -1 && lineBreaks !== 0 && state2.lineIndent < checkIndent) {
|
|
throwWarning(state2, "deficient indentation");
|
|
}
|
|
return lineBreaks;
|
|
}
|
|
function testDocumentSeparator(state2) {
|
|
var _position = state2.position, ch;
|
|
ch = state2.input.charCodeAt(_position);
|
|
if ((ch === 45 || ch === 46) && ch === state2.input.charCodeAt(_position + 1) && ch === state2.input.charCodeAt(_position + 2)) {
|
|
_position += 3;
|
|
ch = state2.input.charCodeAt(_position);
|
|
if (ch === 0 || is_WS_OR_EOL(ch)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function writeFoldedLines(state2, count) {
|
|
if (count === 1) {
|
|
state2.result += " ";
|
|
} else if (count > 1) {
|
|
state2.result += common.repeat("\n", count - 1);
|
|
}
|
|
}
|
|
function readPlainScalar(state2, nodeIndent, withinFlowCollection) {
|
|
var preceding, following, captureStart, captureEnd, hasPendingContent, _line, _lineStart, _lineIndent, _kind = state2.kind, _result = state2.result, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (is_WS_OR_EOL(ch) || is_FLOW_INDICATOR(ch) || ch === 35 || ch === 38 || ch === 42 || ch === 33 || ch === 124 || ch === 62 || ch === 39 || ch === 34 || ch === 37 || ch === 64 || ch === 96) {
|
|
return false;
|
|
}
|
|
if (ch === 63 || ch === 45) {
|
|
following = state2.input.charCodeAt(state2.position + 1);
|
|
if (is_WS_OR_EOL(following) || withinFlowCollection && is_FLOW_INDICATOR(following)) {
|
|
return false;
|
|
}
|
|
}
|
|
state2.kind = "scalar";
|
|
state2.result = "";
|
|
captureStart = captureEnd = state2.position;
|
|
hasPendingContent = false;
|
|
while (ch !== 0) {
|
|
if (ch === 58) {
|
|
following = state2.input.charCodeAt(state2.position + 1);
|
|
if (is_WS_OR_EOL(following) || withinFlowCollection && is_FLOW_INDICATOR(following)) {
|
|
break;
|
|
}
|
|
} else if (ch === 35) {
|
|
preceding = state2.input.charCodeAt(state2.position - 1);
|
|
if (is_WS_OR_EOL(preceding)) {
|
|
break;
|
|
}
|
|
} else if (state2.position === state2.lineStart && testDocumentSeparator(state2) || withinFlowCollection && is_FLOW_INDICATOR(ch)) {
|
|
break;
|
|
} else if (is_EOL(ch)) {
|
|
_line = state2.line;
|
|
_lineStart = state2.lineStart;
|
|
_lineIndent = state2.lineIndent;
|
|
skipSeparationSpace(state2, false, -1);
|
|
if (state2.lineIndent >= nodeIndent) {
|
|
hasPendingContent = true;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
continue;
|
|
} else {
|
|
state2.position = captureEnd;
|
|
state2.line = _line;
|
|
state2.lineStart = _lineStart;
|
|
state2.lineIndent = _lineIndent;
|
|
break;
|
|
}
|
|
}
|
|
if (hasPendingContent) {
|
|
captureSegment(state2, captureStart, captureEnd, false);
|
|
writeFoldedLines(state2, state2.line - _line);
|
|
captureStart = captureEnd = state2.position;
|
|
hasPendingContent = false;
|
|
}
|
|
if (!is_WHITE_SPACE(ch)) {
|
|
captureEnd = state2.position + 1;
|
|
}
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
captureSegment(state2, captureStart, captureEnd, false);
|
|
if (state2.result) {
|
|
return true;
|
|
}
|
|
state2.kind = _kind;
|
|
state2.result = _result;
|
|
return false;
|
|
}
|
|
function readSingleQuotedScalar(state2, nodeIndent) {
|
|
var ch, captureStart, captureEnd;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch !== 39) {
|
|
return false;
|
|
}
|
|
state2.kind = "scalar";
|
|
state2.result = "";
|
|
state2.position++;
|
|
captureStart = captureEnd = state2.position;
|
|
while ((ch = state2.input.charCodeAt(state2.position)) !== 0) {
|
|
if (ch === 39) {
|
|
captureSegment(state2, captureStart, state2.position, true);
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if (ch === 39) {
|
|
captureStart = state2.position;
|
|
state2.position++;
|
|
captureEnd = state2.position;
|
|
} else {
|
|
return true;
|
|
}
|
|
} else if (is_EOL(ch)) {
|
|
captureSegment(state2, captureStart, captureEnd, true);
|
|
writeFoldedLines(state2, skipSeparationSpace(state2, false, nodeIndent));
|
|
captureStart = captureEnd = state2.position;
|
|
} else if (state2.position === state2.lineStart && testDocumentSeparator(state2)) {
|
|
throwError(state2, "unexpected end of the document within a single quoted scalar");
|
|
} else {
|
|
state2.position++;
|
|
captureEnd = state2.position;
|
|
}
|
|
}
|
|
throwError(state2, "unexpected end of the stream within a single quoted scalar");
|
|
}
|
|
function readDoubleQuotedScalar(state2, nodeIndent) {
|
|
var captureStart, captureEnd, hexLength, hexResult, tmp, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch !== 34) {
|
|
return false;
|
|
}
|
|
state2.kind = "scalar";
|
|
state2.result = "";
|
|
state2.position++;
|
|
captureStart = captureEnd = state2.position;
|
|
while ((ch = state2.input.charCodeAt(state2.position)) !== 0) {
|
|
if (ch === 34) {
|
|
captureSegment(state2, captureStart, state2.position, true);
|
|
state2.position++;
|
|
return true;
|
|
} else if (ch === 92) {
|
|
captureSegment(state2, captureStart, state2.position, true);
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if (is_EOL(ch)) {
|
|
skipSeparationSpace(state2, false, nodeIndent);
|
|
} else if (ch < 256 && simpleEscapeCheck[ch]) {
|
|
state2.result += simpleEscapeMap[ch];
|
|
state2.position++;
|
|
} else if ((tmp = escapedHexLen(ch)) > 0) {
|
|
hexLength = tmp;
|
|
hexResult = 0;
|
|
for (; hexLength > 0; hexLength--) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if ((tmp = fromHexCode(ch)) >= 0) {
|
|
hexResult = (hexResult << 4) + tmp;
|
|
} else {
|
|
throwError(state2, "expected hexadecimal character");
|
|
}
|
|
}
|
|
state2.result += charFromCodepoint(hexResult);
|
|
state2.position++;
|
|
} else {
|
|
throwError(state2, "unknown escape sequence");
|
|
}
|
|
captureStart = captureEnd = state2.position;
|
|
} else if (is_EOL(ch)) {
|
|
captureSegment(state2, captureStart, captureEnd, true);
|
|
writeFoldedLines(state2, skipSeparationSpace(state2, false, nodeIndent));
|
|
captureStart = captureEnd = state2.position;
|
|
} else if (state2.position === state2.lineStart && testDocumentSeparator(state2)) {
|
|
throwError(state2, "unexpected end of the document within a double quoted scalar");
|
|
} else {
|
|
state2.position++;
|
|
captureEnd = state2.position;
|
|
}
|
|
}
|
|
throwError(state2, "unexpected end of the stream within a double quoted scalar");
|
|
}
|
|
function readFlowCollection(state2, nodeIndent) {
|
|
var readNext = true, _line, _tag = state2.tag, _result, _anchor2 = state2.anchor, following, terminator, isPair, isExplicitPair, isMapping, overridableKeys = {}, keyNode, keyTag, valueNode, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch === 91) {
|
|
terminator = 93;
|
|
isMapping = false;
|
|
_result = [];
|
|
} else if (ch === 123) {
|
|
terminator = 125;
|
|
isMapping = true;
|
|
_result = {};
|
|
} else {
|
|
return false;
|
|
}
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = _result;
|
|
}
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
while (ch !== 0) {
|
|
skipSeparationSpace(state2, true, nodeIndent);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch === terminator) {
|
|
state2.position++;
|
|
state2.tag = _tag;
|
|
state2.anchor = _anchor2;
|
|
state2.kind = isMapping ? "mapping" : "sequence";
|
|
state2.result = _result;
|
|
return true;
|
|
} else if (!readNext) {
|
|
throwError(state2, "missed comma between flow collection entries");
|
|
}
|
|
keyTag = keyNode = valueNode = null;
|
|
isPair = isExplicitPair = false;
|
|
if (ch === 63) {
|
|
following = state2.input.charCodeAt(state2.position + 1);
|
|
if (is_WS_OR_EOL(following)) {
|
|
isPair = isExplicitPair = true;
|
|
state2.position++;
|
|
skipSeparationSpace(state2, true, nodeIndent);
|
|
}
|
|
}
|
|
_line = state2.line;
|
|
composeNode(state2, nodeIndent, CONTEXT_FLOW_IN, false, true);
|
|
keyTag = state2.tag;
|
|
keyNode = state2.result;
|
|
skipSeparationSpace(state2, true, nodeIndent);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if ((isExplicitPair || state2.line === _line) && ch === 58) {
|
|
isPair = true;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
skipSeparationSpace(state2, true, nodeIndent);
|
|
composeNode(state2, nodeIndent, CONTEXT_FLOW_IN, false, true);
|
|
valueNode = state2.result;
|
|
}
|
|
if (isMapping) {
|
|
storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, valueNode);
|
|
} else if (isPair) {
|
|
_result.push(storeMappingPair(state2, null, overridableKeys, keyTag, keyNode, valueNode));
|
|
} else {
|
|
_result.push(keyNode);
|
|
}
|
|
skipSeparationSpace(state2, true, nodeIndent);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch === 44) {
|
|
readNext = true;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} else {
|
|
readNext = false;
|
|
}
|
|
}
|
|
throwError(state2, "unexpected end of the stream within a flow collection");
|
|
}
|
|
function readBlockScalar(state2, nodeIndent) {
|
|
var captureStart, folding, chomping = CHOMPING_CLIP, didReadContent = false, detectedIndent = false, textIndent = nodeIndent, emptyLines = 0, atMoreIndented = false, tmp, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch === 124) {
|
|
folding = false;
|
|
} else if (ch === 62) {
|
|
folding = true;
|
|
} else {
|
|
return false;
|
|
}
|
|
state2.kind = "scalar";
|
|
state2.result = "";
|
|
while (ch !== 0) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if (ch === 43 || ch === 45) {
|
|
if (CHOMPING_CLIP === chomping) {
|
|
chomping = ch === 43 ? CHOMPING_KEEP : CHOMPING_STRIP;
|
|
} else {
|
|
throwError(state2, "repeat of a chomping mode identifier");
|
|
}
|
|
} else if ((tmp = fromDecimalCode(ch)) >= 0) {
|
|
if (tmp === 0) {
|
|
throwError(state2, "bad explicit indentation width of a block scalar; it cannot be less than one");
|
|
} else if (!detectedIndent) {
|
|
textIndent = nodeIndent + tmp - 1;
|
|
detectedIndent = true;
|
|
} else {
|
|
throwError(state2, "repeat of an indentation width identifier");
|
|
}
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
if (is_WHITE_SPACE(ch)) {
|
|
do {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} while (is_WHITE_SPACE(ch));
|
|
if (ch === 35) {
|
|
do {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} while (!is_EOL(ch) && ch !== 0);
|
|
}
|
|
}
|
|
while (ch !== 0) {
|
|
readLineBreak(state2);
|
|
state2.lineIndent = 0;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
while ((!detectedIndent || state2.lineIndent < textIndent) && ch === 32) {
|
|
state2.lineIndent++;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (!detectedIndent && state2.lineIndent > textIndent) {
|
|
textIndent = state2.lineIndent;
|
|
}
|
|
if (is_EOL(ch)) {
|
|
emptyLines++;
|
|
continue;
|
|
}
|
|
if (state2.lineIndent < textIndent) {
|
|
if (chomping === CHOMPING_KEEP) {
|
|
state2.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines);
|
|
} else if (chomping === CHOMPING_CLIP) {
|
|
if (didReadContent) {
|
|
state2.result += "\n";
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
if (folding) {
|
|
if (is_WHITE_SPACE(ch)) {
|
|
atMoreIndented = true;
|
|
state2.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines);
|
|
} else if (atMoreIndented) {
|
|
atMoreIndented = false;
|
|
state2.result += common.repeat("\n", emptyLines + 1);
|
|
} else if (emptyLines === 0) {
|
|
if (didReadContent) {
|
|
state2.result += " ";
|
|
}
|
|
} else {
|
|
state2.result += common.repeat("\n", emptyLines);
|
|
}
|
|
} else {
|
|
state2.result += common.repeat("\n", didReadContent ? 1 + emptyLines : emptyLines);
|
|
}
|
|
didReadContent = true;
|
|
detectedIndent = true;
|
|
emptyLines = 0;
|
|
captureStart = state2.position;
|
|
while (!is_EOL(ch) && ch !== 0) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
captureSegment(state2, captureStart, state2.position, false);
|
|
}
|
|
return true;
|
|
}
|
|
function readBlockSequence(state2, nodeIndent) {
|
|
var _line, _tag = state2.tag, _anchor2 = state2.anchor, _result = [], following, detected = false, ch;
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = _result;
|
|
}
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
while (ch !== 0) {
|
|
if (ch !== 45) {
|
|
break;
|
|
}
|
|
following = state2.input.charCodeAt(state2.position + 1);
|
|
if (!is_WS_OR_EOL(following)) {
|
|
break;
|
|
}
|
|
detected = true;
|
|
state2.position++;
|
|
if (skipSeparationSpace(state2, true, -1)) {
|
|
if (state2.lineIndent <= nodeIndent) {
|
|
_result.push(null);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
continue;
|
|
}
|
|
}
|
|
_line = state2.line;
|
|
composeNode(state2, nodeIndent, CONTEXT_BLOCK_IN, false, true);
|
|
_result.push(state2.result);
|
|
skipSeparationSpace(state2, true, -1);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if ((state2.line === _line || state2.lineIndent > nodeIndent) && ch !== 0) {
|
|
throwError(state2, "bad indentation of a sequence entry");
|
|
} else if (state2.lineIndent < nodeIndent) {
|
|
break;
|
|
}
|
|
}
|
|
if (detected) {
|
|
state2.tag = _tag;
|
|
state2.anchor = _anchor2;
|
|
state2.kind = "sequence";
|
|
state2.result = _result;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
function readBlockMapping(state2, nodeIndent, flowIndent) {
|
|
var following, allowCompact, _line, _pos, _tag = state2.tag, _anchor2 = state2.anchor, _result = {}, overridableKeys = {}, keyTag = null, keyNode = null, valueNode = null, atExplicitKey = false, detected = false, ch;
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = _result;
|
|
}
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
while (ch !== 0) {
|
|
following = state2.input.charCodeAt(state2.position + 1);
|
|
_line = state2.line;
|
|
_pos = state2.position;
|
|
if ((ch === 63 || ch === 58) && is_WS_OR_EOL(following)) {
|
|
if (ch === 63) {
|
|
if (atExplicitKey) {
|
|
storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, null);
|
|
keyTag = keyNode = valueNode = null;
|
|
}
|
|
detected = true;
|
|
atExplicitKey = true;
|
|
allowCompact = true;
|
|
} else if (atExplicitKey) {
|
|
atExplicitKey = false;
|
|
allowCompact = true;
|
|
} else {
|
|
throwError(state2, "incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line");
|
|
}
|
|
state2.position += 1;
|
|
ch = following;
|
|
} else if (composeNode(state2, flowIndent, CONTEXT_FLOW_OUT, false, true)) {
|
|
if (state2.line === _line) {
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
while (is_WHITE_SPACE(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (ch === 58) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if (!is_WS_OR_EOL(ch)) {
|
|
throwError(state2, "a whitespace character is expected after the key-value separator within a block mapping");
|
|
}
|
|
if (atExplicitKey) {
|
|
storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, null);
|
|
keyTag = keyNode = valueNode = null;
|
|
}
|
|
detected = true;
|
|
atExplicitKey = false;
|
|
allowCompact = false;
|
|
keyTag = state2.tag;
|
|
keyNode = state2.result;
|
|
} else if (detected) {
|
|
throwError(state2, "can not read an implicit mapping pair; a colon is missed");
|
|
} else {
|
|
state2.tag = _tag;
|
|
state2.anchor = _anchor2;
|
|
return true;
|
|
}
|
|
} else if (detected) {
|
|
throwError(state2, "can not read a block mapping entry; a multiline key may not be an implicit key");
|
|
} else {
|
|
state2.tag = _tag;
|
|
state2.anchor = _anchor2;
|
|
return true;
|
|
}
|
|
} else {
|
|
break;
|
|
}
|
|
if (state2.line === _line || state2.lineIndent > nodeIndent) {
|
|
if (composeNode(state2, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {
|
|
if (atExplicitKey) {
|
|
keyNode = state2.result;
|
|
} else {
|
|
valueNode = state2.result;
|
|
}
|
|
}
|
|
if (!atExplicitKey) {
|
|
storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _pos);
|
|
keyTag = keyNode = valueNode = null;
|
|
}
|
|
skipSeparationSpace(state2, true, -1);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
}
|
|
if (state2.lineIndent > nodeIndent && ch !== 0) {
|
|
throwError(state2, "bad indentation of a mapping entry");
|
|
} else if (state2.lineIndent < nodeIndent) {
|
|
break;
|
|
}
|
|
}
|
|
if (atExplicitKey) {
|
|
storeMappingPair(state2, _result, overridableKeys, keyTag, keyNode, null);
|
|
}
|
|
if (detected) {
|
|
state2.tag = _tag;
|
|
state2.anchor = _anchor2;
|
|
state2.kind = "mapping";
|
|
state2.result = _result;
|
|
}
|
|
return detected;
|
|
}
|
|
function readTagProperty(state2) {
|
|
var _position, isVerbatim = false, isNamed = false, tagHandle, tagName, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch !== 33) return false;
|
|
if (state2.tag !== null) {
|
|
throwError(state2, "duplication of a tag property");
|
|
}
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
if (ch === 60) {
|
|
isVerbatim = true;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} else if (ch === 33) {
|
|
isNamed = true;
|
|
tagHandle = "!!";
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} else {
|
|
tagHandle = "!";
|
|
}
|
|
_position = state2.position;
|
|
if (isVerbatim) {
|
|
do {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} while (ch !== 0 && ch !== 62);
|
|
if (state2.position < state2.length) {
|
|
tagName = state2.input.slice(_position, state2.position);
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} else {
|
|
throwError(state2, "unexpected end of the stream within a verbatim tag");
|
|
}
|
|
} else {
|
|
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
if (ch === 33) {
|
|
if (!isNamed) {
|
|
tagHandle = state2.input.slice(_position - 1, state2.position + 1);
|
|
if (!PATTERN_TAG_HANDLE.test(tagHandle)) {
|
|
throwError(state2, "named tag handle cannot contain such characters");
|
|
}
|
|
isNamed = true;
|
|
_position = state2.position + 1;
|
|
} else {
|
|
throwError(state2, "tag suffix cannot contain exclamation marks");
|
|
}
|
|
}
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
tagName = state2.input.slice(_position, state2.position);
|
|
if (PATTERN_FLOW_INDICATORS.test(tagName)) {
|
|
throwError(state2, "tag suffix cannot contain flow indicator characters");
|
|
}
|
|
}
|
|
if (tagName && !PATTERN_TAG_URI.test(tagName)) {
|
|
throwError(state2, "tag name cannot contain such characters: " + tagName);
|
|
}
|
|
if (isVerbatim) {
|
|
state2.tag = tagName;
|
|
} else if (_hasOwnProperty.call(state2.tagMap, tagHandle)) {
|
|
state2.tag = state2.tagMap[tagHandle] + tagName;
|
|
} else if (tagHandle === "!") {
|
|
state2.tag = "!" + tagName;
|
|
} else if (tagHandle === "!!") {
|
|
state2.tag = "tag:yaml.org,2002:" + tagName;
|
|
} else {
|
|
throwError(state2, 'undeclared tag handle "' + tagHandle + '"');
|
|
}
|
|
return true;
|
|
}
|
|
function readAnchorProperty(state2) {
|
|
var _position, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch !== 38) return false;
|
|
if (state2.anchor !== null) {
|
|
throwError(state2, "duplication of an anchor property");
|
|
}
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
_position = state2.position;
|
|
while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (state2.position === _position) {
|
|
throwError(state2, "name of an anchor node must contain at least one character");
|
|
}
|
|
state2.anchor = state2.input.slice(_position, state2.position);
|
|
return true;
|
|
}
|
|
function readAlias(state2) {
|
|
var _position, alias, ch;
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (ch !== 42) return false;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
_position = state2.position;
|
|
while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (state2.position === _position) {
|
|
throwError(state2, "name of an alias node must contain at least one character");
|
|
}
|
|
alias = state2.input.slice(_position, state2.position);
|
|
if (!_hasOwnProperty.call(state2.anchorMap, alias)) {
|
|
throwError(state2, 'unidentified alias "' + alias + '"');
|
|
}
|
|
state2.result = state2.anchorMap[alias];
|
|
skipSeparationSpace(state2, true, -1);
|
|
return true;
|
|
}
|
|
function composeNode(state2, parentIndent, nodeContext, allowToSeek, allowCompact) {
|
|
var allowBlockStyles, allowBlockScalars, allowBlockCollections, indentStatus = 1, atNewLine = false, hasContent = false, typeIndex, typeQuantity, type, flowIndent, blockIndent;
|
|
if (state2.listener !== null) {
|
|
state2.listener("open", state2);
|
|
}
|
|
state2.tag = null;
|
|
state2.anchor = null;
|
|
state2.kind = null;
|
|
state2.result = null;
|
|
allowBlockStyles = allowBlockScalars = allowBlockCollections = CONTEXT_BLOCK_OUT === nodeContext || CONTEXT_BLOCK_IN === nodeContext;
|
|
if (allowToSeek) {
|
|
if (skipSeparationSpace(state2, true, -1)) {
|
|
atNewLine = true;
|
|
if (state2.lineIndent > parentIndent) {
|
|
indentStatus = 1;
|
|
} else if (state2.lineIndent === parentIndent) {
|
|
indentStatus = 0;
|
|
} else if (state2.lineIndent < parentIndent) {
|
|
indentStatus = -1;
|
|
}
|
|
}
|
|
}
|
|
if (indentStatus === 1) {
|
|
while (readTagProperty(state2) || readAnchorProperty(state2)) {
|
|
if (skipSeparationSpace(state2, true, -1)) {
|
|
atNewLine = true;
|
|
allowBlockCollections = allowBlockStyles;
|
|
if (state2.lineIndent > parentIndent) {
|
|
indentStatus = 1;
|
|
} else if (state2.lineIndent === parentIndent) {
|
|
indentStatus = 0;
|
|
} else if (state2.lineIndent < parentIndent) {
|
|
indentStatus = -1;
|
|
}
|
|
} else {
|
|
allowBlockCollections = false;
|
|
}
|
|
}
|
|
}
|
|
if (allowBlockCollections) {
|
|
allowBlockCollections = atNewLine || allowCompact;
|
|
}
|
|
if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {
|
|
if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {
|
|
flowIndent = parentIndent;
|
|
} else {
|
|
flowIndent = parentIndent + 1;
|
|
}
|
|
blockIndent = state2.position - state2.lineStart;
|
|
if (indentStatus === 1) {
|
|
if (allowBlockCollections && (readBlockSequence(state2, blockIndent) || readBlockMapping(state2, blockIndent, flowIndent)) || readFlowCollection(state2, flowIndent)) {
|
|
hasContent = true;
|
|
} else {
|
|
if (allowBlockScalars && readBlockScalar(state2, flowIndent) || readSingleQuotedScalar(state2, flowIndent) || readDoubleQuotedScalar(state2, flowIndent)) {
|
|
hasContent = true;
|
|
} else if (readAlias(state2)) {
|
|
hasContent = true;
|
|
if (state2.tag !== null || state2.anchor !== null) {
|
|
throwError(state2, "alias node should not have any properties");
|
|
}
|
|
} else if (readPlainScalar(state2, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {
|
|
hasContent = true;
|
|
if (state2.tag === null) {
|
|
state2.tag = "?";
|
|
}
|
|
}
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = state2.result;
|
|
}
|
|
}
|
|
} else if (indentStatus === 0) {
|
|
hasContent = allowBlockCollections && readBlockSequence(state2, blockIndent);
|
|
}
|
|
}
|
|
if (state2.tag !== null && state2.tag !== "!") {
|
|
if (state2.tag === "?") {
|
|
if (state2.result !== null && state2.kind !== "scalar") {
|
|
throwError(state2, 'unacceptable node kind for !<?> tag; it should be "scalar", not "' + state2.kind + '"');
|
|
}
|
|
for (typeIndex = 0, typeQuantity = state2.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {
|
|
type = state2.implicitTypes[typeIndex];
|
|
if (type.resolve(state2.result)) {
|
|
state2.result = type.construct(state2.result);
|
|
state2.tag = type.tag;
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = state2.result;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
} else if (_hasOwnProperty.call(state2.typeMap[state2.kind || "fallback"], state2.tag)) {
|
|
type = state2.typeMap[state2.kind || "fallback"][state2.tag];
|
|
if (state2.result !== null && type.kind !== state2.kind) {
|
|
throwError(state2, "unacceptable node kind for !<" + state2.tag + '> tag; it should be "' + type.kind + '", not "' + state2.kind + '"');
|
|
}
|
|
if (!type.resolve(state2.result)) {
|
|
throwError(state2, "cannot resolve a node with !<" + state2.tag + "> explicit tag");
|
|
} else {
|
|
state2.result = type.construct(state2.result);
|
|
if (state2.anchor !== null) {
|
|
state2.anchorMap[state2.anchor] = state2.result;
|
|
}
|
|
}
|
|
} else {
|
|
throwError(state2, "unknown tag !<" + state2.tag + ">");
|
|
}
|
|
}
|
|
if (state2.listener !== null) {
|
|
state2.listener("close", state2);
|
|
}
|
|
return state2.tag !== null || state2.anchor !== null || hasContent;
|
|
}
|
|
function readDocument(state2) {
|
|
var documentStart = state2.position, _position, directiveName, directiveArgs, hasDirectives = false, ch;
|
|
state2.version = null;
|
|
state2.checkLineBreaks = state2.legacy;
|
|
state2.tagMap = {};
|
|
state2.anchorMap = {};
|
|
while ((ch = state2.input.charCodeAt(state2.position)) !== 0) {
|
|
skipSeparationSpace(state2, true, -1);
|
|
ch = state2.input.charCodeAt(state2.position);
|
|
if (state2.lineIndent > 0 || ch !== 37) {
|
|
break;
|
|
}
|
|
hasDirectives = true;
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
_position = state2.position;
|
|
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
directiveName = state2.input.slice(_position, state2.position);
|
|
directiveArgs = [];
|
|
if (directiveName.length < 1) {
|
|
throwError(state2, "directive name must not be less than one character in length");
|
|
}
|
|
while (ch !== 0) {
|
|
while (is_WHITE_SPACE(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
if (ch === 35) {
|
|
do {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
} while (ch !== 0 && !is_EOL(ch));
|
|
break;
|
|
}
|
|
if (is_EOL(ch)) break;
|
|
_position = state2.position;
|
|
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
ch = state2.input.charCodeAt(++state2.position);
|
|
}
|
|
directiveArgs.push(state2.input.slice(_position, state2.position));
|
|
}
|
|
if (ch !== 0) readLineBreak(state2);
|
|
if (_hasOwnProperty.call(directiveHandlers, directiveName)) {
|
|
directiveHandlers[directiveName](state2, directiveName, directiveArgs);
|
|
} else {
|
|
throwWarning(state2, 'unknown document directive "' + directiveName + '"');
|
|
}
|
|
}
|
|
skipSeparationSpace(state2, true, -1);
|
|
if (state2.lineIndent === 0 && state2.input.charCodeAt(state2.position) === 45 && state2.input.charCodeAt(state2.position + 1) === 45 && state2.input.charCodeAt(state2.position + 2) === 45) {
|
|
state2.position += 3;
|
|
skipSeparationSpace(state2, true, -1);
|
|
} else if (hasDirectives) {
|
|
throwError(state2, "directives end mark is expected");
|
|
}
|
|
composeNode(state2, state2.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true);
|
|
skipSeparationSpace(state2, true, -1);
|
|
if (state2.checkLineBreaks && PATTERN_NON_ASCII_LINE_BREAKS.test(state2.input.slice(documentStart, state2.position))) {
|
|
throwWarning(state2, "non-ASCII line breaks are interpreted as content");
|
|
}
|
|
state2.documents.push(state2.result);
|
|
if (state2.position === state2.lineStart && testDocumentSeparator(state2)) {
|
|
if (state2.input.charCodeAt(state2.position) === 46) {
|
|
state2.position += 3;
|
|
skipSeparationSpace(state2, true, -1);
|
|
}
|
|
return;
|
|
}
|
|
if (state2.position < state2.length - 1) {
|
|
throwError(state2, "end of the stream or a document separator is expected");
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
function loadDocuments(input, options) {
|
|
input = String(input);
|
|
options = options || {};
|
|
if (input.length !== 0) {
|
|
if (input.charCodeAt(input.length - 1) !== 10 && input.charCodeAt(input.length - 1) !== 13) {
|
|
input += "\n";
|
|
}
|
|
if (input.charCodeAt(0) === 65279) {
|
|
input = input.slice(1);
|
|
}
|
|
}
|
|
var state2 = new State(input, options);
|
|
var nullpos = input.indexOf("\0");
|
|
if (nullpos !== -1) {
|
|
state2.position = nullpos;
|
|
throwError(state2, "null byte is not allowed in input");
|
|
}
|
|
state2.input += "\0";
|
|
while (state2.input.charCodeAt(state2.position) === 32) {
|
|
state2.lineIndent += 1;
|
|
state2.position += 1;
|
|
}
|
|
while (state2.position < state2.length - 1) {
|
|
readDocument(state2);
|
|
}
|
|
return state2.documents;
|
|
}
|
|
function loadAll(input, iterator, options) {
|
|
if (iterator !== null && typeof iterator === "object" && typeof options === "undefined") {
|
|
options = iterator;
|
|
iterator = null;
|
|
}
|
|
var documents = loadDocuments(input, options);
|
|
if (typeof iterator !== "function") {
|
|
return documents;
|
|
}
|
|
for (var index2 = 0, length = documents.length; index2 < length; index2 += 1) {
|
|
iterator(documents[index2]);
|
|
}
|
|
}
|
|
function load(input, options) {
|
|
var documents = loadDocuments(input, options);
|
|
if (documents.length === 0) {
|
|
return void 0;
|
|
} else if (documents.length === 1) {
|
|
return documents[0];
|
|
}
|
|
throw new YAMLException("expected a single document in the stream, but found more");
|
|
}
|
|
function safeLoadAll(input, iterator, options) {
|
|
if (typeof iterator === "object" && iterator !== null && typeof options === "undefined") {
|
|
options = iterator;
|
|
iterator = null;
|
|
}
|
|
return loadAll(input, iterator, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
|
}
|
|
function safeLoad(input, options) {
|
|
return load(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
|
}
|
|
module2.exports.loadAll = loadAll;
|
|
module2.exports.load = load;
|
|
module2.exports.safeLoadAll = safeLoadAll;
|
|
module2.exports.safeLoad = safeLoad;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/dumper.js
|
|
var require_dumper = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml/dumper.js"(exports, module2) {
|
|
"use strict";
|
|
var common = require_common();
|
|
var YAMLException = require_exception();
|
|
var DEFAULT_FULL_SCHEMA = require_default_full();
|
|
var DEFAULT_SAFE_SCHEMA = require_default_safe();
|
|
var _toString = Object.prototype.toString;
|
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
var CHAR_TAB = 9;
|
|
var CHAR_LINE_FEED = 10;
|
|
var CHAR_CARRIAGE_RETURN = 13;
|
|
var CHAR_SPACE = 32;
|
|
var CHAR_EXCLAMATION = 33;
|
|
var CHAR_DOUBLE_QUOTE = 34;
|
|
var CHAR_SHARP = 35;
|
|
var CHAR_PERCENT = 37;
|
|
var CHAR_AMPERSAND = 38;
|
|
var CHAR_SINGLE_QUOTE = 39;
|
|
var CHAR_ASTERISK = 42;
|
|
var CHAR_COMMA = 44;
|
|
var CHAR_MINUS = 45;
|
|
var CHAR_COLON = 58;
|
|
var CHAR_EQUALS = 61;
|
|
var CHAR_GREATER_THAN = 62;
|
|
var CHAR_QUESTION = 63;
|
|
var CHAR_COMMERCIAL_AT = 64;
|
|
var CHAR_LEFT_SQUARE_BRACKET = 91;
|
|
var CHAR_RIGHT_SQUARE_BRACKET = 93;
|
|
var CHAR_GRAVE_ACCENT = 96;
|
|
var CHAR_LEFT_CURLY_BRACKET = 123;
|
|
var CHAR_VERTICAL_LINE = 124;
|
|
var CHAR_RIGHT_CURLY_BRACKET = 125;
|
|
var ESCAPE_SEQUENCES = {};
|
|
ESCAPE_SEQUENCES[0] = "\\0";
|
|
ESCAPE_SEQUENCES[7] = "\\a";
|
|
ESCAPE_SEQUENCES[8] = "\\b";
|
|
ESCAPE_SEQUENCES[9] = "\\t";
|
|
ESCAPE_SEQUENCES[10] = "\\n";
|
|
ESCAPE_SEQUENCES[11] = "\\v";
|
|
ESCAPE_SEQUENCES[12] = "\\f";
|
|
ESCAPE_SEQUENCES[13] = "\\r";
|
|
ESCAPE_SEQUENCES[27] = "\\e";
|
|
ESCAPE_SEQUENCES[34] = '\\"';
|
|
ESCAPE_SEQUENCES[92] = "\\\\";
|
|
ESCAPE_SEQUENCES[133] = "\\N";
|
|
ESCAPE_SEQUENCES[160] = "\\_";
|
|
ESCAPE_SEQUENCES[8232] = "\\L";
|
|
ESCAPE_SEQUENCES[8233] = "\\P";
|
|
var DEPRECATED_BOOLEANS_SYNTAX = [
|
|
"y",
|
|
"Y",
|
|
"yes",
|
|
"Yes",
|
|
"YES",
|
|
"on",
|
|
"On",
|
|
"ON",
|
|
"n",
|
|
"N",
|
|
"no",
|
|
"No",
|
|
"NO",
|
|
"off",
|
|
"Off",
|
|
"OFF"
|
|
];
|
|
function compileStyleMap(schema, map) {
|
|
var result, keys, index2, length, tag2, style, type;
|
|
if (map === null) return {};
|
|
result = {};
|
|
keys = Object.keys(map);
|
|
for (index2 = 0, length = keys.length; index2 < length; index2 += 1) {
|
|
tag2 = keys[index2];
|
|
style = String(map[tag2]);
|
|
if (tag2.slice(0, 2) === "!!") {
|
|
tag2 = "tag:yaml.org,2002:" + tag2.slice(2);
|
|
}
|
|
type = schema.compiledTypeMap["fallback"][tag2];
|
|
if (type && _hasOwnProperty.call(type.styleAliases, style)) {
|
|
style = type.styleAliases[style];
|
|
}
|
|
result[tag2] = style;
|
|
}
|
|
return result;
|
|
}
|
|
function encodeHex(character) {
|
|
var string, handle, length;
|
|
string = character.toString(16).toUpperCase();
|
|
if (character <= 255) {
|
|
handle = "x";
|
|
length = 2;
|
|
} else if (character <= 65535) {
|
|
handle = "u";
|
|
length = 4;
|
|
} else if (character <= 4294967295) {
|
|
handle = "U";
|
|
length = 8;
|
|
} else {
|
|
throw new YAMLException("code point within a string may not be greater than 0xFFFFFFFF");
|
|
}
|
|
return "\\" + handle + common.repeat("0", length - string.length) + string;
|
|
}
|
|
function State(options) {
|
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
this.indent = Math.max(1, options["indent"] || 2);
|
|
this.noArrayIndent = options["noArrayIndent"] || false;
|
|
this.skipInvalid = options["skipInvalid"] || false;
|
|
this.flowLevel = common.isNothing(options["flowLevel"]) ? -1 : options["flowLevel"];
|
|
this.styleMap = compileStyleMap(this.schema, options["styles"] || null);
|
|
this.sortKeys = options["sortKeys"] || false;
|
|
this.lineWidth = options["lineWidth"] || 80;
|
|
this.noRefs = options["noRefs"] || false;
|
|
this.noCompatMode = options["noCompatMode"] || false;
|
|
this.condenseFlow = options["condenseFlow"] || false;
|
|
this.implicitTypes = this.schema.compiledImplicit;
|
|
this.explicitTypes = this.schema.compiledExplicit;
|
|
this.tag = null;
|
|
this.result = "";
|
|
this.duplicates = [];
|
|
this.usedDuplicates = null;
|
|
}
|
|
function indentString(string, spaces) {
|
|
var ind = common.repeat(" ", spaces), position = 0, next2 = -1, result = "", line, length = string.length;
|
|
while (position < length) {
|
|
next2 = string.indexOf("\n", position);
|
|
if (next2 === -1) {
|
|
line = string.slice(position);
|
|
position = length;
|
|
} else {
|
|
line = string.slice(position, next2 + 1);
|
|
position = next2 + 1;
|
|
}
|
|
if (line.length && line !== "\n") result += ind;
|
|
result += line;
|
|
}
|
|
return result;
|
|
}
|
|
function generateNextLine(state2, level) {
|
|
return "\n" + common.repeat(" ", state2.indent * level);
|
|
}
|
|
function testImplicitResolving(state2, str) {
|
|
var index2, length, type;
|
|
for (index2 = 0, length = state2.implicitTypes.length; index2 < length; index2 += 1) {
|
|
type = state2.implicitTypes[index2];
|
|
if (type.resolve(str)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function isWhitespace(c) {
|
|
return c === CHAR_SPACE || c === CHAR_TAB;
|
|
}
|
|
function isPrintable(c) {
|
|
return 32 <= c && c <= 126 || 161 <= c && c <= 55295 && c !== 8232 && c !== 8233 || 57344 <= c && c <= 65533 && c !== 65279 || 65536 <= c && c <= 1114111;
|
|
}
|
|
function isNsChar(c) {
|
|
return isPrintable(c) && !isWhitespace(c) && c !== 65279 && c !== CHAR_CARRIAGE_RETURN && c !== CHAR_LINE_FEED;
|
|
}
|
|
function isPlainSafe(c, prev) {
|
|
return isPrintable(c) && c !== 65279 && c !== CHAR_COMMA && c !== CHAR_LEFT_SQUARE_BRACKET && c !== CHAR_RIGHT_SQUARE_BRACKET && c !== CHAR_LEFT_CURLY_BRACKET && c !== CHAR_RIGHT_CURLY_BRACKET && c !== CHAR_COLON && (c !== CHAR_SHARP || prev && isNsChar(prev));
|
|
}
|
|
function isPlainSafeFirst(c) {
|
|
return isPrintable(c) && c !== 65279 && !isWhitespace(c) && c !== CHAR_MINUS && c !== CHAR_QUESTION && c !== CHAR_COLON && c !== CHAR_COMMA && c !== CHAR_LEFT_SQUARE_BRACKET && c !== CHAR_RIGHT_SQUARE_BRACKET && c !== CHAR_LEFT_CURLY_BRACKET && c !== CHAR_RIGHT_CURLY_BRACKET && c !== CHAR_SHARP && c !== CHAR_AMPERSAND && c !== CHAR_ASTERISK && c !== CHAR_EXCLAMATION && c !== CHAR_VERTICAL_LINE && c !== CHAR_EQUALS && c !== CHAR_GREATER_THAN && c !== CHAR_SINGLE_QUOTE && c !== CHAR_DOUBLE_QUOTE && c !== CHAR_PERCENT && c !== CHAR_COMMERCIAL_AT && c !== CHAR_GRAVE_ACCENT;
|
|
}
|
|
function needIndentIndicator(string) {
|
|
var leadingSpaceRe = /^\n* /;
|
|
return leadingSpaceRe.test(string);
|
|
}
|
|
var STYLE_PLAIN = 1;
|
|
var STYLE_SINGLE = 2;
|
|
var STYLE_LITERAL = 3;
|
|
var STYLE_FOLDED = 4;
|
|
var STYLE_DOUBLE = 5;
|
|
function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, testAmbiguousType) {
|
|
var i;
|
|
var char, prev_char;
|
|
var hasLineBreak = false;
|
|
var hasFoldableLine = false;
|
|
var shouldTrackWidth = lineWidth !== -1;
|
|
var previousLineBreak = -1;
|
|
var plain = isPlainSafeFirst(string.charCodeAt(0)) && !isWhitespace(string.charCodeAt(string.length - 1));
|
|
if (singleLineOnly) {
|
|
for (i = 0; i < string.length; i++) {
|
|
char = string.charCodeAt(i);
|
|
if (!isPrintable(char)) {
|
|
return STYLE_DOUBLE;
|
|
}
|
|
prev_char = i > 0 ? string.charCodeAt(i - 1) : null;
|
|
plain = plain && isPlainSafe(char, prev_char);
|
|
}
|
|
} else {
|
|
for (i = 0; i < string.length; i++) {
|
|
char = string.charCodeAt(i);
|
|
if (char === CHAR_LINE_FEED) {
|
|
hasLineBreak = true;
|
|
if (shouldTrackWidth) {
|
|
hasFoldableLine = hasFoldableLine || // Foldable line = too long, and not more-indented.
|
|
i - previousLineBreak - 1 > lineWidth && string[previousLineBreak + 1] !== " ";
|
|
previousLineBreak = i;
|
|
}
|
|
} else if (!isPrintable(char)) {
|
|
return STYLE_DOUBLE;
|
|
}
|
|
prev_char = i > 0 ? string.charCodeAt(i - 1) : null;
|
|
plain = plain && isPlainSafe(char, prev_char);
|
|
}
|
|
hasFoldableLine = hasFoldableLine || shouldTrackWidth && (i - previousLineBreak - 1 > lineWidth && string[previousLineBreak + 1] !== " ");
|
|
}
|
|
if (!hasLineBreak && !hasFoldableLine) {
|
|
return plain && !testAmbiguousType(string) ? STYLE_PLAIN : STYLE_SINGLE;
|
|
}
|
|
if (indentPerLevel > 9 && needIndentIndicator(string)) {
|
|
return STYLE_DOUBLE;
|
|
}
|
|
return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL;
|
|
}
|
|
function writeScalar(state2, string, level, iskey) {
|
|
state2.dump = (function() {
|
|
if (string.length === 0) {
|
|
return "''";
|
|
}
|
|
if (!state2.noCompatMode && DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1) {
|
|
return "'" + string + "'";
|
|
}
|
|
var indent = state2.indent * Math.max(1, level);
|
|
var lineWidth = state2.lineWidth === -1 ? -1 : Math.max(Math.min(state2.lineWidth, 40), state2.lineWidth - indent);
|
|
var singleLineOnly = iskey || state2.flowLevel > -1 && level >= state2.flowLevel;
|
|
function testAmbiguity(string2) {
|
|
return testImplicitResolving(state2, string2);
|
|
}
|
|
switch (chooseScalarStyle(string, singleLineOnly, state2.indent, lineWidth, testAmbiguity)) {
|
|
case STYLE_PLAIN:
|
|
return string;
|
|
case STYLE_SINGLE:
|
|
return "'" + string.replace(/'/g, "''") + "'";
|
|
case STYLE_LITERAL:
|
|
return "|" + blockHeader(string, state2.indent) + dropEndingNewline(indentString(string, indent));
|
|
case STYLE_FOLDED:
|
|
return ">" + blockHeader(string, state2.indent) + dropEndingNewline(indentString(foldString(string, lineWidth), indent));
|
|
case STYLE_DOUBLE:
|
|
return '"' + escapeString(string, lineWidth) + '"';
|
|
default:
|
|
throw new YAMLException("impossible error: invalid scalar style");
|
|
}
|
|
})();
|
|
}
|
|
function blockHeader(string, indentPerLevel) {
|
|
var indentIndicator = needIndentIndicator(string) ? String(indentPerLevel) : "";
|
|
var clip = string[string.length - 1] === "\n";
|
|
var keep = clip && (string[string.length - 2] === "\n" || string === "\n");
|
|
var chomp = keep ? "+" : clip ? "" : "-";
|
|
return indentIndicator + chomp + "\n";
|
|
}
|
|
function dropEndingNewline(string) {
|
|
return string[string.length - 1] === "\n" ? string.slice(0, -1) : string;
|
|
}
|
|
function foldString(string, width) {
|
|
var lineRe = /(\n+)([^\n]*)/g;
|
|
var result = (function() {
|
|
var nextLF = string.indexOf("\n");
|
|
nextLF = nextLF !== -1 ? nextLF : string.length;
|
|
lineRe.lastIndex = nextLF;
|
|
return foldLine(string.slice(0, nextLF), width);
|
|
})();
|
|
var prevMoreIndented = string[0] === "\n" || string[0] === " ";
|
|
var moreIndented;
|
|
var match;
|
|
while (match = lineRe.exec(string)) {
|
|
var prefix = match[1], line = match[2];
|
|
moreIndented = line[0] === " ";
|
|
result += prefix + (!prevMoreIndented && !moreIndented && line !== "" ? "\n" : "") + foldLine(line, width);
|
|
prevMoreIndented = moreIndented;
|
|
}
|
|
return result;
|
|
}
|
|
function foldLine(line, width) {
|
|
if (line === "" || line[0] === " ") return line;
|
|
var breakRe = / [^ ]/g;
|
|
var match;
|
|
var start = 0, end, curr = 0, next2 = 0;
|
|
var result = "";
|
|
while (match = breakRe.exec(line)) {
|
|
next2 = match.index;
|
|
if (next2 - start > width) {
|
|
end = curr > start ? curr : next2;
|
|
result += "\n" + line.slice(start, end);
|
|
start = end + 1;
|
|
}
|
|
curr = next2;
|
|
}
|
|
result += "\n";
|
|
if (line.length - start > width && curr > start) {
|
|
result += line.slice(start, curr) + "\n" + line.slice(curr + 1);
|
|
} else {
|
|
result += line.slice(start);
|
|
}
|
|
return result.slice(1);
|
|
}
|
|
function escapeString(string) {
|
|
var result = "";
|
|
var char, nextChar;
|
|
var escapeSeq;
|
|
for (var i = 0; i < string.length; i++) {
|
|
char = string.charCodeAt(i);
|
|
if (char >= 55296 && char <= 56319) {
|
|
nextChar = string.charCodeAt(i + 1);
|
|
if (nextChar >= 56320 && nextChar <= 57343) {
|
|
result += encodeHex((char - 55296) * 1024 + nextChar - 56320 + 65536);
|
|
i++;
|
|
continue;
|
|
}
|
|
}
|
|
escapeSeq = ESCAPE_SEQUENCES[char];
|
|
result += !escapeSeq && isPrintable(char) ? string[i] : escapeSeq || encodeHex(char);
|
|
}
|
|
return result;
|
|
}
|
|
function writeFlowSequence(state2, level, object) {
|
|
var _result = "", _tag = state2.tag, index2, length;
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
if (writeNode(state2, level, object[index2], false, false)) {
|
|
if (index2 !== 0) _result += "," + (!state2.condenseFlow ? " " : "");
|
|
_result += state2.dump;
|
|
}
|
|
}
|
|
state2.tag = _tag;
|
|
state2.dump = "[" + _result + "]";
|
|
}
|
|
function writeBlockSequence(state2, level, object, compact) {
|
|
var _result = "", _tag = state2.tag, index2, length;
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
if (writeNode(state2, level + 1, object[index2], true, true)) {
|
|
if (!compact || index2 !== 0) {
|
|
_result += generateNextLine(state2, level);
|
|
}
|
|
if (state2.dump && CHAR_LINE_FEED === state2.dump.charCodeAt(0)) {
|
|
_result += "-";
|
|
} else {
|
|
_result += "- ";
|
|
}
|
|
_result += state2.dump;
|
|
}
|
|
}
|
|
state2.tag = _tag;
|
|
state2.dump = _result || "[]";
|
|
}
|
|
function writeFlowMapping(state2, level, object) {
|
|
var _result = "", _tag = state2.tag, objectKeyList = Object.keys(object), index2, length, objectKey, objectValue, pairBuffer;
|
|
for (index2 = 0, length = objectKeyList.length; index2 < length; index2 += 1) {
|
|
pairBuffer = "";
|
|
if (index2 !== 0) pairBuffer += ", ";
|
|
if (state2.condenseFlow) pairBuffer += '"';
|
|
objectKey = objectKeyList[index2];
|
|
objectValue = object[objectKey];
|
|
if (!writeNode(state2, level, objectKey, false, false)) {
|
|
continue;
|
|
}
|
|
if (state2.dump.length > 1024) pairBuffer += "? ";
|
|
pairBuffer += state2.dump + (state2.condenseFlow ? '"' : "") + ":" + (state2.condenseFlow ? "" : " ");
|
|
if (!writeNode(state2, level, objectValue, false, false)) {
|
|
continue;
|
|
}
|
|
pairBuffer += state2.dump;
|
|
_result += pairBuffer;
|
|
}
|
|
state2.tag = _tag;
|
|
state2.dump = "{" + _result + "}";
|
|
}
|
|
function writeBlockMapping(state2, level, object, compact) {
|
|
var _result = "", _tag = state2.tag, objectKeyList = Object.keys(object), index2, length, objectKey, objectValue, explicitPair, pairBuffer;
|
|
if (state2.sortKeys === true) {
|
|
objectKeyList.sort();
|
|
} else if (typeof state2.sortKeys === "function") {
|
|
objectKeyList.sort(state2.sortKeys);
|
|
} else if (state2.sortKeys) {
|
|
throw new YAMLException("sortKeys must be a boolean or a function");
|
|
}
|
|
for (index2 = 0, length = objectKeyList.length; index2 < length; index2 += 1) {
|
|
pairBuffer = "";
|
|
if (!compact || index2 !== 0) {
|
|
pairBuffer += generateNextLine(state2, level);
|
|
}
|
|
objectKey = objectKeyList[index2];
|
|
objectValue = object[objectKey];
|
|
if (!writeNode(state2, level + 1, objectKey, true, true, true)) {
|
|
continue;
|
|
}
|
|
explicitPair = state2.tag !== null && state2.tag !== "?" || state2.dump && state2.dump.length > 1024;
|
|
if (explicitPair) {
|
|
if (state2.dump && CHAR_LINE_FEED === state2.dump.charCodeAt(0)) {
|
|
pairBuffer += "?";
|
|
} else {
|
|
pairBuffer += "? ";
|
|
}
|
|
}
|
|
pairBuffer += state2.dump;
|
|
if (explicitPair) {
|
|
pairBuffer += generateNextLine(state2, level);
|
|
}
|
|
if (!writeNode(state2, level + 1, objectValue, true, explicitPair)) {
|
|
continue;
|
|
}
|
|
if (state2.dump && CHAR_LINE_FEED === state2.dump.charCodeAt(0)) {
|
|
pairBuffer += ":";
|
|
} else {
|
|
pairBuffer += ": ";
|
|
}
|
|
pairBuffer += state2.dump;
|
|
_result += pairBuffer;
|
|
}
|
|
state2.tag = _tag;
|
|
state2.dump = _result || "{}";
|
|
}
|
|
function detectType(state2, object, explicit) {
|
|
var _result, typeList, index2, length, type, style;
|
|
typeList = explicit ? state2.explicitTypes : state2.implicitTypes;
|
|
for (index2 = 0, length = typeList.length; index2 < length; index2 += 1) {
|
|
type = typeList[index2];
|
|
if ((type.instanceOf || type.predicate) && (!type.instanceOf || typeof object === "object" && object instanceof type.instanceOf) && (!type.predicate || type.predicate(object))) {
|
|
state2.tag = explicit ? type.tag : "?";
|
|
if (type.represent) {
|
|
style = state2.styleMap[type.tag] || type.defaultStyle;
|
|
if (_toString.call(type.represent) === "[object Function]") {
|
|
_result = type.represent(object, style);
|
|
} else if (_hasOwnProperty.call(type.represent, style)) {
|
|
_result = type.represent[style](object, style);
|
|
} else {
|
|
throw new YAMLException("!<" + type.tag + '> tag resolver accepts not "' + style + '" style');
|
|
}
|
|
state2.dump = _result;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function writeNode(state2, level, object, block2, compact, iskey) {
|
|
state2.tag = null;
|
|
state2.dump = object;
|
|
if (!detectType(state2, object, false)) {
|
|
detectType(state2, object, true);
|
|
}
|
|
var type = _toString.call(state2.dump);
|
|
if (block2) {
|
|
block2 = state2.flowLevel < 0 || state2.flowLevel > level;
|
|
}
|
|
var objectOrArray = type === "[object Object]" || type === "[object Array]", duplicateIndex, duplicate;
|
|
if (objectOrArray) {
|
|
duplicateIndex = state2.duplicates.indexOf(object);
|
|
duplicate = duplicateIndex !== -1;
|
|
}
|
|
if (state2.tag !== null && state2.tag !== "?" || duplicate || state2.indent !== 2 && level > 0) {
|
|
compact = false;
|
|
}
|
|
if (duplicate && state2.usedDuplicates[duplicateIndex]) {
|
|
state2.dump = "*ref_" + duplicateIndex;
|
|
} else {
|
|
if (objectOrArray && duplicate && !state2.usedDuplicates[duplicateIndex]) {
|
|
state2.usedDuplicates[duplicateIndex] = true;
|
|
}
|
|
if (type === "[object Object]") {
|
|
if (block2 && Object.keys(state2.dump).length !== 0) {
|
|
writeBlockMapping(state2, level, state2.dump, compact);
|
|
if (duplicate) {
|
|
state2.dump = "&ref_" + duplicateIndex + state2.dump;
|
|
}
|
|
} else {
|
|
writeFlowMapping(state2, level, state2.dump);
|
|
if (duplicate) {
|
|
state2.dump = "&ref_" + duplicateIndex + " " + state2.dump;
|
|
}
|
|
}
|
|
} else if (type === "[object Array]") {
|
|
var arrayLevel = state2.noArrayIndent && level > 0 ? level - 1 : level;
|
|
if (block2 && state2.dump.length !== 0) {
|
|
writeBlockSequence(state2, arrayLevel, state2.dump, compact);
|
|
if (duplicate) {
|
|
state2.dump = "&ref_" + duplicateIndex + state2.dump;
|
|
}
|
|
} else {
|
|
writeFlowSequence(state2, arrayLevel, state2.dump);
|
|
if (duplicate) {
|
|
state2.dump = "&ref_" + duplicateIndex + " " + state2.dump;
|
|
}
|
|
}
|
|
} else if (type === "[object String]") {
|
|
if (state2.tag !== "?") {
|
|
writeScalar(state2, state2.dump, level, iskey);
|
|
}
|
|
} else {
|
|
if (state2.skipInvalid) return false;
|
|
throw new YAMLException("unacceptable kind of an object to dump " + type);
|
|
}
|
|
if (state2.tag !== null && state2.tag !== "?") {
|
|
state2.dump = "!<" + state2.tag + "> " + state2.dump;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
function getDuplicateReferences(object, state2) {
|
|
var objects = [], duplicatesIndexes = [], index2, length;
|
|
inspectNode(object, objects, duplicatesIndexes);
|
|
for (index2 = 0, length = duplicatesIndexes.length; index2 < length; index2 += 1) {
|
|
state2.duplicates.push(objects[duplicatesIndexes[index2]]);
|
|
}
|
|
state2.usedDuplicates = new Array(length);
|
|
}
|
|
function inspectNode(object, objects, duplicatesIndexes) {
|
|
var objectKeyList, index2, length;
|
|
if (object !== null && typeof object === "object") {
|
|
index2 = objects.indexOf(object);
|
|
if (index2 !== -1) {
|
|
if (duplicatesIndexes.indexOf(index2) === -1) {
|
|
duplicatesIndexes.push(index2);
|
|
}
|
|
} else {
|
|
objects.push(object);
|
|
if (Array.isArray(object)) {
|
|
for (index2 = 0, length = object.length; index2 < length; index2 += 1) {
|
|
inspectNode(object[index2], objects, duplicatesIndexes);
|
|
}
|
|
} else {
|
|
objectKeyList = Object.keys(object);
|
|
for (index2 = 0, length = objectKeyList.length; index2 < length; index2 += 1) {
|
|
inspectNode(object[objectKeyList[index2]], objects, duplicatesIndexes);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function dump(input, options) {
|
|
options = options || {};
|
|
var state2 = new State(options);
|
|
if (!state2.noRefs) getDuplicateReferences(input, state2);
|
|
if (writeNode(state2, 0, input, true, true)) return state2.dump + "\n";
|
|
return "";
|
|
}
|
|
function safeDump(input, options) {
|
|
return dump(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
|
}
|
|
module2.exports.dump = dump;
|
|
module2.exports.safeDump = safeDump;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/lib/js-yaml.js
|
|
var require_js_yaml = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/lib/js-yaml.js"(exports, module2) {
|
|
"use strict";
|
|
var loader = require_loader();
|
|
var dumper = require_dumper();
|
|
function deprecated(name) {
|
|
return function() {
|
|
throw new Error("Function " + name + " is deprecated and cannot be used.");
|
|
};
|
|
}
|
|
module2.exports.Type = require_type();
|
|
module2.exports.Schema = require_schema();
|
|
module2.exports.FAILSAFE_SCHEMA = require_failsafe();
|
|
module2.exports.JSON_SCHEMA = require_json();
|
|
module2.exports.CORE_SCHEMA = require_core();
|
|
module2.exports.DEFAULT_SAFE_SCHEMA = require_default_safe();
|
|
module2.exports.DEFAULT_FULL_SCHEMA = require_default_full();
|
|
module2.exports.load = loader.load;
|
|
module2.exports.loadAll = loader.loadAll;
|
|
module2.exports.safeLoad = loader.safeLoad;
|
|
module2.exports.safeLoadAll = loader.safeLoadAll;
|
|
module2.exports.dump = dumper.dump;
|
|
module2.exports.safeDump = dumper.safeDump;
|
|
module2.exports.YAMLException = require_exception();
|
|
module2.exports.MINIMAL_SCHEMA = require_failsafe();
|
|
module2.exports.SAFE_SCHEMA = require_default_safe();
|
|
module2.exports.DEFAULT_SCHEMA = require_default_full();
|
|
module2.exports.scan = deprecated("scan");
|
|
module2.exports.parse = deprecated("parse");
|
|
module2.exports.compose = deprecated("compose");
|
|
module2.exports.addConstructor = deprecated("addConstructor");
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/node_modules/js-yaml/index.js
|
|
var require_js_yaml2 = __commonJS({
|
|
"node_modules/front-matter/node_modules/js-yaml/index.js"(exports, module2) {
|
|
"use strict";
|
|
var yaml = require_js_yaml();
|
|
module2.exports = yaml;
|
|
}
|
|
});
|
|
|
|
// node_modules/front-matter/index.js
|
|
var require_front_matter = __commonJS({
|
|
"node_modules/front-matter/index.js"(exports, module2) {
|
|
var parser = require_js_yaml2();
|
|
var optionalByteOrderMark = "\\ufeff?";
|
|
var platform2 = typeof process !== "undefined" ? process.platform : "";
|
|
var pattern = "^(" + optionalByteOrderMark + "(= yaml =|---)$([\\s\\S]*?)^(?:\\2|\\.\\.\\.)\\s*$" + (platform2 === "win32" ? "\\r?" : "") + "(?:\\n)?)";
|
|
var regex = new RegExp(pattern, "m");
|
|
module2.exports = extractor;
|
|
module2.exports.test = test;
|
|
function extractor(string, options) {
|
|
string = string || "";
|
|
var defaultOptions = { allowUnsafe: false };
|
|
options = options instanceof Object ? { ...defaultOptions, ...options } : defaultOptions;
|
|
options.allowUnsafe = Boolean(options.allowUnsafe);
|
|
var lines = string.split(/(\r?\n)/);
|
|
if (lines[0] && /= yaml =|---/.test(lines[0])) {
|
|
return parse(string, options.allowUnsafe);
|
|
} else {
|
|
return {
|
|
attributes: {},
|
|
body: string,
|
|
bodyBegin: 1
|
|
};
|
|
}
|
|
}
|
|
function computeLocation(match, body) {
|
|
var line = 1;
|
|
var pos = body.indexOf("\n");
|
|
var offset3 = match.index + match[0].length;
|
|
while (pos !== -1) {
|
|
if (pos >= offset3) {
|
|
return line;
|
|
}
|
|
line++;
|
|
pos = body.indexOf("\n", pos + 1);
|
|
}
|
|
return line;
|
|
}
|
|
function parse(string, allowUnsafe) {
|
|
var match = regex.exec(string);
|
|
if (!match) {
|
|
return {
|
|
attributes: {},
|
|
body: string,
|
|
bodyBegin: 1
|
|
};
|
|
}
|
|
var loader = allowUnsafe ? parser.load : parser.safeLoad;
|
|
var yaml = match[match.length - 1].replace(/^\s+|\s+$/g, "");
|
|
var attributes = loader(yaml) || {};
|
|
var body = string.replace(match[0], "");
|
|
var line = computeLocation(match, string);
|
|
return {
|
|
attributes,
|
|
body,
|
|
bodyBegin: line,
|
|
frontmatter: yaml
|
|
};
|
|
}
|
|
function test(string) {
|
|
string = string || "";
|
|
return regex.test(string);
|
|
}
|
|
}
|
|
});
|
|
|
|
// node_modules/crypto-js/core.js
|
|
var require_core2 = __commonJS({
|
|
"node_modules/crypto-js/core.js"(exports, module2) {
|
|
(function(root12, factory) {
|
|
if (typeof exports === "object") {
|
|
module2.exports = exports = factory();
|
|
} else if (typeof define === "function" && define.amd) {
|
|
define([], factory);
|
|
} else {
|
|
root12.CryptoJS = factory();
|
|
}
|
|
})(exports, function() {
|
|
var CryptoJS = CryptoJS || (function(Math2, undefined2) {
|
|
var crypto2;
|
|
if (typeof window !== "undefined" && window.crypto) {
|
|
crypto2 = window.crypto;
|
|
}
|
|
if (typeof self !== "undefined" && self.crypto) {
|
|
crypto2 = self.crypto;
|
|
}
|
|
if (typeof globalThis !== "undefined" && globalThis.crypto) {
|
|
crypto2 = globalThis.crypto;
|
|
}
|
|
if (!crypto2 && typeof window !== "undefined" && window.msCrypto) {
|
|
crypto2 = window.msCrypto;
|
|
}
|
|
if (!crypto2 && typeof global !== "undefined" && global.crypto) {
|
|
crypto2 = global.crypto;
|
|
}
|
|
if (!crypto2 && typeof require === "function") {
|
|
try {
|
|
crypto2 = require("crypto");
|
|
} catch (err) {
|
|
}
|
|
}
|
|
var cryptoSecureRandomInt = function() {
|
|
if (crypto2) {
|
|
if (typeof crypto2.getRandomValues === "function") {
|
|
try {
|
|
return crypto2.getRandomValues(new Uint32Array(1))[0];
|
|
} catch (err) {
|
|
}
|
|
}
|
|
if (typeof crypto2.randomBytes === "function") {
|
|
try {
|
|
return crypto2.randomBytes(4).readInt32LE();
|
|
} catch (err) {
|
|
}
|
|
}
|
|
}
|
|
throw new Error("Native crypto module could not be used to get secure random number.");
|
|
};
|
|
var create = Object.create || /* @__PURE__ */ (function() {
|
|
function F() {
|
|
}
|
|
return function(obj) {
|
|
var subtype;
|
|
F.prototype = obj;
|
|
subtype = new F();
|
|
F.prototype = null;
|
|
return subtype;
|
|
};
|
|
})();
|
|
var C = {};
|
|
var C_lib = C.lib = {};
|
|
var Base2 = C_lib.Base = /* @__PURE__ */ (function() {
|
|
return {
|
|
/**
|
|
* Creates a new object that inherits from this object.
|
|
*
|
|
* @param {Object} overrides Properties to copy into the new object.
|
|
*
|
|
* @return {Object} The new object.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var MyType = CryptoJS.lib.Base.extend({
|
|
* field: 'value',
|
|
*
|
|
* method: function () {
|
|
* }
|
|
* });
|
|
*/
|
|
extend: function(overrides) {
|
|
var subtype = create(this);
|
|
if (overrides) {
|
|
subtype.mixIn(overrides);
|
|
}
|
|
if (!subtype.hasOwnProperty("init") || this.init === subtype.init) {
|
|
subtype.init = function() {
|
|
subtype.$super.init.apply(this, arguments);
|
|
};
|
|
}
|
|
subtype.init.prototype = subtype;
|
|
subtype.$super = this;
|
|
return subtype;
|
|
},
|
|
/**
|
|
* Extends this object and runs the init method.
|
|
* Arguments to create() will be passed to init().
|
|
*
|
|
* @return {Object} The new object.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var instance = MyType.create();
|
|
*/
|
|
create: function() {
|
|
var instance = this.extend();
|
|
instance.init.apply(instance, arguments);
|
|
return instance;
|
|
},
|
|
/**
|
|
* Initializes a newly created object.
|
|
* Override this method to add some logic when your objects are created.
|
|
*
|
|
* @example
|
|
*
|
|
* var MyType = CryptoJS.lib.Base.extend({
|
|
* init: function () {
|
|
* // ...
|
|
* }
|
|
* });
|
|
*/
|
|
init: function() {
|
|
},
|
|
/**
|
|
* Copies properties into this object.
|
|
*
|
|
* @param {Object} properties The properties to mix in.
|
|
*
|
|
* @example
|
|
*
|
|
* MyType.mixIn({
|
|
* field: 'value'
|
|
* });
|
|
*/
|
|
mixIn: function(properties) {
|
|
for (var propertyName in properties) {
|
|
if (properties.hasOwnProperty(propertyName)) {
|
|
this[propertyName] = properties[propertyName];
|
|
}
|
|
}
|
|
if (properties.hasOwnProperty("toString")) {
|
|
this.toString = properties.toString;
|
|
}
|
|
},
|
|
/**
|
|
* Creates a copy of this object.
|
|
*
|
|
* @return {Object} The clone.
|
|
*
|
|
* @example
|
|
*
|
|
* var clone = instance.clone();
|
|
*/
|
|
clone: function() {
|
|
return this.init.prototype.extend(this);
|
|
}
|
|
};
|
|
})();
|
|
var WordArray = C_lib.WordArray = Base2.extend({
|
|
/**
|
|
* Initializes a newly created word array.
|
|
*
|
|
* @param {Array} words (Optional) An array of 32-bit words.
|
|
* @param {number} sigBytes (Optional) The number of significant bytes in the words.
|
|
*
|
|
* @example
|
|
*
|
|
* var wordArray = CryptoJS.lib.WordArray.create();
|
|
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]);
|
|
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6);
|
|
*/
|
|
init: function(words, sigBytes) {
|
|
words = this.words = words || [];
|
|
if (sigBytes != undefined2) {
|
|
this.sigBytes = sigBytes;
|
|
} else {
|
|
this.sigBytes = words.length * 4;
|
|
}
|
|
},
|
|
/**
|
|
* Converts this word array to a string.
|
|
*
|
|
* @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex
|
|
*
|
|
* @return {string} The stringified word array.
|
|
*
|
|
* @example
|
|
*
|
|
* var string = wordArray + '';
|
|
* var string = wordArray.toString();
|
|
* var string = wordArray.toString(CryptoJS.enc.Utf8);
|
|
*/
|
|
toString: function(encoder) {
|
|
return (encoder || Hex).stringify(this);
|
|
},
|
|
/**
|
|
* Concatenates a word array to this word array.
|
|
*
|
|
* @param {WordArray} wordArray The word array to append.
|
|
*
|
|
* @return {WordArray} This word array.
|
|
*
|
|
* @example
|
|
*
|
|
* wordArray1.concat(wordArray2);
|
|
*/
|
|
concat: function(wordArray) {
|
|
var thisWords = this.words;
|
|
var thatWords = wordArray.words;
|
|
var thisSigBytes = this.sigBytes;
|
|
var thatSigBytes = wordArray.sigBytes;
|
|
this.clamp();
|
|
if (thisSigBytes % 4) {
|
|
for (var i = 0; i < thatSigBytes; i++) {
|
|
var thatByte = thatWords[i >>> 2] >>> 24 - i % 4 * 8 & 255;
|
|
thisWords[thisSigBytes + i >>> 2] |= thatByte << 24 - (thisSigBytes + i) % 4 * 8;
|
|
}
|
|
} else {
|
|
for (var j = 0; j < thatSigBytes; j += 4) {
|
|
thisWords[thisSigBytes + j >>> 2] = thatWords[j >>> 2];
|
|
}
|
|
}
|
|
this.sigBytes += thatSigBytes;
|
|
return this;
|
|
},
|
|
/**
|
|
* Removes insignificant bits.
|
|
*
|
|
* @example
|
|
*
|
|
* wordArray.clamp();
|
|
*/
|
|
clamp: function() {
|
|
var words = this.words;
|
|
var sigBytes = this.sigBytes;
|
|
words[sigBytes >>> 2] &= 4294967295 << 32 - sigBytes % 4 * 8;
|
|
words.length = Math2.ceil(sigBytes / 4);
|
|
},
|
|
/**
|
|
* Creates a copy of this word array.
|
|
*
|
|
* @return {WordArray} The clone.
|
|
*
|
|
* @example
|
|
*
|
|
* var clone = wordArray.clone();
|
|
*/
|
|
clone: function() {
|
|
var clone = Base2.clone.call(this);
|
|
clone.words = this.words.slice(0);
|
|
return clone;
|
|
},
|
|
/**
|
|
* Creates a word array filled with random bytes.
|
|
*
|
|
* @param {number} nBytes The number of random bytes to generate.
|
|
*
|
|
* @return {WordArray} The random word array.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var wordArray = CryptoJS.lib.WordArray.random(16);
|
|
*/
|
|
random: function(nBytes) {
|
|
var words = [];
|
|
for (var i = 0; i < nBytes; i += 4) {
|
|
words.push(cryptoSecureRandomInt());
|
|
}
|
|
return new WordArray.init(words, nBytes);
|
|
}
|
|
});
|
|
var C_enc = C.enc = {};
|
|
var Hex = C_enc.Hex = {
|
|
/**
|
|
* Converts a word array to a hex string.
|
|
*
|
|
* @param {WordArray} wordArray The word array.
|
|
*
|
|
* @return {string} The hex string.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var hexString = CryptoJS.enc.Hex.stringify(wordArray);
|
|
*/
|
|
stringify: function(wordArray) {
|
|
var words = wordArray.words;
|
|
var sigBytes = wordArray.sigBytes;
|
|
var hexChars = [];
|
|
for (var i = 0; i < sigBytes; i++) {
|
|
var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 255;
|
|
hexChars.push((bite >>> 4).toString(16));
|
|
hexChars.push((bite & 15).toString(16));
|
|
}
|
|
return hexChars.join("");
|
|
},
|
|
/**
|
|
* Converts a hex string to a word array.
|
|
*
|
|
* @param {string} hexStr The hex string.
|
|
*
|
|
* @return {WordArray} The word array.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var wordArray = CryptoJS.enc.Hex.parse(hexString);
|
|
*/
|
|
parse: function(hexStr) {
|
|
var hexStrLength = hexStr.length;
|
|
var words = [];
|
|
for (var i = 0; i < hexStrLength; i += 2) {
|
|
words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << 24 - i % 8 * 4;
|
|
}
|
|
return new WordArray.init(words, hexStrLength / 2);
|
|
}
|
|
};
|
|
var Latin1 = C_enc.Latin1 = {
|
|
/**
|
|
* Converts a word array to a Latin1 string.
|
|
*
|
|
* @param {WordArray} wordArray The word array.
|
|
*
|
|
* @return {string} The Latin1 string.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);
|
|
*/
|
|
stringify: function(wordArray) {
|
|
var words = wordArray.words;
|
|
var sigBytes = wordArray.sigBytes;
|
|
var latin1Chars = [];
|
|
for (var i = 0; i < sigBytes; i++) {
|
|
var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 255;
|
|
latin1Chars.push(String.fromCharCode(bite));
|
|
}
|
|
return latin1Chars.join("");
|
|
},
|
|
/**
|
|
* Converts a Latin1 string to a word array.
|
|
*
|
|
* @param {string} latin1Str The Latin1 string.
|
|
*
|
|
* @return {WordArray} The word array.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var wordArray = CryptoJS.enc.Latin1.parse(latin1String);
|
|
*/
|
|
parse: function(latin1Str) {
|
|
var latin1StrLength = latin1Str.length;
|
|
var words = [];
|
|
for (var i = 0; i < latin1StrLength; i++) {
|
|
words[i >>> 2] |= (latin1Str.charCodeAt(i) & 255) << 24 - i % 4 * 8;
|
|
}
|
|
return new WordArray.init(words, latin1StrLength);
|
|
}
|
|
};
|
|
var Utf8 = C_enc.Utf8 = {
|
|
/**
|
|
* Converts a word array to a UTF-8 string.
|
|
*
|
|
* @param {WordArray} wordArray The word array.
|
|
*
|
|
* @return {string} The UTF-8 string.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var utf8String = CryptoJS.enc.Utf8.stringify(wordArray);
|
|
*/
|
|
stringify: function(wordArray) {
|
|
try {
|
|
return decodeURIComponent(escape(Latin1.stringify(wordArray)));
|
|
} catch (e) {
|
|
throw new Error("Malformed UTF-8 data");
|
|
}
|
|
},
|
|
/**
|
|
* Converts a UTF-8 string to a word array.
|
|
*
|
|
* @param {string} utf8Str The UTF-8 string.
|
|
*
|
|
* @return {WordArray} The word array.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var wordArray = CryptoJS.enc.Utf8.parse(utf8String);
|
|
*/
|
|
parse: function(utf8Str) {
|
|
return Latin1.parse(unescape(encodeURIComponent(utf8Str)));
|
|
}
|
|
};
|
|
var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base2.extend({
|
|
/**
|
|
* Resets this block algorithm's data buffer to its initial state.
|
|
*
|
|
* @example
|
|
*
|
|
* bufferedBlockAlgorithm.reset();
|
|
*/
|
|
reset: function() {
|
|
this._data = new WordArray.init();
|
|
this._nDataBytes = 0;
|
|
},
|
|
/**
|
|
* Adds new data to this block algorithm's buffer.
|
|
*
|
|
* @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.
|
|
*
|
|
* @example
|
|
*
|
|
* bufferedBlockAlgorithm._append('data');
|
|
* bufferedBlockAlgorithm._append(wordArray);
|
|
*/
|
|
_append: function(data) {
|
|
if (typeof data == "string") {
|
|
data = Utf8.parse(data);
|
|
}
|
|
this._data.concat(data);
|
|
this._nDataBytes += data.sigBytes;
|
|
},
|
|
/**
|
|
* Processes available data blocks.
|
|
*
|
|
* This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
|
|
*
|
|
* @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
|
|
*
|
|
* @return {WordArray} The processed data.
|
|
*
|
|
* @example
|
|
*
|
|
* var processedData = bufferedBlockAlgorithm._process();
|
|
* var processedData = bufferedBlockAlgorithm._process(!!'flush');
|
|
*/
|
|
_process: function(doFlush) {
|
|
var processedWords;
|
|
var data = this._data;
|
|
var dataWords = data.words;
|
|
var dataSigBytes = data.sigBytes;
|
|
var blockSize = this.blockSize;
|
|
var blockSizeBytes = blockSize * 4;
|
|
var nBlocksReady = dataSigBytes / blockSizeBytes;
|
|
if (doFlush) {
|
|
nBlocksReady = Math2.ceil(nBlocksReady);
|
|
} else {
|
|
nBlocksReady = Math2.max((nBlocksReady | 0) - this._minBufferSize, 0);
|
|
}
|
|
var nWordsReady = nBlocksReady * blockSize;
|
|
var nBytesReady = Math2.min(nWordsReady * 4, dataSigBytes);
|
|
if (nWordsReady) {
|
|
for (var offset3 = 0; offset3 < nWordsReady; offset3 += blockSize) {
|
|
this._doProcessBlock(dataWords, offset3);
|
|
}
|
|
processedWords = dataWords.splice(0, nWordsReady);
|
|
data.sigBytes -= nBytesReady;
|
|
}
|
|
return new WordArray.init(processedWords, nBytesReady);
|
|
},
|
|
/**
|
|
* Creates a copy of this object.
|
|
*
|
|
* @return {Object} The clone.
|
|
*
|
|
* @example
|
|
*
|
|
* var clone = bufferedBlockAlgorithm.clone();
|
|
*/
|
|
clone: function() {
|
|
var clone = Base2.clone.call(this);
|
|
clone._data = this._data.clone();
|
|
return clone;
|
|
},
|
|
_minBufferSize: 0
|
|
});
|
|
var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({
|
|
/**
|
|
* Configuration options.
|
|
*/
|
|
cfg: Base2.extend(),
|
|
/**
|
|
* Initializes a newly created hasher.
|
|
*
|
|
* @param {Object} cfg (Optional) The configuration options to use for this hash computation.
|
|
*
|
|
* @example
|
|
*
|
|
* var hasher = CryptoJS.algo.SHA256.create();
|
|
*/
|
|
init: function(cfg) {
|
|
this.cfg = this.cfg.extend(cfg);
|
|
this.reset();
|
|
},
|
|
/**
|
|
* Resets this hasher to its initial state.
|
|
*
|
|
* @example
|
|
*
|
|
* hasher.reset();
|
|
*/
|
|
reset: function() {
|
|
BufferedBlockAlgorithm.reset.call(this);
|
|
this._doReset();
|
|
},
|
|
/**
|
|
* Updates this hasher with a message.
|
|
*
|
|
* @param {WordArray|string} messageUpdate The message to append.
|
|
*
|
|
* @return {Hasher} This hasher.
|
|
*
|
|
* @example
|
|
*
|
|
* hasher.update('message');
|
|
* hasher.update(wordArray);
|
|
*/
|
|
update: function(messageUpdate) {
|
|
this._append(messageUpdate);
|
|
this._process();
|
|
return this;
|
|
},
|
|
/**
|
|
* Finalizes the hash computation.
|
|
* Note that the finalize operation is effectively a destructive, read-once operation.
|
|
*
|
|
* @param {WordArray|string} messageUpdate (Optional) A final message update.
|
|
*
|
|
* @return {WordArray} The hash.
|
|
*
|
|
* @example
|
|
*
|
|
* var hash = hasher.finalize();
|
|
* var hash = hasher.finalize('message');
|
|
* var hash = hasher.finalize(wordArray);
|
|
*/
|
|
finalize: function(messageUpdate) {
|
|
if (messageUpdate) {
|
|
this._append(messageUpdate);
|
|
}
|
|
var hash2 = this._doFinalize();
|
|
return hash2;
|
|
},
|
|
blockSize: 512 / 32,
|
|
/**
|
|
* Creates a shortcut function to a hasher's object interface.
|
|
*
|
|
* @param {Hasher} hasher The hasher to create a helper for.
|
|
*
|
|
* @return {Function} The shortcut function.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);
|
|
*/
|
|
_createHelper: function(hasher) {
|
|
return function(message, cfg) {
|
|
return new hasher.init(cfg).finalize(message);
|
|
};
|
|
},
|
|
/**
|
|
* Creates a shortcut function to the HMAC's object interface.
|
|
*
|
|
* @param {Hasher} hasher The hasher to use in this HMAC helper.
|
|
*
|
|
* @return {Function} The shortcut function.
|
|
*
|
|
* @static
|
|
*
|
|
* @example
|
|
*
|
|
* var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);
|
|
*/
|
|
_createHmacHelper: function(hasher) {
|
|
return function(message, key2) {
|
|
return new C_algo.HMAC.init(hasher, key2).finalize(message);
|
|
};
|
|
}
|
|
});
|
|
var C_algo = C.algo = {};
|
|
return C;
|
|
})(Math);
|
|
return CryptoJS;
|
|
});
|
|
}
|
|
});
|
|
|
|
// node_modules/crypto-js/sha256.js
|
|
var require_sha256 = __commonJS({
|
|
"node_modules/crypto-js/sha256.js"(exports, module2) {
|
|
(function(root12, factory) {
|
|
if (typeof exports === "object") {
|
|
module2.exports = exports = factory(require_core2());
|
|
} else if (typeof define === "function" && define.amd) {
|
|
define(["./core"], factory);
|
|
} else {
|
|
factory(root12.CryptoJS);
|
|
}
|
|
})(exports, function(CryptoJS) {
|
|
(function(Math2) {
|
|
var C = CryptoJS;
|
|
var C_lib = C.lib;
|
|
var WordArray = C_lib.WordArray;
|
|
var Hasher = C_lib.Hasher;
|
|
var C_algo = C.algo;
|
|
var H = [];
|
|
var K = [];
|
|
(function() {
|
|
function isPrime(n2) {
|
|
var sqrtN = Math2.sqrt(n2);
|
|
for (var factor = 2; factor <= sqrtN; factor++) {
|
|
if (!(n2 % factor)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
function getFractionalBits(n2) {
|
|
return (n2 - (n2 | 0)) * 4294967296 | 0;
|
|
}
|
|
var n = 2;
|
|
var nPrime = 0;
|
|
while (nPrime < 64) {
|
|
if (isPrime(n)) {
|
|
if (nPrime < 8) {
|
|
H[nPrime] = getFractionalBits(Math2.pow(n, 1 / 2));
|
|
}
|
|
K[nPrime] = getFractionalBits(Math2.pow(n, 1 / 3));
|
|
nPrime++;
|
|
}
|
|
n++;
|
|
}
|
|
})();
|
|
var W = [];
|
|
var SHA256 = C_algo.SHA256 = Hasher.extend({
|
|
_doReset: function() {
|
|
this._hash = new WordArray.init(H.slice(0));
|
|
},
|
|
_doProcessBlock: function(M, offset3) {
|
|
var H2 = this._hash.words;
|
|
var a = H2[0];
|
|
var b = H2[1];
|
|
var c = H2[2];
|
|
var d = H2[3];
|
|
var e = H2[4];
|
|
var f = H2[5];
|
|
var g = H2[6];
|
|
var h = H2[7];
|
|
for (var i = 0; i < 64; i++) {
|
|
if (i < 16) {
|
|
W[i] = M[offset3 + i] | 0;
|
|
} else {
|
|
var gamma0x = W[i - 15];
|
|
var gamma0 = (gamma0x << 25 | gamma0x >>> 7) ^ (gamma0x << 14 | gamma0x >>> 18) ^ gamma0x >>> 3;
|
|
var gamma1x = W[i - 2];
|
|
var gamma1 = (gamma1x << 15 | gamma1x >>> 17) ^ (gamma1x << 13 | gamma1x >>> 19) ^ gamma1x >>> 10;
|
|
W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16];
|
|
}
|
|
var ch = e & f ^ ~e & g;
|
|
var maj = a & b ^ a & c ^ b & c;
|
|
var sigma0 = (a << 30 | a >>> 2) ^ (a << 19 | a >>> 13) ^ (a << 10 | a >>> 22);
|
|
var sigma1 = (e << 26 | e >>> 6) ^ (e << 21 | e >>> 11) ^ (e << 7 | e >>> 25);
|
|
var t1 = h + sigma1 + ch + K[i] + W[i];
|
|
var t2 = sigma0 + maj;
|
|
h = g;
|
|
g = f;
|
|
f = e;
|
|
e = d + t1 | 0;
|
|
d = c;
|
|
c = b;
|
|
b = a;
|
|
a = t1 + t2 | 0;
|
|
}
|
|
H2[0] = H2[0] + a | 0;
|
|
H2[1] = H2[1] + b | 0;
|
|
H2[2] = H2[2] + c | 0;
|
|
H2[3] = H2[3] + d | 0;
|
|
H2[4] = H2[4] + e | 0;
|
|
H2[5] = H2[5] + f | 0;
|
|
H2[6] = H2[6] + g | 0;
|
|
H2[7] = H2[7] + h | 0;
|
|
},
|
|
_doFinalize: function() {
|
|
var data = this._data;
|
|
var dataWords = data.words;
|
|
var nBitsTotal = this._nDataBytes * 8;
|
|
var nBitsLeft = data.sigBytes * 8;
|
|
dataWords[nBitsLeft >>> 5] |= 128 << 24 - nBitsLeft % 32;
|
|
dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = Math2.floor(nBitsTotal / 4294967296);
|
|
dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = nBitsTotal;
|
|
data.sigBytes = dataWords.length * 4;
|
|
this._process();
|
|
return this._hash;
|
|
},
|
|
clone: function() {
|
|
var clone = Hasher.clone.call(this);
|
|
clone._hash = this._hash.clone();
|
|
return clone;
|
|
}
|
|
});
|
|
C.SHA256 = Hasher._createHelper(SHA256);
|
|
C.HmacSHA256 = Hasher._createHmacHelper(SHA256);
|
|
})(Math);
|
|
return CryptoJS.SHA256;
|
|
});
|
|
}
|
|
});
|
|
|
|
// src/entry.ts
|
|
var entry_exports = {};
|
|
__export(entry_exports, {
|
|
default: () => Base
|
|
});
|
|
module.exports = __toCommonJS(entry_exports);
|
|
var import_obsidian10 = require("obsidian");
|
|
|
|
// src/ui/text_view.ts
|
|
var import_obsidian9 = require("obsidian");
|
|
var import_front_matter = __toESM(require_front_matter());
|
|
|
|
// node_modules/svelte/src/internal/client/constants.js
|
|
var DERIVED = 1 << 1;
|
|
var EFFECT = 1 << 2;
|
|
var RENDER_EFFECT = 1 << 3;
|
|
var MANAGED_EFFECT = 1 << 24;
|
|
var BLOCK_EFFECT = 1 << 4;
|
|
var BRANCH_EFFECT = 1 << 5;
|
|
var ROOT_EFFECT = 1 << 6;
|
|
var BOUNDARY_EFFECT = 1 << 7;
|
|
var CONNECTED = 1 << 9;
|
|
var CLEAN = 1 << 10;
|
|
var DIRTY = 1 << 11;
|
|
var MAYBE_DIRTY = 1 << 12;
|
|
var INERT = 1 << 13;
|
|
var DESTROYED = 1 << 14;
|
|
var REACTION_RAN = 1 << 15;
|
|
var DESTROYING = 1 << 25;
|
|
var EFFECT_TRANSPARENT = 1 << 16;
|
|
var EAGER_EFFECT = 1 << 17;
|
|
var HEAD_EFFECT = 1 << 18;
|
|
var EFFECT_PRESERVED = 1 << 19;
|
|
var USER_EFFECT = 1 << 20;
|
|
var EFFECT_OFFSCREEN = 1 << 25;
|
|
var WAS_MARKED = 1 << 16;
|
|
var REACTION_IS_UPDATING = 1 << 21;
|
|
var ASYNC = 1 << 22;
|
|
var ERROR_VALUE = 1 << 23;
|
|
var STATE_SYMBOL = /* @__PURE__ */ Symbol("$state");
|
|
var LEGACY_PROPS = /* @__PURE__ */ Symbol("legacy props");
|
|
var LOADING_ATTR_SYMBOL = /* @__PURE__ */ Symbol("");
|
|
var PROXY_PATH_SYMBOL = /* @__PURE__ */ Symbol("proxy path");
|
|
var STALE_REACTION = new class StaleReactionError extends Error {
|
|
constructor() {
|
|
super(...arguments);
|
|
__publicField(this, "name", "StaleReactionError");
|
|
__publicField(this, "message", "The reaction that called `getAbortSignal()` was re-run or destroyed");
|
|
}
|
|
}();
|
|
var _a;
|
|
var IS_XHTML = (
|
|
// We gotta write it like this because after downleveling the pure comment may end up in the wrong location
|
|
!!((_a = globalThis.document) == null ? void 0 : _a.contentType) && /* @__PURE__ */ globalThis.document.contentType.includes("xml")
|
|
);
|
|
var TEXT_NODE = 3;
|
|
var COMMENT_NODE = 8;
|
|
|
|
// node_modules/esm-env/dev-fallback.js
|
|
var _a2, _b;
|
|
var node_env = (_b = (_a2 = globalThis.process) == null ? void 0 : _a2.env) == null ? void 0 : _b.NODE_ENV;
|
|
var dev_fallback_default = node_env && !node_env.toLowerCase().startsWith("prod");
|
|
|
|
// node_modules/svelte/src/internal/shared/utils.js
|
|
var is_array = Array.isArray;
|
|
var index_of = Array.prototype.indexOf;
|
|
var includes = Array.prototype.includes;
|
|
var array_from = Array.from;
|
|
var object_keys = Object.keys;
|
|
var define_property = Object.defineProperty;
|
|
var get_descriptor = Object.getOwnPropertyDescriptor;
|
|
var get_descriptors = Object.getOwnPropertyDescriptors;
|
|
var object_prototype = Object.prototype;
|
|
var array_prototype = Array.prototype;
|
|
var get_prototype_of = Object.getPrototypeOf;
|
|
var is_extensible = Object.isExtensible;
|
|
var noop = () => {
|
|
};
|
|
function run(fn) {
|
|
return fn();
|
|
}
|
|
function run_all(arr) {
|
|
for (var i = 0; i < arr.length; i++) {
|
|
arr[i]();
|
|
}
|
|
}
|
|
function deferred() {
|
|
var resolve;
|
|
var reject;
|
|
var promise = new Promise((res, rej) => {
|
|
resolve = res;
|
|
reject = rej;
|
|
});
|
|
return { promise, resolve, reject };
|
|
}
|
|
function fallback(value, fallback2, lazy = false) {
|
|
return value === void 0 ? lazy ? (
|
|
/** @type {() => V} */
|
|
fallback2()
|
|
) : (
|
|
/** @type {V} */
|
|
fallback2
|
|
) : value;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/equality.js
|
|
function equals(value) {
|
|
return value === this.v;
|
|
}
|
|
function safe_not_equal(a, b) {
|
|
return a != a ? b == b : a !== b || a !== null && typeof a === "object" || typeof a === "function";
|
|
}
|
|
function safe_equals(value) {
|
|
return !safe_not_equal(value, this.v);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/shared/errors.js
|
|
function invariant_violation(message) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`invariant_violation
|
|
An invariant violation occurred, meaning Svelte's internal assumptions were flawed. This is a bug in Svelte, not your app \u2014 please open an issue at https://github.com/sveltejs/svelte, citing the following message: "${message}"
|
|
https://svelte.dev/e/invariant_violation`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/invariant_violation`);
|
|
}
|
|
}
|
|
function lifecycle_outside_component(name) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`lifecycle_outside_component
|
|
\`${name}(...)\` can only be used during component initialisation
|
|
https://svelte.dev/e/lifecycle_outside_component`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/lifecycle_outside_component`);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/errors.js
|
|
function async_derived_orphan() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`async_derived_orphan
|
|
Cannot create a \`$derived(...)\` with an \`await\` expression outside of an effect tree
|
|
https://svelte.dev/e/async_derived_orphan`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/async_derived_orphan`);
|
|
}
|
|
}
|
|
function bind_invalid_checkbox_value() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`bind_invalid_checkbox_value
|
|
Using \`bind:value\` together with a checkbox input is not allowed. Use \`bind:checked\` instead
|
|
https://svelte.dev/e/bind_invalid_checkbox_value`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/bind_invalid_checkbox_value`);
|
|
}
|
|
}
|
|
function derived_references_self() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`derived_references_self
|
|
A derived value cannot reference itself recursively
|
|
https://svelte.dev/e/derived_references_self`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/derived_references_self`);
|
|
}
|
|
}
|
|
function each_key_duplicate(a, b, value) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`each_key_duplicate
|
|
${value ? `Keyed each block has duplicate key \`${value}\` at indexes ${a} and ${b}` : `Keyed each block has duplicate key at indexes ${a} and ${b}`}
|
|
https://svelte.dev/e/each_key_duplicate`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/each_key_duplicate`);
|
|
}
|
|
}
|
|
function each_key_volatile(index2, a, b) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`each_key_volatile
|
|
Keyed each block has key that is not idempotent \u2014 the key for item at index ${index2} was \`${a}\` but is now \`${b}\`. Keys must be the same each time for a given item
|
|
https://svelte.dev/e/each_key_volatile`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/each_key_volatile`);
|
|
}
|
|
}
|
|
function effect_in_teardown(rune) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`effect_in_teardown
|
|
\`${rune}\` cannot be used inside an effect cleanup function
|
|
https://svelte.dev/e/effect_in_teardown`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/effect_in_teardown`);
|
|
}
|
|
}
|
|
function effect_in_unowned_derived() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`effect_in_unowned_derived
|
|
Effect cannot be created inside a \`$derived\` value that was not itself created inside an effect
|
|
https://svelte.dev/e/effect_in_unowned_derived`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/effect_in_unowned_derived`);
|
|
}
|
|
}
|
|
function effect_orphan(rune) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`effect_orphan
|
|
\`${rune}\` can only be used inside an effect (e.g. during component initialisation)
|
|
https://svelte.dev/e/effect_orphan`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/effect_orphan`);
|
|
}
|
|
}
|
|
function effect_update_depth_exceeded() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`effect_update_depth_exceeded
|
|
Maximum update depth exceeded. This typically indicates that an effect reads and writes the same piece of state
|
|
https://svelte.dev/e/effect_update_depth_exceeded`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/effect_update_depth_exceeded`);
|
|
}
|
|
}
|
|
function hydration_failed() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`hydration_failed
|
|
Failed to hydrate the application
|
|
https://svelte.dev/e/hydration_failed`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/hydration_failed`);
|
|
}
|
|
}
|
|
function lifecycle_legacy_only(name) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`lifecycle_legacy_only
|
|
\`${name}(...)\` cannot be used in runes mode
|
|
https://svelte.dev/e/lifecycle_legacy_only`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/lifecycle_legacy_only`);
|
|
}
|
|
}
|
|
function props_invalid_value(key2) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`props_invalid_value
|
|
Cannot do \`bind:${key2}={undefined}\` when \`${key2}\` has a fallback value
|
|
https://svelte.dev/e/props_invalid_value`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/props_invalid_value`);
|
|
}
|
|
}
|
|
function rune_outside_svelte(rune) {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`rune_outside_svelte
|
|
The \`${rune}\` rune is only available inside \`.svelte\` and \`.svelte.js/ts\` files
|
|
https://svelte.dev/e/rune_outside_svelte`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/rune_outside_svelte`);
|
|
}
|
|
}
|
|
function state_descriptors_fixed() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`state_descriptors_fixed
|
|
Property descriptors defined on \`$state\` objects must contain \`value\` and always be \`enumerable\`, \`configurable\` and \`writable\`.
|
|
https://svelte.dev/e/state_descriptors_fixed`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/state_descriptors_fixed`);
|
|
}
|
|
}
|
|
function state_prototype_fixed() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`state_prototype_fixed
|
|
Cannot set prototype of \`$state\` object
|
|
https://svelte.dev/e/state_prototype_fixed`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/state_prototype_fixed`);
|
|
}
|
|
}
|
|
function state_unsafe_mutation() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`state_unsafe_mutation
|
|
Updating state inside \`$derived(...)\`, \`$inspect(...)\` or a template expression is forbidden. If the value should not be reactive, declare it without \`$state\`
|
|
https://svelte.dev/e/state_unsafe_mutation`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/state_unsafe_mutation`);
|
|
}
|
|
}
|
|
function svelte_boundary_reset_onerror() {
|
|
if (dev_fallback_default) {
|
|
const error = new Error(`svelte_boundary_reset_onerror
|
|
A \`<svelte:boundary>\` \`reset\` function cannot be called while an error is still being handled
|
|
https://svelte.dev/e/svelte_boundary_reset_onerror`);
|
|
error.name = "Svelte error";
|
|
throw error;
|
|
} else {
|
|
throw new Error(`https://svelte.dev/e/svelte_boundary_reset_onerror`);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/flags/index.js
|
|
var async_mode_flag = false;
|
|
var legacy_mode_flag = false;
|
|
var tracing_mode_flag = false;
|
|
function enable_legacy_mode_flag() {
|
|
legacy_mode_flag = true;
|
|
}
|
|
|
|
// node_modules/svelte/src/constants.js
|
|
var EACH_ITEM_REACTIVE = 1;
|
|
var EACH_INDEX_REACTIVE = 1 << 1;
|
|
var EACH_IS_CONTROLLED = 1 << 2;
|
|
var EACH_IS_ANIMATED = 1 << 3;
|
|
var EACH_ITEM_IMMUTABLE = 1 << 4;
|
|
var PROPS_IS_IMMUTABLE = 1;
|
|
var PROPS_IS_RUNES = 1 << 1;
|
|
var PROPS_IS_UPDATED = 1 << 2;
|
|
var PROPS_IS_BINDABLE = 1 << 3;
|
|
var PROPS_IS_LAZY_INITIAL = 1 << 4;
|
|
var TRANSITION_OUT = 1 << 1;
|
|
var TRANSITION_GLOBAL = 1 << 2;
|
|
var TEMPLATE_FRAGMENT = 1;
|
|
var TEMPLATE_USE_IMPORT_NODE = 1 << 1;
|
|
var TEMPLATE_USE_SVG = 1 << 2;
|
|
var TEMPLATE_USE_MATHML = 1 << 3;
|
|
var HYDRATION_START = "[";
|
|
var HYDRATION_START_ELSE = "[!";
|
|
var HYDRATION_START_FAILED = "[?";
|
|
var HYDRATION_END = "]";
|
|
var HYDRATION_ERROR = {};
|
|
var ELEMENT_PRESERVE_ATTRIBUTE_CASE = 1 << 1;
|
|
var ELEMENT_IS_INPUT = 1 << 2;
|
|
var UNINITIALIZED = /* @__PURE__ */ Symbol();
|
|
var FILENAME = /* @__PURE__ */ Symbol("filename");
|
|
var NAMESPACE_HTML = "http://www.w3.org/1999/xhtml";
|
|
var ATTACHMENT_KEY = "@attach";
|
|
|
|
// node_modules/svelte/src/internal/client/dev/tracing.js
|
|
var tracing_expressions = null;
|
|
function tag(source2, label) {
|
|
source2.label = label;
|
|
tag_proxy(source2.v, label);
|
|
return source2;
|
|
}
|
|
function tag_proxy(value, label) {
|
|
var _a5;
|
|
(_a5 = value == null ? void 0 : value[PROXY_PATH_SYMBOL]) == null ? void 0 : _a5.call(value, label);
|
|
return value;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/shared/dev.js
|
|
function get_error(label) {
|
|
const error = new Error();
|
|
const stack2 = get_stack();
|
|
if (stack2.length === 0) {
|
|
return null;
|
|
}
|
|
stack2.unshift("\n");
|
|
define_property(error, "stack", {
|
|
value: stack2.join("\n")
|
|
});
|
|
define_property(error, "name", {
|
|
value: label
|
|
});
|
|
return (
|
|
/** @type {Error & { stack: string }} */
|
|
error
|
|
);
|
|
}
|
|
function get_stack() {
|
|
const limit = Error.stackTraceLimit;
|
|
Error.stackTraceLimit = Infinity;
|
|
const stack2 = new Error().stack;
|
|
Error.stackTraceLimit = limit;
|
|
if (!stack2) return [];
|
|
const lines = stack2.split("\n");
|
|
const new_lines = [];
|
|
for (let i = 0; i < lines.length; i++) {
|
|
const line = lines[i];
|
|
const posixified = line.replaceAll("\\", "/");
|
|
if (line.trim() === "Error") {
|
|
continue;
|
|
}
|
|
if (line.includes("validate_each_keys")) {
|
|
return [];
|
|
}
|
|
if (posixified.includes("svelte/src/internal") || posixified.includes("node_modules/.vite")) {
|
|
continue;
|
|
}
|
|
new_lines.push(line);
|
|
}
|
|
return new_lines;
|
|
}
|
|
function invariant(condition, message) {
|
|
if (!dev_fallback_default) {
|
|
throw new Error("invariant(...) was not guarded by if (DEV)");
|
|
}
|
|
if (!condition) invariant_violation(message);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/context.js
|
|
var component_context = null;
|
|
function set_component_context(context) {
|
|
component_context = context;
|
|
}
|
|
var dev_stack = null;
|
|
function set_dev_stack(stack2) {
|
|
dev_stack = stack2;
|
|
}
|
|
var dev_current_component_function = null;
|
|
function set_dev_current_component_function(fn) {
|
|
dev_current_component_function = fn;
|
|
}
|
|
function push(props, runes = false, fn) {
|
|
component_context = {
|
|
p: component_context,
|
|
i: false,
|
|
c: null,
|
|
e: null,
|
|
s: props,
|
|
x: null,
|
|
r: (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
),
|
|
l: legacy_mode_flag && !runes ? { s: null, u: null, $: [] } : null
|
|
};
|
|
if (dev_fallback_default) {
|
|
component_context.function = fn;
|
|
dev_current_component_function = fn;
|
|
}
|
|
}
|
|
function pop(component2) {
|
|
var _a5;
|
|
var context = (
|
|
/** @type {ComponentContext} */
|
|
component_context
|
|
);
|
|
var effects = context.e;
|
|
if (effects !== null) {
|
|
context.e = null;
|
|
for (var fn of effects) {
|
|
create_user_effect(fn);
|
|
}
|
|
}
|
|
if (component2 !== void 0) {
|
|
context.x = component2;
|
|
}
|
|
context.i = true;
|
|
component_context = context.p;
|
|
if (dev_fallback_default) {
|
|
dev_current_component_function = (_a5 = component_context == null ? void 0 : component_context.function) != null ? _a5 : null;
|
|
}
|
|
return component2 != null ? component2 : (
|
|
/** @type {T} */
|
|
{}
|
|
);
|
|
}
|
|
function is_runes() {
|
|
return !legacy_mode_flag || component_context !== null && component_context.l === null;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/task.js
|
|
var micro_tasks = [];
|
|
function run_micro_tasks() {
|
|
var tasks = micro_tasks;
|
|
micro_tasks = [];
|
|
run_all(tasks);
|
|
}
|
|
function queue_micro_task(fn) {
|
|
if (micro_tasks.length === 0 && !is_flushing_sync) {
|
|
var tasks = micro_tasks;
|
|
queueMicrotask(() => {
|
|
if (tasks === micro_tasks) run_micro_tasks();
|
|
});
|
|
}
|
|
micro_tasks.push(fn);
|
|
}
|
|
function flush_tasks() {
|
|
while (micro_tasks.length > 0) {
|
|
run_micro_tasks();
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/warnings.js
|
|
var bold = "font-weight: bold";
|
|
var normal = "font-weight: normal";
|
|
function await_waterfall(name, location) {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] await_waterfall
|
|
%cAn async derived, \`${name}\` (${location}) was not read immediately after it resolved. This often indicates an unnecessary waterfall, which can slow down your app
|
|
https://svelte.dev/e/await_waterfall`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/await_waterfall`);
|
|
}
|
|
}
|
|
function hydration_attribute_changed(attribute, html2, value) {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] hydration_attribute_changed
|
|
%cThe \`${attribute}\` attribute on \`${html2}\` changed its value between server and client renders. The client value, \`${value}\`, will be ignored in favour of the server value
|
|
https://svelte.dev/e/hydration_attribute_changed`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/hydration_attribute_changed`);
|
|
}
|
|
}
|
|
function hydration_mismatch(location) {
|
|
if (dev_fallback_default) {
|
|
console.warn(
|
|
`%c[svelte] hydration_mismatch
|
|
%c${location ? `Hydration failed because the initial UI does not match what was rendered on the server. The error occurred near ${location}` : "Hydration failed because the initial UI does not match what was rendered on the server"}
|
|
https://svelte.dev/e/hydration_mismatch`,
|
|
bold,
|
|
normal
|
|
);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/hydration_mismatch`);
|
|
}
|
|
}
|
|
function lifecycle_double_unmount() {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] lifecycle_double_unmount
|
|
%cTried to unmount a component that was not mounted
|
|
https://svelte.dev/e/lifecycle_double_unmount`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/lifecycle_double_unmount`);
|
|
}
|
|
}
|
|
function select_multiple_invalid_value() {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] select_multiple_invalid_value
|
|
%cThe \`value\` property of a \`<select multiple>\` element should be an array, but it received a non-array value. The selection will be kept as is.
|
|
https://svelte.dev/e/select_multiple_invalid_value`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/select_multiple_invalid_value`);
|
|
}
|
|
}
|
|
function state_proxy_equality_mismatch(operator) {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] state_proxy_equality_mismatch
|
|
%cReactive \`$state(...)\` proxies and the values they proxy have different identities. Because of this, comparisons with \`${operator}\` will produce unexpected results
|
|
https://svelte.dev/e/state_proxy_equality_mismatch`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/state_proxy_equality_mismatch`);
|
|
}
|
|
}
|
|
function state_proxy_unmount() {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] state_proxy_unmount
|
|
%cTried to unmount a state proxy, rather than a component
|
|
https://svelte.dev/e/state_proxy_unmount`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/state_proxy_unmount`);
|
|
}
|
|
}
|
|
function svelte_boundary_reset_noop() {
|
|
if (dev_fallback_default) {
|
|
console.warn(`%c[svelte] svelte_boundary_reset_noop
|
|
%cA \`<svelte:boundary>\` \`reset\` function only resets the boundary the first time it is called
|
|
https://svelte.dev/e/svelte_boundary_reset_noop`, bold, normal);
|
|
} else {
|
|
console.warn(`https://svelte.dev/e/svelte_boundary_reset_noop`);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/hydration.js
|
|
var hydrating = false;
|
|
function set_hydrating(value) {
|
|
hydrating = value;
|
|
}
|
|
var hydrate_node;
|
|
function set_hydrate_node(node) {
|
|
if (node === null) {
|
|
hydration_mismatch();
|
|
throw HYDRATION_ERROR;
|
|
}
|
|
return hydrate_node = node;
|
|
}
|
|
function hydrate_next() {
|
|
return set_hydrate_node(get_next_sibling(hydrate_node));
|
|
}
|
|
function reset(node) {
|
|
if (!hydrating) return;
|
|
if (get_next_sibling(hydrate_node) !== null) {
|
|
hydration_mismatch();
|
|
throw HYDRATION_ERROR;
|
|
}
|
|
hydrate_node = node;
|
|
}
|
|
function next(count = 1) {
|
|
if (hydrating) {
|
|
var i = count;
|
|
var node = hydrate_node;
|
|
while (i--) {
|
|
node = /** @type {TemplateNode} */
|
|
get_next_sibling(node);
|
|
}
|
|
hydrate_node = node;
|
|
}
|
|
}
|
|
function skip_nodes(remove = true) {
|
|
var depth = 0;
|
|
var node = hydrate_node;
|
|
while (true) {
|
|
if (node.nodeType === COMMENT_NODE) {
|
|
var data = (
|
|
/** @type {Comment} */
|
|
node.data
|
|
);
|
|
if (data === HYDRATION_END) {
|
|
if (depth === 0) return node;
|
|
depth -= 1;
|
|
} else if (data === HYDRATION_START || data === HYDRATION_START_ELSE || // "[1", "[2", etc. for if blocks
|
|
data[0] === "[" && !isNaN(Number(data.slice(1)))) {
|
|
depth += 1;
|
|
}
|
|
}
|
|
var next2 = (
|
|
/** @type {TemplateNode} */
|
|
get_next_sibling(node)
|
|
);
|
|
if (remove) node.remove();
|
|
node = next2;
|
|
}
|
|
}
|
|
function read_hydration_instruction(node) {
|
|
if (!node || node.nodeType !== COMMENT_NODE) {
|
|
hydration_mismatch();
|
|
throw HYDRATION_ERROR;
|
|
}
|
|
return (
|
|
/** @type {Comment} */
|
|
node.data
|
|
);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/proxy.js
|
|
var regex_is_valid_identifier = /^[a-zA-Z_$][a-zA-Z_$0-9]*$/;
|
|
function proxy(value) {
|
|
if (typeof value !== "object" || value === null || STATE_SYMBOL in value) {
|
|
return value;
|
|
}
|
|
const prototype = get_prototype_of(value);
|
|
if (prototype !== object_prototype && prototype !== array_prototype) {
|
|
return value;
|
|
}
|
|
var sources = /* @__PURE__ */ new Map();
|
|
var is_proxied_array = is_array(value);
|
|
var version = state(0);
|
|
var stack2 = dev_fallback_default && tracing_mode_flag ? get_error("created at") : null;
|
|
var parent_version = update_version;
|
|
var with_parent = (fn) => {
|
|
if (update_version === parent_version) {
|
|
return fn();
|
|
}
|
|
var reaction = active_reaction;
|
|
var version2 = update_version;
|
|
set_active_reaction(null);
|
|
set_update_version(parent_version);
|
|
var result = fn();
|
|
set_active_reaction(reaction);
|
|
set_update_version(version2);
|
|
return result;
|
|
};
|
|
if (is_proxied_array) {
|
|
sources.set("length", state(
|
|
/** @type {any[]} */
|
|
value.length,
|
|
stack2
|
|
));
|
|
if (dev_fallback_default) {
|
|
value = /** @type {any} */
|
|
inspectable_array(
|
|
/** @type {any[]} */
|
|
value
|
|
);
|
|
}
|
|
}
|
|
var path = "";
|
|
let updating = false;
|
|
function update_path(new_path) {
|
|
if (updating) return;
|
|
updating = true;
|
|
path = new_path;
|
|
tag(version, `${path} version`);
|
|
for (const [prop2, source2] of sources) {
|
|
tag(source2, get_label(path, prop2));
|
|
}
|
|
updating = false;
|
|
}
|
|
return new Proxy(
|
|
/** @type {any} */
|
|
value,
|
|
{
|
|
defineProperty(_, prop2, descriptor) {
|
|
if (!("value" in descriptor) || descriptor.configurable === false || descriptor.enumerable === false || descriptor.writable === false) {
|
|
state_descriptors_fixed();
|
|
}
|
|
var s = sources.get(prop2);
|
|
if (s === void 0) {
|
|
with_parent(() => {
|
|
var s2 = state(descriptor.value, stack2);
|
|
sources.set(prop2, s2);
|
|
if (dev_fallback_default && typeof prop2 === "string") {
|
|
tag(s2, get_label(path, prop2));
|
|
}
|
|
return s2;
|
|
});
|
|
} else {
|
|
set(s, descriptor.value, true);
|
|
}
|
|
return true;
|
|
},
|
|
deleteProperty(target, prop2) {
|
|
var s = sources.get(prop2);
|
|
if (s === void 0) {
|
|
if (prop2 in target) {
|
|
const s2 = with_parent(() => state(UNINITIALIZED, stack2));
|
|
sources.set(prop2, s2);
|
|
increment(version);
|
|
if (dev_fallback_default) {
|
|
tag(s2, get_label(path, prop2));
|
|
}
|
|
}
|
|
} else {
|
|
set(s, UNINITIALIZED);
|
|
increment(version);
|
|
}
|
|
return true;
|
|
},
|
|
get(target, prop2, receiver) {
|
|
var _a5;
|
|
if (prop2 === STATE_SYMBOL) {
|
|
return value;
|
|
}
|
|
if (dev_fallback_default && prop2 === PROXY_PATH_SYMBOL) {
|
|
return update_path;
|
|
}
|
|
var s = sources.get(prop2);
|
|
var exists = prop2 in target;
|
|
if (s === void 0 && (!exists || ((_a5 = get_descriptor(target, prop2)) == null ? void 0 : _a5.writable))) {
|
|
s = with_parent(() => {
|
|
var p = proxy(exists ? target[prop2] : UNINITIALIZED);
|
|
var s2 = state(p, stack2);
|
|
if (dev_fallback_default) {
|
|
tag(s2, get_label(path, prop2));
|
|
}
|
|
return s2;
|
|
});
|
|
sources.set(prop2, s);
|
|
}
|
|
if (s !== void 0) {
|
|
var v = get(s);
|
|
return v === UNINITIALIZED ? void 0 : v;
|
|
}
|
|
return Reflect.get(target, prop2, receiver);
|
|
},
|
|
getOwnPropertyDescriptor(target, prop2) {
|
|
var descriptor = Reflect.getOwnPropertyDescriptor(target, prop2);
|
|
if (descriptor && "value" in descriptor) {
|
|
var s = sources.get(prop2);
|
|
if (s) descriptor.value = get(s);
|
|
} else if (descriptor === void 0) {
|
|
var source2 = sources.get(prop2);
|
|
var value2 = source2 == null ? void 0 : source2.v;
|
|
if (source2 !== void 0 && value2 !== UNINITIALIZED) {
|
|
return {
|
|
enumerable: true,
|
|
configurable: true,
|
|
value: value2,
|
|
writable: true
|
|
};
|
|
}
|
|
}
|
|
return descriptor;
|
|
},
|
|
has(target, prop2) {
|
|
var _a5;
|
|
if (prop2 === STATE_SYMBOL) {
|
|
return true;
|
|
}
|
|
var s = sources.get(prop2);
|
|
var has = s !== void 0 && s.v !== UNINITIALIZED || Reflect.has(target, prop2);
|
|
if (s !== void 0 || active_effect !== null && (!has || ((_a5 = get_descriptor(target, prop2)) == null ? void 0 : _a5.writable))) {
|
|
if (s === void 0) {
|
|
s = with_parent(() => {
|
|
var p = has ? proxy(target[prop2]) : UNINITIALIZED;
|
|
var s2 = state(p, stack2);
|
|
if (dev_fallback_default) {
|
|
tag(s2, get_label(path, prop2));
|
|
}
|
|
return s2;
|
|
});
|
|
sources.set(prop2, s);
|
|
}
|
|
var value2 = get(s);
|
|
if (value2 === UNINITIALIZED) {
|
|
return false;
|
|
}
|
|
}
|
|
return has;
|
|
},
|
|
set(target, prop2, value2, receiver) {
|
|
var _a5;
|
|
var s = sources.get(prop2);
|
|
var has = prop2 in target;
|
|
if (is_proxied_array && prop2 === "length") {
|
|
for (var i = value2; i < /** @type {Source<number>} */
|
|
s.v; i += 1) {
|
|
var other_s = sources.get(i + "");
|
|
if (other_s !== void 0) {
|
|
set(other_s, UNINITIALIZED);
|
|
} else if (i in target) {
|
|
other_s = with_parent(() => state(UNINITIALIZED, stack2));
|
|
sources.set(i + "", other_s);
|
|
if (dev_fallback_default) {
|
|
tag(other_s, get_label(path, i));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (s === void 0) {
|
|
if (!has || ((_a5 = get_descriptor(target, prop2)) == null ? void 0 : _a5.writable)) {
|
|
s = with_parent(() => state(void 0, stack2));
|
|
if (dev_fallback_default) {
|
|
tag(s, get_label(path, prop2));
|
|
}
|
|
set(s, proxy(value2));
|
|
sources.set(prop2, s);
|
|
}
|
|
} else {
|
|
has = s.v !== UNINITIALIZED;
|
|
var p = with_parent(() => proxy(value2));
|
|
set(s, p);
|
|
}
|
|
var descriptor = Reflect.getOwnPropertyDescriptor(target, prop2);
|
|
if (descriptor == null ? void 0 : descriptor.set) {
|
|
descriptor.set.call(receiver, value2);
|
|
}
|
|
if (!has) {
|
|
if (is_proxied_array && typeof prop2 === "string") {
|
|
var ls = (
|
|
/** @type {Source<number>} */
|
|
sources.get("length")
|
|
);
|
|
var n = Number(prop2);
|
|
if (Number.isInteger(n) && n >= ls.v) {
|
|
set(ls, n + 1);
|
|
}
|
|
}
|
|
increment(version);
|
|
}
|
|
return true;
|
|
},
|
|
ownKeys(target) {
|
|
get(version);
|
|
var own_keys = Reflect.ownKeys(target).filter((key3) => {
|
|
var source3 = sources.get(key3);
|
|
return source3 === void 0 || source3.v !== UNINITIALIZED;
|
|
});
|
|
for (var [key2, source2] of sources) {
|
|
if (source2.v !== UNINITIALIZED && !(key2 in target)) {
|
|
own_keys.push(key2);
|
|
}
|
|
}
|
|
return own_keys;
|
|
},
|
|
setPrototypeOf() {
|
|
state_prototype_fixed();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
function get_label(path, prop2) {
|
|
var _a5;
|
|
if (typeof prop2 === "symbol") return `${path}[Symbol(${(_a5 = prop2.description) != null ? _a5 : ""})]`;
|
|
if (regex_is_valid_identifier.test(prop2)) return `${path}.${prop2}`;
|
|
return /^\d+$/.test(prop2) ? `${path}[${prop2}]` : `${path}['${prop2}']`;
|
|
}
|
|
function get_proxied_value(value) {
|
|
try {
|
|
if (value !== null && typeof value === "object" && STATE_SYMBOL in value) {
|
|
return value[STATE_SYMBOL];
|
|
}
|
|
} catch (e) {
|
|
}
|
|
return value;
|
|
}
|
|
function is(a, b) {
|
|
return Object.is(get_proxied_value(a), get_proxied_value(b));
|
|
}
|
|
var ARRAY_MUTATING_METHODS = /* @__PURE__ */ new Set([
|
|
"copyWithin",
|
|
"fill",
|
|
"pop",
|
|
"push",
|
|
"reverse",
|
|
"shift",
|
|
"sort",
|
|
"splice",
|
|
"unshift"
|
|
]);
|
|
function inspectable_array(array) {
|
|
return new Proxy(array, {
|
|
get(target, prop2, receiver) {
|
|
var value = Reflect.get(target, prop2, receiver);
|
|
if (!ARRAY_MUTATING_METHODS.has(
|
|
/** @type {string} */
|
|
prop2
|
|
)) {
|
|
return value;
|
|
}
|
|
return function(...args) {
|
|
set_eager_effects_deferred();
|
|
var result = value.apply(this, args);
|
|
flush_eager_effects();
|
|
return result;
|
|
};
|
|
}
|
|
});
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dev/equality.js
|
|
function init_array_prototype_warnings() {
|
|
const array_prototype2 = Array.prototype;
|
|
const cleanup = Array.__svelte_cleanup;
|
|
if (cleanup) {
|
|
cleanup();
|
|
}
|
|
const { indexOf, lastIndexOf, includes: includes2 } = array_prototype2;
|
|
array_prototype2.indexOf = function(item, from_index) {
|
|
const index2 = indexOf.call(this, item, from_index);
|
|
if (index2 === -1) {
|
|
for (let i = from_index != null ? from_index : 0; i < this.length; i += 1) {
|
|
if (get_proxied_value(this[i]) === item) {
|
|
state_proxy_equality_mismatch("array.indexOf(...)");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return index2;
|
|
};
|
|
array_prototype2.lastIndexOf = function(item, from_index) {
|
|
const index2 = lastIndexOf.call(this, item, from_index != null ? from_index : this.length - 1);
|
|
if (index2 === -1) {
|
|
for (let i = 0; i <= (from_index != null ? from_index : this.length - 1); i += 1) {
|
|
if (get_proxied_value(this[i]) === item) {
|
|
state_proxy_equality_mismatch("array.lastIndexOf(...)");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return index2;
|
|
};
|
|
array_prototype2.includes = function(item, from_index) {
|
|
const has = includes2.call(this, item, from_index);
|
|
if (!has) {
|
|
for (let i = 0; i < this.length; i += 1) {
|
|
if (get_proxied_value(this[i]) === item) {
|
|
state_proxy_equality_mismatch("array.includes(...)");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return has;
|
|
};
|
|
Array.__svelte_cleanup = () => {
|
|
array_prototype2.indexOf = indexOf;
|
|
array_prototype2.lastIndexOf = lastIndexOf;
|
|
array_prototype2.includes = includes2;
|
|
};
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/operations.js
|
|
var $window;
|
|
var $document;
|
|
var is_firefox;
|
|
var first_child_getter;
|
|
var next_sibling_getter;
|
|
function init_operations() {
|
|
if ($window !== void 0) {
|
|
return;
|
|
}
|
|
$window = window;
|
|
$document = document;
|
|
is_firefox = /Firefox/.test(navigator.userAgent);
|
|
var element_prototype = Element.prototype;
|
|
var node_prototype = Node.prototype;
|
|
var text_prototype = Text.prototype;
|
|
first_child_getter = get_descriptor(node_prototype, "firstChild").get;
|
|
next_sibling_getter = get_descriptor(node_prototype, "nextSibling").get;
|
|
if (is_extensible(element_prototype)) {
|
|
element_prototype.__click = void 0;
|
|
element_prototype.__className = void 0;
|
|
element_prototype.__attributes = null;
|
|
element_prototype.__style = void 0;
|
|
element_prototype.__e = void 0;
|
|
}
|
|
if (is_extensible(text_prototype)) {
|
|
text_prototype.__t = void 0;
|
|
}
|
|
if (dev_fallback_default) {
|
|
element_prototype.__svelte_meta = null;
|
|
init_array_prototype_warnings();
|
|
}
|
|
}
|
|
function create_text(value = "") {
|
|
return document.createTextNode(value);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function get_first_child(node) {
|
|
return (
|
|
/** @type {TemplateNode | null} */
|
|
first_child_getter.call(node)
|
|
);
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function get_next_sibling(node) {
|
|
return (
|
|
/** @type {TemplateNode | null} */
|
|
next_sibling_getter.call(node)
|
|
);
|
|
}
|
|
function child(node, is_text) {
|
|
if (!hydrating) {
|
|
return /* @__PURE__ */ get_first_child(node);
|
|
}
|
|
var child2 = /* @__PURE__ */ get_first_child(hydrate_node);
|
|
if (child2 === null) {
|
|
child2 = hydrate_node.appendChild(create_text());
|
|
} else if (is_text && child2.nodeType !== TEXT_NODE) {
|
|
var text2 = create_text();
|
|
child2 == null ? void 0 : child2.before(text2);
|
|
set_hydrate_node(text2);
|
|
return text2;
|
|
}
|
|
if (is_text) {
|
|
merge_text_nodes(
|
|
/** @type {Text} */
|
|
child2
|
|
);
|
|
}
|
|
set_hydrate_node(child2);
|
|
return child2;
|
|
}
|
|
function first_child(node, is_text = false) {
|
|
var _a5, _b3;
|
|
if (!hydrating) {
|
|
var first = /* @__PURE__ */ get_first_child(node);
|
|
if (first instanceof Comment && first.data === "") return /* @__PURE__ */ get_next_sibling(first);
|
|
return first;
|
|
}
|
|
if (is_text) {
|
|
if (((_a5 = hydrate_node) == null ? void 0 : _a5.nodeType) !== TEXT_NODE) {
|
|
var text2 = create_text();
|
|
(_b3 = hydrate_node) == null ? void 0 : _b3.before(text2);
|
|
set_hydrate_node(text2);
|
|
return text2;
|
|
}
|
|
merge_text_nodes(
|
|
/** @type {Text} */
|
|
hydrate_node
|
|
);
|
|
}
|
|
return hydrate_node;
|
|
}
|
|
function sibling(node, count = 1, is_text = false) {
|
|
let next_sibling = hydrating ? hydrate_node : node;
|
|
var last_sibling;
|
|
while (count--) {
|
|
last_sibling = next_sibling;
|
|
next_sibling = /** @type {TemplateNode} */
|
|
/* @__PURE__ */ get_next_sibling(next_sibling);
|
|
}
|
|
if (!hydrating) {
|
|
return next_sibling;
|
|
}
|
|
if (is_text) {
|
|
if ((next_sibling == null ? void 0 : next_sibling.nodeType) !== TEXT_NODE) {
|
|
var text2 = create_text();
|
|
if (next_sibling === null) {
|
|
last_sibling == null ? void 0 : last_sibling.after(text2);
|
|
} else {
|
|
next_sibling.before(text2);
|
|
}
|
|
set_hydrate_node(text2);
|
|
return text2;
|
|
}
|
|
merge_text_nodes(
|
|
/** @type {Text} */
|
|
next_sibling
|
|
);
|
|
}
|
|
set_hydrate_node(next_sibling);
|
|
return next_sibling;
|
|
}
|
|
function clear_text_content(node) {
|
|
node.textContent = "";
|
|
}
|
|
function should_defer_append() {
|
|
if (!async_mode_flag) return false;
|
|
if (eager_block_effects !== null) return false;
|
|
var flags2 = (
|
|
/** @type {Effect} */
|
|
active_effect.f
|
|
);
|
|
return (flags2 & REACTION_RAN) !== 0;
|
|
}
|
|
function create_element(tag2, namespace, is2) {
|
|
let options = is2 ? { is: is2 } : void 0;
|
|
return (
|
|
/** @type {T extends keyof HTMLElementTagNameMap ? HTMLElementTagNameMap[T] : Element} */
|
|
document.createElementNS(namespace != null ? namespace : NAMESPACE_HTML, tag2, options)
|
|
);
|
|
}
|
|
function merge_text_nodes(text2) {
|
|
if (
|
|
/** @type {string} */
|
|
text2.nodeValue.length < 65536
|
|
) {
|
|
return;
|
|
}
|
|
let next2 = text2.nextSibling;
|
|
while (next2 !== null && next2.nodeType === TEXT_NODE) {
|
|
next2.remove();
|
|
text2.nodeValue += /** @type {string} */
|
|
next2.nodeValue;
|
|
next2 = text2.nextSibling;
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/error-handling.js
|
|
var adjustments = /* @__PURE__ */ new WeakMap();
|
|
function handle_error(error) {
|
|
var effect2 = active_effect;
|
|
if (effect2 === null) {
|
|
active_reaction.f |= ERROR_VALUE;
|
|
return error;
|
|
}
|
|
if (dev_fallback_default && error instanceof Error && !adjustments.has(error)) {
|
|
adjustments.set(error, get_adjustments(error, effect2));
|
|
}
|
|
if ((effect2.f & REACTION_RAN) === 0 && (effect2.f & EFFECT) === 0) {
|
|
if (dev_fallback_default && !effect2.parent && error instanceof Error) {
|
|
apply_adjustments(error);
|
|
}
|
|
throw error;
|
|
}
|
|
invoke_error_boundary(error, effect2);
|
|
}
|
|
function invoke_error_boundary(error, effect2) {
|
|
while (effect2 !== null) {
|
|
if ((effect2.f & BOUNDARY_EFFECT) !== 0) {
|
|
if ((effect2.f & REACTION_RAN) === 0) {
|
|
throw error;
|
|
}
|
|
try {
|
|
effect2.b.error(error);
|
|
return;
|
|
} catch (e) {
|
|
error = e;
|
|
}
|
|
}
|
|
effect2 = effect2.parent;
|
|
}
|
|
if (dev_fallback_default && error instanceof Error) {
|
|
apply_adjustments(error);
|
|
}
|
|
throw error;
|
|
}
|
|
function get_adjustments(error, effect2) {
|
|
var _a5, _b3, _c2;
|
|
const message_descriptor = get_descriptor(error, "message");
|
|
if (message_descriptor && !message_descriptor.configurable) return;
|
|
var indent = is_firefox ? " " : " ";
|
|
var component_stack = `
|
|
${indent}in ${((_a5 = effect2.fn) == null ? void 0 : _a5.name) || "<unknown>"}`;
|
|
var context = effect2.ctx;
|
|
while (context !== null) {
|
|
component_stack += `
|
|
${indent}in ${(_b3 = context.function) == null ? void 0 : _b3[FILENAME].split("/").pop()}`;
|
|
context = context.p;
|
|
}
|
|
return {
|
|
message: error.message + `
|
|
${component_stack}
|
|
`,
|
|
stack: (_c2 = error.stack) == null ? void 0 : _c2.split("\n").filter((line) => !line.includes("svelte/src/internal")).join("\n")
|
|
};
|
|
}
|
|
function apply_adjustments(error) {
|
|
const adjusted = adjustments.get(error);
|
|
if (adjusted) {
|
|
define_property(error, "message", {
|
|
value: adjusted.message
|
|
});
|
|
define_property(error, "stack", {
|
|
value: adjusted.stack
|
|
});
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/status.js
|
|
var STATUS_MASK = ~(DIRTY | MAYBE_DIRTY | CLEAN);
|
|
function set_signal_status(signal, status) {
|
|
signal.f = signal.f & STATUS_MASK | status;
|
|
}
|
|
function update_derived_status(derived3) {
|
|
if ((derived3.f & CONNECTED) !== 0 || derived3.deps === null) {
|
|
set_signal_status(derived3, CLEAN);
|
|
} else {
|
|
set_signal_status(derived3, MAYBE_DIRTY);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/utils.js
|
|
function clear_marked(deps) {
|
|
if (deps === null) return;
|
|
for (const dep of deps) {
|
|
if ((dep.f & DERIVED) === 0 || (dep.f & WAS_MARKED) === 0) {
|
|
continue;
|
|
}
|
|
dep.f ^= WAS_MARKED;
|
|
clear_marked(
|
|
/** @type {Derived} */
|
|
dep.deps
|
|
);
|
|
}
|
|
}
|
|
function defer_effect(effect2, dirty_effects, maybe_dirty_effects) {
|
|
if ((effect2.f & DIRTY) !== 0) {
|
|
dirty_effects.add(effect2);
|
|
} else if ((effect2.f & MAYBE_DIRTY) !== 0) {
|
|
maybe_dirty_effects.add(effect2);
|
|
}
|
|
clear_marked(effect2.deps);
|
|
set_signal_status(effect2, CLEAN);
|
|
}
|
|
|
|
// node_modules/svelte/src/store/utils.js
|
|
function subscribe_to_store(store, run3, invalidate) {
|
|
if (store == null) {
|
|
run3(void 0);
|
|
if (invalidate) invalidate(void 0);
|
|
return noop;
|
|
}
|
|
const unsub = untrack(
|
|
() => store.subscribe(
|
|
run3,
|
|
// @ts-expect-error
|
|
invalidate
|
|
)
|
|
);
|
|
return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;
|
|
}
|
|
|
|
// node_modules/svelte/src/store/shared/index.js
|
|
var subscriber_queue = [];
|
|
function readable(value, start) {
|
|
return {
|
|
subscribe: writable(value, start).subscribe
|
|
};
|
|
}
|
|
function writable(value, start = noop) {
|
|
let stop = null;
|
|
const subscribers = /* @__PURE__ */ new Set();
|
|
function set2(new_value) {
|
|
if (safe_not_equal(value, new_value)) {
|
|
value = new_value;
|
|
if (stop) {
|
|
const run_queue = !subscriber_queue.length;
|
|
for (const subscriber of subscribers) {
|
|
subscriber[1]();
|
|
subscriber_queue.push(subscriber, value);
|
|
}
|
|
if (run_queue) {
|
|
for (let i = 0; i < subscriber_queue.length; i += 2) {
|
|
subscriber_queue[i][0](subscriber_queue[i + 1]);
|
|
}
|
|
subscriber_queue.length = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function update2(fn) {
|
|
set2(fn(
|
|
/** @type {T} */
|
|
value
|
|
));
|
|
}
|
|
function subscribe(run3, invalidate = noop) {
|
|
const subscriber = [run3, invalidate];
|
|
subscribers.add(subscriber);
|
|
if (subscribers.size === 1) {
|
|
stop = start(set2, update2) || noop;
|
|
}
|
|
run3(
|
|
/** @type {T} */
|
|
value
|
|
);
|
|
return () => {
|
|
subscribers.delete(subscriber);
|
|
if (subscribers.size === 0 && stop) {
|
|
stop();
|
|
stop = null;
|
|
}
|
|
};
|
|
}
|
|
return { set: set2, update: update2, subscribe };
|
|
}
|
|
function derived(stores, fn, initial_value) {
|
|
const single = !Array.isArray(stores);
|
|
const stores_array = single ? [stores] : stores;
|
|
if (!stores_array.every(Boolean)) {
|
|
throw new Error("derived() expects stores as input, got a falsy value");
|
|
}
|
|
const auto = fn.length < 2;
|
|
return readable(initial_value, (set2, update2) => {
|
|
let started = false;
|
|
const values = [];
|
|
let pending2 = 0;
|
|
let cleanup = noop;
|
|
const sync = () => {
|
|
if (pending2) {
|
|
return;
|
|
}
|
|
cleanup();
|
|
const result = fn(single ? values[0] : values, set2, update2);
|
|
if (auto) {
|
|
set2(result);
|
|
} else {
|
|
cleanup = typeof result === "function" ? result : noop;
|
|
}
|
|
};
|
|
const unsubscribers = stores_array.map(
|
|
(store, i) => subscribe_to_store(
|
|
store,
|
|
(value) => {
|
|
values[i] = value;
|
|
pending2 &= ~(1 << i);
|
|
if (started) {
|
|
sync();
|
|
}
|
|
},
|
|
() => {
|
|
pending2 |= 1 << i;
|
|
}
|
|
)
|
|
);
|
|
started = true;
|
|
sync();
|
|
return function stop() {
|
|
run_all(unsubscribers);
|
|
cleanup();
|
|
started = false;
|
|
};
|
|
});
|
|
}
|
|
function get2(store) {
|
|
let value;
|
|
subscribe_to_store(store, (_) => value = _)();
|
|
return value;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/store.js
|
|
var legacy_is_updating_store = false;
|
|
var is_store_binding = false;
|
|
var IS_UNMOUNTED = /* @__PURE__ */ Symbol();
|
|
function store_get(store, store_name, stores) {
|
|
var _a5;
|
|
const entry = (_a5 = stores[store_name]) != null ? _a5 : stores[store_name] = {
|
|
store: null,
|
|
source: mutable_source(void 0),
|
|
unsubscribe: noop
|
|
};
|
|
if (dev_fallback_default) {
|
|
entry.source.label = store_name;
|
|
}
|
|
if (entry.store !== store && !(IS_UNMOUNTED in stores)) {
|
|
entry.unsubscribe();
|
|
entry.store = store != null ? store : null;
|
|
if (store == null) {
|
|
entry.source.v = void 0;
|
|
entry.unsubscribe = noop;
|
|
} else {
|
|
var is_synchronous_callback = true;
|
|
entry.unsubscribe = subscribe_to_store(store, (v) => {
|
|
if (is_synchronous_callback) {
|
|
entry.source.v = v;
|
|
} else {
|
|
set(entry.source, v);
|
|
}
|
|
});
|
|
is_synchronous_callback = false;
|
|
}
|
|
}
|
|
if (store && IS_UNMOUNTED in stores) {
|
|
return get2(store);
|
|
}
|
|
return get(entry.source);
|
|
}
|
|
function setup_stores() {
|
|
const stores = {};
|
|
function cleanup() {
|
|
teardown(() => {
|
|
for (var store_name in stores) {
|
|
const ref = stores[store_name];
|
|
ref.unsubscribe();
|
|
}
|
|
define_property(stores, IS_UNMOUNTED, {
|
|
enumerable: false,
|
|
value: true
|
|
});
|
|
});
|
|
}
|
|
return [stores, cleanup];
|
|
}
|
|
function update_with_flag(store, value) {
|
|
legacy_is_updating_store = true;
|
|
try {
|
|
store.set(value);
|
|
} finally {
|
|
legacy_is_updating_store = false;
|
|
}
|
|
}
|
|
function store_mutate(store, expression, new_value) {
|
|
update_with_flag(store, new_value);
|
|
return expression;
|
|
}
|
|
function capture_store_binding(fn) {
|
|
var previous_is_store_binding = is_store_binding;
|
|
try {
|
|
is_store_binding = false;
|
|
return [fn(), is_store_binding];
|
|
} finally {
|
|
is_store_binding = previous_is_store_binding;
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/batch.js
|
|
var batches = /* @__PURE__ */ new Set();
|
|
var current_batch = null;
|
|
var previous_batch = null;
|
|
var batch_values = null;
|
|
var last_scheduled_effect = null;
|
|
var is_flushing_sync = false;
|
|
var is_processing = false;
|
|
var collected_effects = null;
|
|
var legacy_updates = null;
|
|
var flush_count = 0;
|
|
var source_stacks = dev_fallback_default ? /* @__PURE__ */ new Set() : null;
|
|
var uid = 1;
|
|
var _commit_callbacks, _discard_callbacks, _pending, _blocking_pending, _deferred, _roots, _dirty_effects, _maybe_dirty_effects, _skipped_branches, _decrement_queued, _Batch_instances, is_deferred_fn, process_fn, traverse_fn, defer_effects_fn, commit_fn;
|
|
var _Batch = class _Batch {
|
|
constructor() {
|
|
__privateAdd(this, _Batch_instances);
|
|
// for debugging. TODO remove once async is stable
|
|
__publicField(this, "id", uid++);
|
|
/**
|
|
* The current values of any sources that are updated in this batch
|
|
* They keys of this map are identical to `this.#previous`
|
|
* @type {Map<Source, any>}
|
|
*/
|
|
__publicField(this, "current", /* @__PURE__ */ new Map());
|
|
/**
|
|
* The values of any sources that are updated in this batch _before_ those updates took place.
|
|
* They keys of this map are identical to `this.#current`
|
|
* @type {Map<Source, any>}
|
|
*/
|
|
__publicField(this, "previous", /* @__PURE__ */ new Map());
|
|
/**
|
|
* When the batch is committed (and the DOM is updated), we need to remove old branches
|
|
* and append new ones by calling the functions added inside (if/each/key/etc) blocks
|
|
* @type {Set<(batch: Batch) => void>}
|
|
*/
|
|
__privateAdd(this, _commit_callbacks, /* @__PURE__ */ new Set());
|
|
/**
|
|
* If a fork is discarded, we need to destroy any effects that are no longer needed
|
|
* @type {Set<(batch: Batch) => void>}
|
|
*/
|
|
__privateAdd(this, _discard_callbacks, /* @__PURE__ */ new Set());
|
|
/**
|
|
* The number of async effects that are currently in flight
|
|
*/
|
|
__privateAdd(this, _pending, 0);
|
|
/**
|
|
* The number of async effects that are currently in flight, _not_ inside a pending boundary
|
|
*/
|
|
__privateAdd(this, _blocking_pending, 0);
|
|
/**
|
|
* A deferred that resolves when the batch is committed, used with `settled()`
|
|
* TODO replace with Promise.withResolvers once supported widely enough
|
|
* @type {{ promise: Promise<void>, resolve: (value?: any) => void, reject: (reason: unknown) => void } | null}
|
|
*/
|
|
__privateAdd(this, _deferred, null);
|
|
/**
|
|
* The root effects that need to be flushed
|
|
* @type {Effect[]}
|
|
*/
|
|
__privateAdd(this, _roots, []);
|
|
/**
|
|
* Deferred effects (which run after async work has completed) that are DIRTY
|
|
* @type {Set<Effect>}
|
|
*/
|
|
__privateAdd(this, _dirty_effects, /* @__PURE__ */ new Set());
|
|
/**
|
|
* Deferred effects that are MAYBE_DIRTY
|
|
* @type {Set<Effect>}
|
|
*/
|
|
__privateAdd(this, _maybe_dirty_effects, /* @__PURE__ */ new Set());
|
|
/**
|
|
* A map of branches that still exist, but will be destroyed when this batch
|
|
* is committed — we skip over these during `process`.
|
|
* The value contains child effects that were dirty/maybe_dirty before being reset,
|
|
* so they can be rescheduled if the branch survives.
|
|
* @type {Map<Effect, { d: Effect[], m: Effect[] }>}
|
|
*/
|
|
__privateAdd(this, _skipped_branches, /* @__PURE__ */ new Map());
|
|
__publicField(this, "is_fork", false);
|
|
__privateAdd(this, _decrement_queued, false);
|
|
}
|
|
/**
|
|
* Add an effect to the #skipped_branches map and reset its children
|
|
* @param {Effect} effect
|
|
*/
|
|
skip_effect(effect2) {
|
|
if (!__privateGet(this, _skipped_branches).has(effect2)) {
|
|
__privateGet(this, _skipped_branches).set(effect2, { d: [], m: [] });
|
|
}
|
|
}
|
|
/**
|
|
* Remove an effect from the #skipped_branches map and reschedule
|
|
* any tracked dirty/maybe_dirty child effects
|
|
* @param {Effect} effect
|
|
*/
|
|
unskip_effect(effect2) {
|
|
var tracked = __privateGet(this, _skipped_branches).get(effect2);
|
|
if (tracked) {
|
|
__privateGet(this, _skipped_branches).delete(effect2);
|
|
for (var e of tracked.d) {
|
|
set_signal_status(e, DIRTY);
|
|
this.schedule(e);
|
|
}
|
|
for (e of tracked.m) {
|
|
set_signal_status(e, MAYBE_DIRTY);
|
|
this.schedule(e);
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Associate a change to a given source with the current
|
|
* batch, noting its previous and current values
|
|
* @param {Source} source
|
|
* @param {any} old_value
|
|
*/
|
|
capture(source2, old_value) {
|
|
if (old_value !== UNINITIALIZED && !this.previous.has(source2)) {
|
|
this.previous.set(source2, old_value);
|
|
}
|
|
if ((source2.f & ERROR_VALUE) === 0) {
|
|
this.current.set(source2, source2.v);
|
|
batch_values == null ? void 0 : batch_values.set(source2, source2.v);
|
|
}
|
|
}
|
|
activate() {
|
|
current_batch = this;
|
|
}
|
|
deactivate() {
|
|
current_batch = null;
|
|
batch_values = null;
|
|
}
|
|
flush() {
|
|
var source_stacks2 = dev_fallback_default ? /* @__PURE__ */ new Set() : null;
|
|
try {
|
|
is_processing = true;
|
|
current_batch = this;
|
|
__privateMethod(this, _Batch_instances, process_fn).call(this);
|
|
} finally {
|
|
flush_count = 0;
|
|
last_scheduled_effect = null;
|
|
collected_effects = null;
|
|
legacy_updates = null;
|
|
is_processing = false;
|
|
current_batch = null;
|
|
batch_values = null;
|
|
old_values.clear();
|
|
if (dev_fallback_default) {
|
|
for (
|
|
const source2 of
|
|
/** @type {Set<Source>} */
|
|
source_stacks2
|
|
) {
|
|
source2.updated = null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
discard() {
|
|
for (const fn of __privateGet(this, _discard_callbacks)) fn(this);
|
|
__privateGet(this, _discard_callbacks).clear();
|
|
}
|
|
/**
|
|
*
|
|
* @param {boolean} blocking
|
|
*/
|
|
increment(blocking) {
|
|
__privateSet(this, _pending, __privateGet(this, _pending) + 1);
|
|
if (blocking) __privateSet(this, _blocking_pending, __privateGet(this, _blocking_pending) + 1);
|
|
}
|
|
/**
|
|
* @param {boolean} blocking
|
|
* @param {boolean} skip - whether to skip updates (because this is triggered by a stale reaction)
|
|
*/
|
|
decrement(blocking, skip) {
|
|
__privateSet(this, _pending, __privateGet(this, _pending) - 1);
|
|
if (blocking) __privateSet(this, _blocking_pending, __privateGet(this, _blocking_pending) - 1);
|
|
if (__privateGet(this, _decrement_queued) || skip) return;
|
|
__privateSet(this, _decrement_queued, true);
|
|
queue_micro_task(() => {
|
|
__privateSet(this, _decrement_queued, false);
|
|
this.flush();
|
|
});
|
|
}
|
|
/**
|
|
* @param {Set<Effect>} dirty_effects
|
|
* @param {Set<Effect>} maybe_dirty_effects
|
|
*/
|
|
transfer_effects(dirty_effects, maybe_dirty_effects) {
|
|
for (const e of dirty_effects) {
|
|
__privateGet(this, _dirty_effects).add(e);
|
|
}
|
|
for (const e of maybe_dirty_effects) {
|
|
__privateGet(this, _maybe_dirty_effects).add(e);
|
|
}
|
|
dirty_effects.clear();
|
|
maybe_dirty_effects.clear();
|
|
}
|
|
/** @param {(batch: Batch) => void} fn */
|
|
oncommit(fn) {
|
|
__privateGet(this, _commit_callbacks).add(fn);
|
|
}
|
|
/** @param {(batch: Batch) => void} fn */
|
|
ondiscard(fn) {
|
|
__privateGet(this, _discard_callbacks).add(fn);
|
|
}
|
|
settled() {
|
|
var _a5;
|
|
return ((_a5 = __privateGet(this, _deferred)) != null ? _a5 : __privateSet(this, _deferred, deferred())).promise;
|
|
}
|
|
static ensure() {
|
|
if (current_batch === null) {
|
|
const batch = current_batch = new _Batch();
|
|
if (!is_processing) {
|
|
batches.add(current_batch);
|
|
if (!is_flushing_sync) {
|
|
queue_micro_task(() => {
|
|
if (current_batch !== batch) {
|
|
return;
|
|
}
|
|
batch.flush();
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return current_batch;
|
|
}
|
|
apply() {
|
|
if (!async_mode_flag || !this.is_fork && batches.size === 1) {
|
|
batch_values = null;
|
|
return;
|
|
}
|
|
batch_values = new Map(this.current);
|
|
for (const batch of batches) {
|
|
if (batch === this || batch.is_fork) continue;
|
|
for (const [source2, previous] of batch.previous) {
|
|
if (!batch_values.has(source2)) {
|
|
batch_values.set(source2, previous);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
*
|
|
* @param {Effect} effect
|
|
*/
|
|
schedule(effect2) {
|
|
var _a5;
|
|
last_scheduled_effect = effect2;
|
|
if (((_a5 = effect2.b) == null ? void 0 : _a5.is_pending) && (effect2.f & (EFFECT | RENDER_EFFECT | MANAGED_EFFECT)) !== 0 && (effect2.f & REACTION_RAN) === 0) {
|
|
effect2.b.defer_effect(effect2);
|
|
return;
|
|
}
|
|
var e = effect2;
|
|
while (e.parent !== null) {
|
|
e = e.parent;
|
|
var flags2 = e.f;
|
|
if (collected_effects !== null && e === active_effect) {
|
|
if (async_mode_flag) return;
|
|
if ((active_reaction === null || (active_reaction.f & DERIVED) === 0) && !legacy_is_updating_store) {
|
|
return;
|
|
}
|
|
}
|
|
if ((flags2 & (ROOT_EFFECT | BRANCH_EFFECT)) !== 0) {
|
|
if ((flags2 & CLEAN) === 0) {
|
|
return;
|
|
}
|
|
e.f ^= CLEAN;
|
|
}
|
|
}
|
|
__privateGet(this, _roots).push(e);
|
|
}
|
|
};
|
|
_commit_callbacks = new WeakMap();
|
|
_discard_callbacks = new WeakMap();
|
|
_pending = new WeakMap();
|
|
_blocking_pending = new WeakMap();
|
|
_deferred = new WeakMap();
|
|
_roots = new WeakMap();
|
|
_dirty_effects = new WeakMap();
|
|
_maybe_dirty_effects = new WeakMap();
|
|
_skipped_branches = new WeakMap();
|
|
_decrement_queued = new WeakMap();
|
|
_Batch_instances = new WeakSet();
|
|
is_deferred_fn = function() {
|
|
return this.is_fork || __privateGet(this, _blocking_pending) > 0;
|
|
};
|
|
process_fn = function() {
|
|
var _a5, _b3;
|
|
if (flush_count++ > 1e3) {
|
|
batches.delete(this);
|
|
infinite_loop_guard();
|
|
}
|
|
if (!__privateMethod(this, _Batch_instances, is_deferred_fn).call(this)) {
|
|
for (const e of __privateGet(this, _dirty_effects)) {
|
|
__privateGet(this, _maybe_dirty_effects).delete(e);
|
|
set_signal_status(e, DIRTY);
|
|
this.schedule(e);
|
|
}
|
|
for (const e of __privateGet(this, _maybe_dirty_effects)) {
|
|
set_signal_status(e, MAYBE_DIRTY);
|
|
this.schedule(e);
|
|
}
|
|
}
|
|
const roots = __privateGet(this, _roots);
|
|
__privateSet(this, _roots, []);
|
|
this.apply();
|
|
var effects = collected_effects = [];
|
|
var render_effects = [];
|
|
var updates = legacy_updates = [];
|
|
for (const root12 of roots) {
|
|
try {
|
|
__privateMethod(this, _Batch_instances, traverse_fn).call(this, root12, effects, render_effects);
|
|
} catch (e) {
|
|
reset_all(root12);
|
|
throw e;
|
|
}
|
|
}
|
|
current_batch = null;
|
|
if (updates.length > 0) {
|
|
var batch = _Batch.ensure();
|
|
for (const e of updates) {
|
|
batch.schedule(e);
|
|
}
|
|
}
|
|
collected_effects = null;
|
|
legacy_updates = null;
|
|
if (__privateMethod(this, _Batch_instances, is_deferred_fn).call(this)) {
|
|
__privateMethod(this, _Batch_instances, defer_effects_fn).call(this, render_effects);
|
|
__privateMethod(this, _Batch_instances, defer_effects_fn).call(this, effects);
|
|
for (const [e, t] of __privateGet(this, _skipped_branches)) {
|
|
reset_branch(e, t);
|
|
}
|
|
} else {
|
|
if (__privateGet(this, _pending) === 0) {
|
|
batches.delete(this);
|
|
}
|
|
__privateGet(this, _dirty_effects).clear();
|
|
__privateGet(this, _maybe_dirty_effects).clear();
|
|
for (const fn of __privateGet(this, _commit_callbacks)) fn(this);
|
|
__privateGet(this, _commit_callbacks).clear();
|
|
previous_batch = this;
|
|
flush_queued_effects(render_effects);
|
|
flush_queued_effects(effects);
|
|
previous_batch = null;
|
|
(_a5 = __privateGet(this, _deferred)) == null ? void 0 : _a5.resolve();
|
|
}
|
|
var next_batch = (
|
|
/** @type {Batch | null} */
|
|
/** @type {unknown} */
|
|
current_batch
|
|
);
|
|
if (__privateGet(this, _roots).length > 0) {
|
|
const batch2 = next_batch != null ? next_batch : next_batch = this;
|
|
__privateGet(batch2, _roots).push(...__privateGet(this, _roots).filter((r2) => !__privateGet(batch2, _roots).includes(r2)));
|
|
}
|
|
if (next_batch !== null) {
|
|
batches.add(next_batch);
|
|
if (dev_fallback_default) {
|
|
for (const source2 of this.current.keys()) {
|
|
source_stacks.add(source2);
|
|
}
|
|
}
|
|
__privateMethod(_b3 = next_batch, _Batch_instances, process_fn).call(_b3);
|
|
}
|
|
if (!batches.has(this)) {
|
|
__privateMethod(this, _Batch_instances, commit_fn).call(this);
|
|
}
|
|
};
|
|
/**
|
|
* Traverse the effect tree, executing effects or stashing
|
|
* them for later execution as appropriate
|
|
* @param {Effect} root
|
|
* @param {Effect[]} effects
|
|
* @param {Effect[]} render_effects
|
|
*/
|
|
traverse_fn = function(root12, effects, render_effects) {
|
|
root12.f ^= CLEAN;
|
|
var effect2 = root12.first;
|
|
while (effect2 !== null) {
|
|
var flags2 = effect2.f;
|
|
var is_branch = (flags2 & (BRANCH_EFFECT | ROOT_EFFECT)) !== 0;
|
|
var is_skippable_branch = is_branch && (flags2 & CLEAN) !== 0;
|
|
var skip = is_skippable_branch || (flags2 & INERT) !== 0 || __privateGet(this, _skipped_branches).has(effect2);
|
|
if (!skip && effect2.fn !== null) {
|
|
if (is_branch) {
|
|
effect2.f ^= CLEAN;
|
|
} else if ((flags2 & EFFECT) !== 0) {
|
|
effects.push(effect2);
|
|
} else if (async_mode_flag && (flags2 & (RENDER_EFFECT | MANAGED_EFFECT)) !== 0) {
|
|
render_effects.push(effect2);
|
|
} else if (is_dirty(effect2)) {
|
|
if ((flags2 & BLOCK_EFFECT) !== 0) __privateGet(this, _maybe_dirty_effects).add(effect2);
|
|
update_effect(effect2);
|
|
}
|
|
var child2 = effect2.first;
|
|
if (child2 !== null) {
|
|
effect2 = child2;
|
|
continue;
|
|
}
|
|
}
|
|
while (effect2 !== null) {
|
|
var next2 = effect2.next;
|
|
if (next2 !== null) {
|
|
effect2 = next2;
|
|
break;
|
|
}
|
|
effect2 = effect2.parent;
|
|
}
|
|
}
|
|
};
|
|
/**
|
|
* @param {Effect[]} effects
|
|
*/
|
|
defer_effects_fn = function(effects) {
|
|
for (var i = 0; i < effects.length; i += 1) {
|
|
defer_effect(effects[i], __privateGet(this, _dirty_effects), __privateGet(this, _maybe_dirty_effects));
|
|
}
|
|
};
|
|
commit_fn = function() {
|
|
var _a5;
|
|
for (const batch of batches) {
|
|
var is_earlier = batch.id < this.id;
|
|
var sources = [];
|
|
for (const [source3, value] of this.current) {
|
|
if (batch.current.has(source3)) {
|
|
if (is_earlier && value !== batch.current.get(source3)) {
|
|
batch.current.set(source3, value);
|
|
} else {
|
|
continue;
|
|
}
|
|
}
|
|
sources.push(source3);
|
|
}
|
|
if (sources.length === 0) {
|
|
continue;
|
|
}
|
|
var others = [...batch.current.keys()].filter((s) => !this.current.has(s));
|
|
if (others.length > 0) {
|
|
if (dev_fallback_default) {
|
|
invariant(__privateGet(batch, _roots).length === 0, "Batch has scheduled roots");
|
|
}
|
|
batch.activate();
|
|
var marked = /* @__PURE__ */ new Set();
|
|
var checked = /* @__PURE__ */ new Map();
|
|
for (var source2 of sources) {
|
|
mark_effects(source2, others, marked, checked);
|
|
}
|
|
if (__privateGet(batch, _roots).length > 0) {
|
|
batch.apply();
|
|
for (var root12 of __privateGet(batch, _roots)) {
|
|
__privateMethod(_a5 = batch, _Batch_instances, traverse_fn).call(_a5, root12, [], []);
|
|
}
|
|
__privateSet(batch, _roots, []);
|
|
}
|
|
batch.deactivate();
|
|
}
|
|
}
|
|
};
|
|
var Batch = _Batch;
|
|
function flushSync(fn) {
|
|
var was_flushing_sync = is_flushing_sync;
|
|
is_flushing_sync = true;
|
|
try {
|
|
var result;
|
|
if (fn) {
|
|
if (current_batch !== null && !current_batch.is_fork) {
|
|
current_batch.flush();
|
|
}
|
|
result = fn();
|
|
}
|
|
while (true) {
|
|
flush_tasks();
|
|
if (current_batch === null) {
|
|
return (
|
|
/** @type {T} */
|
|
result
|
|
);
|
|
}
|
|
current_batch.flush();
|
|
}
|
|
} finally {
|
|
is_flushing_sync = was_flushing_sync;
|
|
}
|
|
}
|
|
function infinite_loop_guard() {
|
|
var _a5;
|
|
if (dev_fallback_default) {
|
|
var updates = /* @__PURE__ */ new Map();
|
|
for (
|
|
const source2 of
|
|
/** @type {Batch} */
|
|
current_batch.current.keys()
|
|
) {
|
|
for (const [stack2, update2] of (_a5 = source2.updated) != null ? _a5 : []) {
|
|
var entry = updates.get(stack2);
|
|
if (!entry) {
|
|
entry = { error: update2.error, count: 0 };
|
|
updates.set(stack2, entry);
|
|
}
|
|
entry.count += update2.count;
|
|
}
|
|
}
|
|
for (const update2 of updates.values()) {
|
|
if (update2.error) {
|
|
console.error(update2.error);
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
effect_update_depth_exceeded();
|
|
} catch (error) {
|
|
if (dev_fallback_default) {
|
|
define_property(error, "stack", { value: "" });
|
|
}
|
|
invoke_error_boundary(error, last_scheduled_effect);
|
|
}
|
|
}
|
|
var eager_block_effects = null;
|
|
function flush_queued_effects(effects) {
|
|
var length = effects.length;
|
|
if (length === 0) return;
|
|
var i = 0;
|
|
while (i < length) {
|
|
var effect2 = effects[i++];
|
|
if ((effect2.f & (DESTROYED | INERT)) === 0 && is_dirty(effect2)) {
|
|
eager_block_effects = /* @__PURE__ */ new Set();
|
|
update_effect(effect2);
|
|
if (effect2.deps === null && effect2.first === null && effect2.nodes === null && effect2.teardown === null && effect2.ac === null) {
|
|
unlink_effect(effect2);
|
|
}
|
|
if ((eager_block_effects == null ? void 0 : eager_block_effects.size) > 0) {
|
|
old_values.clear();
|
|
for (const e of eager_block_effects) {
|
|
if ((e.f & (DESTROYED | INERT)) !== 0) continue;
|
|
const ordered_effects = [e];
|
|
let ancestor = e.parent;
|
|
while (ancestor !== null) {
|
|
if (eager_block_effects.has(ancestor)) {
|
|
eager_block_effects.delete(ancestor);
|
|
ordered_effects.push(ancestor);
|
|
}
|
|
ancestor = ancestor.parent;
|
|
}
|
|
for (let j = ordered_effects.length - 1; j >= 0; j--) {
|
|
const e2 = ordered_effects[j];
|
|
if ((e2.f & (DESTROYED | INERT)) !== 0) continue;
|
|
update_effect(e2);
|
|
}
|
|
}
|
|
eager_block_effects.clear();
|
|
}
|
|
}
|
|
}
|
|
eager_block_effects = null;
|
|
}
|
|
function mark_effects(value, sources, marked, checked) {
|
|
if (marked.has(value)) return;
|
|
marked.add(value);
|
|
if (value.reactions !== null) {
|
|
for (const reaction of value.reactions) {
|
|
const flags2 = reaction.f;
|
|
if ((flags2 & DERIVED) !== 0) {
|
|
mark_effects(
|
|
/** @type {Derived} */
|
|
reaction,
|
|
sources,
|
|
marked,
|
|
checked
|
|
);
|
|
} else if ((flags2 & (ASYNC | BLOCK_EFFECT)) !== 0 && (flags2 & DIRTY) === 0 && depends_on(reaction, sources, checked)) {
|
|
set_signal_status(reaction, DIRTY);
|
|
schedule_effect(
|
|
/** @type {Effect} */
|
|
reaction
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function depends_on(reaction, sources, checked) {
|
|
const depends = checked.get(reaction);
|
|
if (depends !== void 0) return depends;
|
|
if (reaction.deps !== null) {
|
|
for (const dep of reaction.deps) {
|
|
if (includes.call(sources, dep)) {
|
|
return true;
|
|
}
|
|
if ((dep.f & DERIVED) !== 0 && depends_on(
|
|
/** @type {Derived} */
|
|
dep,
|
|
sources,
|
|
checked
|
|
)) {
|
|
checked.set(
|
|
/** @type {Derived} */
|
|
dep,
|
|
true
|
|
);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
checked.set(reaction, false);
|
|
return false;
|
|
}
|
|
function schedule_effect(effect2) {
|
|
current_batch.schedule(effect2);
|
|
}
|
|
function reset_branch(effect2, tracked) {
|
|
if ((effect2.f & BRANCH_EFFECT) !== 0 && (effect2.f & CLEAN) !== 0) {
|
|
return;
|
|
}
|
|
if ((effect2.f & DIRTY) !== 0) {
|
|
tracked.d.push(effect2);
|
|
} else if ((effect2.f & MAYBE_DIRTY) !== 0) {
|
|
tracked.m.push(effect2);
|
|
}
|
|
set_signal_status(effect2, CLEAN);
|
|
var e = effect2.first;
|
|
while (e !== null) {
|
|
reset_branch(e, tracked);
|
|
e = e.next;
|
|
}
|
|
}
|
|
function reset_all(effect2) {
|
|
set_signal_status(effect2, CLEAN);
|
|
var e = effect2.first;
|
|
while (e !== null) {
|
|
reset_all(e);
|
|
e = e.next;
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/reactivity/create-subscriber.js
|
|
function createSubscriber(start) {
|
|
let subscribers = 0;
|
|
let version = source(0);
|
|
let stop;
|
|
if (dev_fallback_default) {
|
|
tag(version, "createSubscriber version");
|
|
}
|
|
return () => {
|
|
if (effect_tracking()) {
|
|
get(version);
|
|
render_effect(() => {
|
|
if (subscribers === 0) {
|
|
stop = untrack(() => start(() => increment(version)));
|
|
}
|
|
subscribers += 1;
|
|
return () => {
|
|
queue_micro_task(() => {
|
|
subscribers -= 1;
|
|
if (subscribers === 0) {
|
|
stop == null ? void 0 : stop();
|
|
stop = void 0;
|
|
increment(version);
|
|
}
|
|
});
|
|
};
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/boundary.js
|
|
var flags = EFFECT_TRANSPARENT | EFFECT_PRESERVED;
|
|
function boundary(node, props, children, transform_error) {
|
|
new Boundary(node, props, children, transform_error);
|
|
}
|
|
var _anchor, _hydrate_open, _props, _children, _effect, _main_effect, _pending_effect, _failed_effect, _offscreen_fragment, _local_pending_count, _pending_count, _pending_count_update_queued, _dirty_effects2, _maybe_dirty_effects2, _effect_pending, _effect_pending_subscriber, _Boundary_instances, hydrate_resolved_content_fn, hydrate_failed_content_fn, hydrate_pending_content_fn, render_fn, resolve_fn, run_fn, update_pending_count_fn;
|
|
var Boundary = class {
|
|
/**
|
|
* @param {TemplateNode} node
|
|
* @param {BoundaryProps} props
|
|
* @param {((anchor: Node) => void)} children
|
|
* @param {((error: unknown) => unknown) | undefined} [transform_error]
|
|
*/
|
|
constructor(node, props, children, transform_error) {
|
|
__privateAdd(this, _Boundary_instances);
|
|
/** @type {Boundary | null} */
|
|
__publicField(this, "parent");
|
|
__publicField(this, "is_pending", false);
|
|
/**
|
|
* API-level transformError transform function. Transforms errors before they reach the `failed` snippet.
|
|
* Inherited from parent boundary, or defaults to identity.
|
|
* @type {(error: unknown) => unknown}
|
|
*/
|
|
__publicField(this, "transform_error");
|
|
/** @type {TemplateNode} */
|
|
__privateAdd(this, _anchor);
|
|
/** @type {TemplateNode | null} */
|
|
__privateAdd(this, _hydrate_open, hydrating ? hydrate_node : null);
|
|
/** @type {BoundaryProps} */
|
|
__privateAdd(this, _props);
|
|
/** @type {((anchor: Node) => void)} */
|
|
__privateAdd(this, _children);
|
|
/** @type {Effect} */
|
|
__privateAdd(this, _effect);
|
|
/** @type {Effect | null} */
|
|
__privateAdd(this, _main_effect, null);
|
|
/** @type {Effect | null} */
|
|
__privateAdd(this, _pending_effect, null);
|
|
/** @type {Effect | null} */
|
|
__privateAdd(this, _failed_effect, null);
|
|
/** @type {DocumentFragment | null} */
|
|
__privateAdd(this, _offscreen_fragment, null);
|
|
__privateAdd(this, _local_pending_count, 0);
|
|
__privateAdd(this, _pending_count, 0);
|
|
__privateAdd(this, _pending_count_update_queued, false);
|
|
/** @type {Set<Effect>} */
|
|
__privateAdd(this, _dirty_effects2, /* @__PURE__ */ new Set());
|
|
/** @type {Set<Effect>} */
|
|
__privateAdd(this, _maybe_dirty_effects2, /* @__PURE__ */ new Set());
|
|
/**
|
|
* A source containing the number of pending async deriveds/expressions.
|
|
* Only created if `$effect.pending()` is used inside the boundary,
|
|
* otherwise updating the source results in needless `Batch.ensure()`
|
|
* calls followed by no-op flushes
|
|
* @type {Source<number> | null}
|
|
*/
|
|
__privateAdd(this, _effect_pending, null);
|
|
__privateAdd(this, _effect_pending_subscriber, createSubscriber(() => {
|
|
__privateSet(this, _effect_pending, source(__privateGet(this, _local_pending_count)));
|
|
if (dev_fallback_default) {
|
|
tag(__privateGet(this, _effect_pending), "$effect.pending()");
|
|
}
|
|
return () => {
|
|
__privateSet(this, _effect_pending, null);
|
|
};
|
|
}));
|
|
var _a5, _b3;
|
|
__privateSet(this, _anchor, node);
|
|
__privateSet(this, _props, props);
|
|
__privateSet(this, _children, (anchor) => {
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
effect2.b = this;
|
|
effect2.f |= BOUNDARY_EFFECT;
|
|
children(anchor);
|
|
});
|
|
this.parent = /** @type {Effect} */
|
|
active_effect.b;
|
|
this.transform_error = (_b3 = transform_error != null ? transform_error : (_a5 = this.parent) == null ? void 0 : _a5.transform_error) != null ? _b3 : ((e) => e);
|
|
__privateSet(this, _effect, block(() => {
|
|
if (hydrating) {
|
|
const comment2 = (
|
|
/** @type {Comment} */
|
|
__privateGet(this, _hydrate_open)
|
|
);
|
|
hydrate_next();
|
|
const server_rendered_pending = comment2.data === HYDRATION_START_ELSE;
|
|
const server_rendered_failed = comment2.data.startsWith(HYDRATION_START_FAILED);
|
|
if (server_rendered_failed) {
|
|
const serialized_error = JSON.parse(comment2.data.slice(HYDRATION_START_FAILED.length));
|
|
__privateMethod(this, _Boundary_instances, hydrate_failed_content_fn).call(this, serialized_error);
|
|
} else if (server_rendered_pending) {
|
|
__privateMethod(this, _Boundary_instances, hydrate_pending_content_fn).call(this);
|
|
} else {
|
|
__privateMethod(this, _Boundary_instances, hydrate_resolved_content_fn).call(this);
|
|
}
|
|
} else {
|
|
__privateMethod(this, _Boundary_instances, render_fn).call(this);
|
|
}
|
|
}, flags));
|
|
if (hydrating) {
|
|
__privateSet(this, _anchor, hydrate_node);
|
|
}
|
|
}
|
|
/**
|
|
* Defer an effect inside a pending boundary until the boundary resolves
|
|
* @param {Effect} effect
|
|
*/
|
|
defer_effect(effect2) {
|
|
defer_effect(effect2, __privateGet(this, _dirty_effects2), __privateGet(this, _maybe_dirty_effects2));
|
|
}
|
|
/**
|
|
* Returns `false` if the effect exists inside a boundary whose pending snippet is shown
|
|
* @returns {boolean}
|
|
*/
|
|
is_rendered() {
|
|
return !this.is_pending && (!this.parent || this.parent.is_rendered());
|
|
}
|
|
has_pending_snippet() {
|
|
return !!__privateGet(this, _props).pending;
|
|
}
|
|
/**
|
|
* Update the source that powers `$effect.pending()` inside this boundary,
|
|
* and controls when the current `pending` snippet (if any) is removed.
|
|
* Do not call from inside the class
|
|
* @param {1 | -1} d
|
|
* @param {Batch} batch
|
|
*/
|
|
update_pending_count(d, batch) {
|
|
__privateMethod(this, _Boundary_instances, update_pending_count_fn).call(this, d, batch);
|
|
__privateSet(this, _local_pending_count, __privateGet(this, _local_pending_count) + d);
|
|
if (!__privateGet(this, _effect_pending) || __privateGet(this, _pending_count_update_queued)) return;
|
|
__privateSet(this, _pending_count_update_queued, true);
|
|
queue_micro_task(() => {
|
|
__privateSet(this, _pending_count_update_queued, false);
|
|
if (__privateGet(this, _effect_pending)) {
|
|
internal_set(__privateGet(this, _effect_pending), __privateGet(this, _local_pending_count));
|
|
}
|
|
});
|
|
}
|
|
get_effect_pending() {
|
|
__privateGet(this, _effect_pending_subscriber).call(this);
|
|
return get(
|
|
/** @type {Source<number>} */
|
|
__privateGet(this, _effect_pending)
|
|
);
|
|
}
|
|
/** @param {unknown} error */
|
|
error(error) {
|
|
var onerror = __privateGet(this, _props).onerror;
|
|
let failed = __privateGet(this, _props).failed;
|
|
if (!onerror && !failed) {
|
|
throw error;
|
|
}
|
|
if (__privateGet(this, _main_effect)) {
|
|
destroy_effect(__privateGet(this, _main_effect));
|
|
__privateSet(this, _main_effect, null);
|
|
}
|
|
if (__privateGet(this, _pending_effect)) {
|
|
destroy_effect(__privateGet(this, _pending_effect));
|
|
__privateSet(this, _pending_effect, null);
|
|
}
|
|
if (__privateGet(this, _failed_effect)) {
|
|
destroy_effect(__privateGet(this, _failed_effect));
|
|
__privateSet(this, _failed_effect, null);
|
|
}
|
|
if (hydrating) {
|
|
set_hydrate_node(
|
|
/** @type {TemplateNode} */
|
|
__privateGet(this, _hydrate_open)
|
|
);
|
|
next();
|
|
set_hydrate_node(skip_nodes());
|
|
}
|
|
var did_reset = false;
|
|
var calling_on_error = false;
|
|
const reset2 = () => {
|
|
if (did_reset) {
|
|
svelte_boundary_reset_noop();
|
|
return;
|
|
}
|
|
did_reset = true;
|
|
if (calling_on_error) {
|
|
svelte_boundary_reset_onerror();
|
|
}
|
|
if (__privateGet(this, _failed_effect) !== null) {
|
|
pause_effect(__privateGet(this, _failed_effect), () => {
|
|
__privateSet(this, _failed_effect, null);
|
|
});
|
|
}
|
|
__privateMethod(this, _Boundary_instances, run_fn).call(this, () => {
|
|
__privateMethod(this, _Boundary_instances, render_fn).call(this);
|
|
});
|
|
};
|
|
const handle_error_result = (transformed_error) => {
|
|
try {
|
|
calling_on_error = true;
|
|
onerror == null ? void 0 : onerror(transformed_error, reset2);
|
|
calling_on_error = false;
|
|
} catch (error2) {
|
|
invoke_error_boundary(error2, __privateGet(this, _effect) && __privateGet(this, _effect).parent);
|
|
}
|
|
if (failed) {
|
|
__privateSet(this, _failed_effect, __privateMethod(this, _Boundary_instances, run_fn).call(this, () => {
|
|
try {
|
|
return branch(() => {
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
effect2.b = this;
|
|
effect2.f |= BOUNDARY_EFFECT;
|
|
failed(
|
|
__privateGet(this, _anchor),
|
|
() => transformed_error,
|
|
() => reset2
|
|
);
|
|
});
|
|
} catch (error2) {
|
|
invoke_error_boundary(
|
|
error2,
|
|
/** @type {Effect} */
|
|
__privateGet(this, _effect).parent
|
|
);
|
|
return null;
|
|
}
|
|
}));
|
|
}
|
|
};
|
|
queue_micro_task(() => {
|
|
var result;
|
|
try {
|
|
result = this.transform_error(error);
|
|
} catch (e) {
|
|
invoke_error_boundary(e, __privateGet(this, _effect) && __privateGet(this, _effect).parent);
|
|
return;
|
|
}
|
|
if (result !== null && typeof result === "object" && typeof /** @type {any} */
|
|
result.then === "function") {
|
|
result.then(
|
|
handle_error_result,
|
|
/** @param {unknown} e */
|
|
(e) => invoke_error_boundary(e, __privateGet(this, _effect) && __privateGet(this, _effect).parent)
|
|
);
|
|
} else {
|
|
handle_error_result(result);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
_anchor = new WeakMap();
|
|
_hydrate_open = new WeakMap();
|
|
_props = new WeakMap();
|
|
_children = new WeakMap();
|
|
_effect = new WeakMap();
|
|
_main_effect = new WeakMap();
|
|
_pending_effect = new WeakMap();
|
|
_failed_effect = new WeakMap();
|
|
_offscreen_fragment = new WeakMap();
|
|
_local_pending_count = new WeakMap();
|
|
_pending_count = new WeakMap();
|
|
_pending_count_update_queued = new WeakMap();
|
|
_dirty_effects2 = new WeakMap();
|
|
_maybe_dirty_effects2 = new WeakMap();
|
|
_effect_pending = new WeakMap();
|
|
_effect_pending_subscriber = new WeakMap();
|
|
_Boundary_instances = new WeakSet();
|
|
hydrate_resolved_content_fn = function() {
|
|
try {
|
|
__privateSet(this, _main_effect, branch(() => __privateGet(this, _children).call(this, __privateGet(this, _anchor))));
|
|
} catch (error) {
|
|
this.error(error);
|
|
}
|
|
};
|
|
/**
|
|
* @param {unknown} error The deserialized error from the server's hydration comment
|
|
*/
|
|
hydrate_failed_content_fn = function(error) {
|
|
const failed = __privateGet(this, _props).failed;
|
|
if (!failed) return;
|
|
__privateSet(this, _failed_effect, branch(() => {
|
|
failed(
|
|
__privateGet(this, _anchor),
|
|
() => error,
|
|
() => () => {
|
|
}
|
|
);
|
|
}));
|
|
};
|
|
hydrate_pending_content_fn = function() {
|
|
const pending2 = __privateGet(this, _props).pending;
|
|
if (!pending2) return;
|
|
this.is_pending = true;
|
|
__privateSet(this, _pending_effect, branch(() => pending2(__privateGet(this, _anchor))));
|
|
queue_micro_task(() => {
|
|
var fragment = __privateSet(this, _offscreen_fragment, document.createDocumentFragment());
|
|
var anchor = create_text();
|
|
fragment.append(anchor);
|
|
__privateSet(this, _main_effect, __privateMethod(this, _Boundary_instances, run_fn).call(this, () => {
|
|
return branch(() => __privateGet(this, _children).call(this, anchor));
|
|
}));
|
|
if (__privateGet(this, _pending_count) === 0) {
|
|
__privateGet(this, _anchor).before(fragment);
|
|
__privateSet(this, _offscreen_fragment, null);
|
|
pause_effect(
|
|
/** @type {Effect} */
|
|
__privateGet(this, _pending_effect),
|
|
() => {
|
|
__privateSet(this, _pending_effect, null);
|
|
}
|
|
);
|
|
__privateMethod(this, _Boundary_instances, resolve_fn).call(
|
|
this,
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
}
|
|
});
|
|
};
|
|
render_fn = function() {
|
|
try {
|
|
this.is_pending = this.has_pending_snippet();
|
|
__privateSet(this, _pending_count, 0);
|
|
__privateSet(this, _local_pending_count, 0);
|
|
__privateSet(this, _main_effect, branch(() => {
|
|
__privateGet(this, _children).call(this, __privateGet(this, _anchor));
|
|
}));
|
|
if (__privateGet(this, _pending_count) > 0) {
|
|
var fragment = __privateSet(this, _offscreen_fragment, document.createDocumentFragment());
|
|
move_effect(__privateGet(this, _main_effect), fragment);
|
|
const pending2 = (
|
|
/** @type {(anchor: Node) => void} */
|
|
__privateGet(this, _props).pending
|
|
);
|
|
__privateSet(this, _pending_effect, branch(() => pending2(__privateGet(this, _anchor))));
|
|
} else {
|
|
__privateMethod(this, _Boundary_instances, resolve_fn).call(
|
|
this,
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
}
|
|
} catch (error) {
|
|
this.error(error);
|
|
}
|
|
};
|
|
/**
|
|
* @param {Batch} batch
|
|
*/
|
|
resolve_fn = function(batch) {
|
|
this.is_pending = false;
|
|
batch.transfer_effects(__privateGet(this, _dirty_effects2), __privateGet(this, _maybe_dirty_effects2));
|
|
};
|
|
/**
|
|
* @template T
|
|
* @param {() => T} fn
|
|
*/
|
|
run_fn = function(fn) {
|
|
var previous_effect = active_effect;
|
|
var previous_reaction = active_reaction;
|
|
var previous_ctx = component_context;
|
|
set_active_effect(__privateGet(this, _effect));
|
|
set_active_reaction(__privateGet(this, _effect));
|
|
set_component_context(__privateGet(this, _effect).ctx);
|
|
try {
|
|
Batch.ensure();
|
|
return fn();
|
|
} catch (e) {
|
|
handle_error(e);
|
|
return null;
|
|
} finally {
|
|
set_active_effect(previous_effect);
|
|
set_active_reaction(previous_reaction);
|
|
set_component_context(previous_ctx);
|
|
}
|
|
};
|
|
/**
|
|
* Updates the pending count associated with the currently visible pending snippet,
|
|
* if any, such that we can replace the snippet with content once work is done
|
|
* @param {1 | -1} d
|
|
* @param {Batch} batch
|
|
*/
|
|
update_pending_count_fn = function(d, batch) {
|
|
var _a5;
|
|
if (!this.has_pending_snippet()) {
|
|
if (this.parent) {
|
|
__privateMethod(_a5 = this.parent, _Boundary_instances, update_pending_count_fn).call(_a5, d, batch);
|
|
}
|
|
return;
|
|
}
|
|
__privateSet(this, _pending_count, __privateGet(this, _pending_count) + d);
|
|
if (__privateGet(this, _pending_count) === 0) {
|
|
__privateMethod(this, _Boundary_instances, resolve_fn).call(this, batch);
|
|
if (__privateGet(this, _pending_effect)) {
|
|
pause_effect(__privateGet(this, _pending_effect), () => {
|
|
__privateSet(this, _pending_effect, null);
|
|
});
|
|
}
|
|
if (__privateGet(this, _offscreen_fragment)) {
|
|
__privateGet(this, _anchor).before(__privateGet(this, _offscreen_fragment));
|
|
__privateSet(this, _offscreen_fragment, null);
|
|
}
|
|
}
|
|
};
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/async.js
|
|
function flatten(blockers, sync, async2, fn) {
|
|
const d = is_runes() ? derived2 : derived_safe_equal;
|
|
var pending2 = blockers.filter((b) => !b.settled);
|
|
if (async2.length === 0 && pending2.length === 0) {
|
|
fn(sync.map(d));
|
|
return;
|
|
}
|
|
var parent = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
var restore = capture();
|
|
var blocker_promise = pending2.length === 1 ? pending2[0].promise : pending2.length > 1 ? Promise.all(pending2.map((b) => b.promise)) : null;
|
|
function finish(values) {
|
|
restore();
|
|
try {
|
|
fn(values);
|
|
} catch (error) {
|
|
if ((parent.f & DESTROYED) === 0) {
|
|
invoke_error_boundary(error, parent);
|
|
}
|
|
}
|
|
unset_context();
|
|
}
|
|
if (async2.length === 0) {
|
|
blocker_promise.then(() => finish(sync.map(d)));
|
|
return;
|
|
}
|
|
var decrement_pending = increment_pending();
|
|
function run3() {
|
|
Promise.all(async2.map((expression) => async_derived(expression))).then((result) => finish([...sync.map(d), ...result])).catch((error) => invoke_error_boundary(error, parent)).finally(() => decrement_pending());
|
|
}
|
|
if (blocker_promise) {
|
|
blocker_promise.then(() => {
|
|
restore();
|
|
run3();
|
|
unset_context();
|
|
});
|
|
} else {
|
|
run3();
|
|
}
|
|
}
|
|
function capture() {
|
|
var previous_effect = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
var previous_reaction = active_reaction;
|
|
var previous_component_context = component_context;
|
|
var previous_batch2 = (
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
if (dev_fallback_default) {
|
|
var previous_dev_stack = dev_stack;
|
|
}
|
|
return function restore(activate_batch = true) {
|
|
set_active_effect(previous_effect);
|
|
set_active_reaction(previous_reaction);
|
|
set_component_context(previous_component_context);
|
|
if (activate_batch && (previous_effect.f & DESTROYED) === 0) {
|
|
previous_batch2 == null ? void 0 : previous_batch2.activate();
|
|
previous_batch2 == null ? void 0 : previous_batch2.apply();
|
|
}
|
|
if (dev_fallback_default) {
|
|
set_from_async_derived(null);
|
|
set_dev_stack(previous_dev_stack);
|
|
}
|
|
};
|
|
}
|
|
function unset_context(deactivate_batch = true) {
|
|
var _a5;
|
|
set_active_effect(null);
|
|
set_active_reaction(null);
|
|
set_component_context(null);
|
|
if (deactivate_batch) (_a5 = current_batch) == null ? void 0 : _a5.deactivate();
|
|
if (dev_fallback_default) {
|
|
set_from_async_derived(null);
|
|
set_dev_stack(null);
|
|
}
|
|
}
|
|
function increment_pending() {
|
|
var boundary2 = (
|
|
/** @type {Boundary} */
|
|
/** @type {Effect} */
|
|
active_effect.b
|
|
);
|
|
var batch = (
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
var blocking = boundary2.is_rendered();
|
|
boundary2.update_pending_count(1, batch);
|
|
batch.increment(blocking);
|
|
return (skip = false) => {
|
|
boundary2.update_pending_count(-1, batch);
|
|
batch.decrement(blocking, skip);
|
|
};
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/deriveds.js
|
|
var current_async_effect = null;
|
|
function set_from_async_derived(v) {
|
|
current_async_effect = v;
|
|
}
|
|
var recent_async_deriveds = /* @__PURE__ */ new Set();
|
|
// @__NO_SIDE_EFFECTS__
|
|
function derived2(fn) {
|
|
var flags2 = DERIVED | DIRTY;
|
|
var parent_derived = active_reaction !== null && (active_reaction.f & DERIVED) !== 0 ? (
|
|
/** @type {Derived} */
|
|
active_reaction
|
|
) : null;
|
|
if (active_effect !== null) {
|
|
active_effect.f |= EFFECT_PRESERVED;
|
|
}
|
|
const signal = {
|
|
ctx: component_context,
|
|
deps: null,
|
|
effects: null,
|
|
equals,
|
|
f: flags2,
|
|
fn,
|
|
reactions: null,
|
|
rv: 0,
|
|
v: (
|
|
/** @type {V} */
|
|
UNINITIALIZED
|
|
),
|
|
wv: 0,
|
|
parent: parent_derived != null ? parent_derived : active_effect,
|
|
ac: null
|
|
};
|
|
if (dev_fallback_default && tracing_mode_flag) {
|
|
signal.created = get_error("created at");
|
|
}
|
|
return signal;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function async_derived(fn, label, location) {
|
|
let parent = (
|
|
/** @type {Effect | null} */
|
|
active_effect
|
|
);
|
|
if (parent === null) {
|
|
async_derived_orphan();
|
|
}
|
|
var promise = (
|
|
/** @type {Promise<V>} */
|
|
/** @type {unknown} */
|
|
void 0
|
|
);
|
|
var signal = source(
|
|
/** @type {V} */
|
|
UNINITIALIZED
|
|
);
|
|
if (dev_fallback_default) signal.label = label;
|
|
var should_suspend = !active_reaction;
|
|
var deferreds = /* @__PURE__ */ new Map();
|
|
async_effect(() => {
|
|
var _a5;
|
|
if (dev_fallback_default) current_async_effect = active_effect;
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
var d = deferred();
|
|
promise = d.promise;
|
|
try {
|
|
Promise.resolve(fn()).then(d.resolve, d.reject).finally(unset_context);
|
|
} catch (error) {
|
|
d.reject(error);
|
|
unset_context();
|
|
}
|
|
if (dev_fallback_default) current_async_effect = null;
|
|
var batch = (
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
if (should_suspend) {
|
|
if ((effect2.f & REACTION_RAN) !== 0) {
|
|
var decrement_pending = increment_pending();
|
|
}
|
|
if (
|
|
/** @type {Boundary} */
|
|
parent.b.is_rendered()
|
|
) {
|
|
(_a5 = deferreds.get(batch)) == null ? void 0 : _a5.reject(STALE_REACTION);
|
|
deferreds.delete(batch);
|
|
} else {
|
|
for (const d2 of deferreds.values()) {
|
|
d2.reject(STALE_REACTION);
|
|
}
|
|
deferreds.clear();
|
|
}
|
|
deferreds.set(batch, d);
|
|
}
|
|
const handler = (value, error = void 0) => {
|
|
if (dev_fallback_default) current_async_effect = null;
|
|
if (decrement_pending) {
|
|
var skip = error === STALE_REACTION;
|
|
decrement_pending(skip);
|
|
}
|
|
if (error === STALE_REACTION || (effect2.f & DESTROYED) !== 0) {
|
|
return;
|
|
}
|
|
batch.activate();
|
|
if (error) {
|
|
signal.f |= ERROR_VALUE;
|
|
internal_set(signal, error);
|
|
} else {
|
|
if ((signal.f & ERROR_VALUE) !== 0) {
|
|
signal.f ^= ERROR_VALUE;
|
|
}
|
|
internal_set(signal, value);
|
|
for (const [b, d2] of deferreds) {
|
|
deferreds.delete(b);
|
|
if (b === batch) break;
|
|
d2.reject(STALE_REACTION);
|
|
}
|
|
if (dev_fallback_default && location !== void 0) {
|
|
recent_async_deriveds.add(signal);
|
|
setTimeout(() => {
|
|
if (recent_async_deriveds.has(signal)) {
|
|
await_waterfall(
|
|
/** @type {string} */
|
|
signal.label,
|
|
location
|
|
);
|
|
recent_async_deriveds.delete(signal);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
batch.deactivate();
|
|
};
|
|
d.promise.then(handler, (e) => handler(null, e || "unknown"));
|
|
});
|
|
teardown(() => {
|
|
for (const d of deferreds.values()) {
|
|
d.reject(STALE_REACTION);
|
|
}
|
|
});
|
|
if (dev_fallback_default) {
|
|
signal.f |= ASYNC;
|
|
}
|
|
return new Promise((fulfil) => {
|
|
function next2(p) {
|
|
function go() {
|
|
if (p === promise) {
|
|
fulfil(signal);
|
|
} else {
|
|
next2(promise);
|
|
}
|
|
}
|
|
p.then(go, go);
|
|
}
|
|
next2(promise);
|
|
});
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function user_derived(fn) {
|
|
const d = /* @__PURE__ */ derived2(fn);
|
|
if (!async_mode_flag) push_reaction_value(d);
|
|
return d;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function derived_safe_equal(fn) {
|
|
const signal = /* @__PURE__ */ derived2(fn);
|
|
signal.equals = safe_equals;
|
|
return signal;
|
|
}
|
|
function destroy_derived_effects(derived3) {
|
|
var effects = derived3.effects;
|
|
if (effects !== null) {
|
|
derived3.effects = null;
|
|
for (var i = 0; i < effects.length; i += 1) {
|
|
destroy_effect(
|
|
/** @type {Effect} */
|
|
effects[i]
|
|
);
|
|
}
|
|
}
|
|
}
|
|
var stack = [];
|
|
function get_derived_parent_effect(derived3) {
|
|
var parent = derived3.parent;
|
|
while (parent !== null) {
|
|
if ((parent.f & DERIVED) === 0) {
|
|
return (parent.f & DESTROYED) === 0 ? (
|
|
/** @type {Effect} */
|
|
parent
|
|
) : null;
|
|
}
|
|
parent = parent.parent;
|
|
}
|
|
return null;
|
|
}
|
|
function execute_derived(derived3) {
|
|
var value;
|
|
var prev_active_effect = active_effect;
|
|
set_active_effect(get_derived_parent_effect(derived3));
|
|
if (dev_fallback_default) {
|
|
let prev_eager_effects = eager_effects;
|
|
set_eager_effects(/* @__PURE__ */ new Set());
|
|
try {
|
|
if (includes.call(stack, derived3)) {
|
|
derived_references_self();
|
|
}
|
|
stack.push(derived3);
|
|
derived3.f &= ~WAS_MARKED;
|
|
destroy_derived_effects(derived3);
|
|
value = update_reaction(derived3);
|
|
} finally {
|
|
set_active_effect(prev_active_effect);
|
|
set_eager_effects(prev_eager_effects);
|
|
stack.pop();
|
|
}
|
|
} else {
|
|
try {
|
|
derived3.f &= ~WAS_MARKED;
|
|
destroy_derived_effects(derived3);
|
|
value = update_reaction(derived3);
|
|
} finally {
|
|
set_active_effect(prev_active_effect);
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
function update_derived(derived3) {
|
|
var _a5, _b3, _c2;
|
|
var old_value = derived3.v;
|
|
var value = execute_derived(derived3);
|
|
if (!derived3.equals(value)) {
|
|
derived3.wv = increment_write_version();
|
|
if (!((_a5 = current_batch) == null ? void 0 : _a5.is_fork) || derived3.deps === null) {
|
|
derived3.v = value;
|
|
(_b3 = current_batch) == null ? void 0 : _b3.capture(derived3, old_value);
|
|
if (derived3.deps === null) {
|
|
set_signal_status(derived3, CLEAN);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
if (is_destroying_effect) {
|
|
return;
|
|
}
|
|
if (batch_values !== null) {
|
|
if (effect_tracking() || ((_c2 = current_batch) == null ? void 0 : _c2.is_fork)) {
|
|
batch_values.set(derived3, value);
|
|
}
|
|
} else {
|
|
update_derived_status(derived3);
|
|
}
|
|
}
|
|
function freeze_derived_effects(derived3) {
|
|
var _a5, _b3;
|
|
if (derived3.effects === null) return;
|
|
for (const e of derived3.effects) {
|
|
if (e.teardown || e.ac) {
|
|
(_a5 = e.teardown) == null ? void 0 : _a5.call(e);
|
|
(_b3 = e.ac) == null ? void 0 : _b3.abort(STALE_REACTION);
|
|
e.teardown = noop;
|
|
e.ac = null;
|
|
remove_reactions(e, 0);
|
|
destroy_effect_children(e);
|
|
}
|
|
}
|
|
}
|
|
function unfreeze_derived_effects(derived3) {
|
|
if (derived3.effects === null) return;
|
|
for (const e of derived3.effects) {
|
|
if (e.teardown) {
|
|
update_effect(e);
|
|
}
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/sources.js
|
|
var eager_effects = /* @__PURE__ */ new Set();
|
|
var old_values = /* @__PURE__ */ new Map();
|
|
function set_eager_effects(v) {
|
|
eager_effects = v;
|
|
}
|
|
var eager_effects_deferred = false;
|
|
function set_eager_effects_deferred() {
|
|
eager_effects_deferred = true;
|
|
}
|
|
function source(v, stack2) {
|
|
var signal = {
|
|
f: 0,
|
|
// TODO ideally we could skip this altogether, but it causes type errors
|
|
v,
|
|
reactions: null,
|
|
equals,
|
|
rv: 0,
|
|
wv: 0
|
|
};
|
|
if (dev_fallback_default && tracing_mode_flag) {
|
|
signal.created = stack2 != null ? stack2 : get_error("created at");
|
|
signal.updated = null;
|
|
signal.set_during_effect = false;
|
|
signal.trace = null;
|
|
}
|
|
return signal;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function state(v, stack2) {
|
|
const s = source(v, stack2);
|
|
push_reaction_value(s);
|
|
return s;
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function mutable_source(initial_value, immutable = false, trackable = true) {
|
|
var _a5, _b3;
|
|
const s = source(initial_value);
|
|
if (!immutable) {
|
|
s.equals = safe_equals;
|
|
}
|
|
if (legacy_mode_flag && trackable && component_context !== null && component_context.l !== null) {
|
|
((_b3 = (_a5 = component_context.l).s) != null ? _b3 : _a5.s = []).push(s);
|
|
}
|
|
return s;
|
|
}
|
|
function mutate(source2, value) {
|
|
set(
|
|
source2,
|
|
untrack(() => get(source2))
|
|
);
|
|
return value;
|
|
}
|
|
function set(source2, value, should_proxy = false) {
|
|
if (active_reaction !== null && // since we are untracking the function inside `$inspect.with` we need to add this check
|
|
// to ensure we error if state is set inside an inspect effect
|
|
(!untracking || (active_reaction.f & EAGER_EFFECT) !== 0) && is_runes() && (active_reaction.f & (DERIVED | BLOCK_EFFECT | ASYNC | EAGER_EFFECT)) !== 0 && (current_sources === null || !includes.call(current_sources, source2))) {
|
|
state_unsafe_mutation();
|
|
}
|
|
let new_value = should_proxy ? proxy(value) : value;
|
|
if (dev_fallback_default) {
|
|
tag_proxy(
|
|
new_value,
|
|
/** @type {string} */
|
|
source2.label
|
|
);
|
|
}
|
|
return internal_set(source2, new_value, legacy_updates);
|
|
}
|
|
function internal_set(source2, value, updated_during_traversal = null) {
|
|
var _a5, _b3, _c2;
|
|
if (!source2.equals(value)) {
|
|
var old_value = source2.v;
|
|
if (is_destroying_effect) {
|
|
old_values.set(source2, value);
|
|
} else {
|
|
old_values.set(source2, old_value);
|
|
}
|
|
source2.v = value;
|
|
var batch = Batch.ensure();
|
|
batch.capture(source2, old_value);
|
|
if (dev_fallback_default) {
|
|
if (tracing_mode_flag || active_effect !== null) {
|
|
(_a5 = source2.updated) != null ? _a5 : source2.updated = /* @__PURE__ */ new Map();
|
|
const count = ((_c2 = (_b3 = source2.updated.get("")) == null ? void 0 : _b3.count) != null ? _c2 : 0) + 1;
|
|
source2.updated.set("", { error: (
|
|
/** @type {any} */
|
|
null
|
|
), count });
|
|
if (tracing_mode_flag || count > 5) {
|
|
const error = get_error("updated at");
|
|
if (error !== null) {
|
|
let entry = source2.updated.get(error.stack);
|
|
if (!entry) {
|
|
entry = { error, count: 0 };
|
|
source2.updated.set(error.stack, entry);
|
|
}
|
|
entry.count++;
|
|
}
|
|
}
|
|
}
|
|
if (active_effect !== null) {
|
|
source2.set_during_effect = true;
|
|
}
|
|
}
|
|
if ((source2.f & DERIVED) !== 0) {
|
|
const derived3 = (
|
|
/** @type {Derived} */
|
|
source2
|
|
);
|
|
if ((source2.f & DIRTY) !== 0) {
|
|
execute_derived(derived3);
|
|
}
|
|
if (batch_values === null) {
|
|
update_derived_status(derived3);
|
|
}
|
|
}
|
|
source2.wv = increment_write_version();
|
|
mark_reactions(source2, DIRTY, updated_during_traversal);
|
|
if (is_runes() && active_effect !== null && (active_effect.f & CLEAN) !== 0 && (active_effect.f & (BRANCH_EFFECT | ROOT_EFFECT)) === 0) {
|
|
if (untracked_writes === null) {
|
|
set_untracked_writes([source2]);
|
|
} else {
|
|
untracked_writes.push(source2);
|
|
}
|
|
}
|
|
if (!batch.is_fork && eager_effects.size > 0 && !eager_effects_deferred) {
|
|
flush_eager_effects();
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
function flush_eager_effects() {
|
|
eager_effects_deferred = false;
|
|
for (const effect2 of eager_effects) {
|
|
if ((effect2.f & CLEAN) !== 0) {
|
|
set_signal_status(effect2, MAYBE_DIRTY);
|
|
}
|
|
if (is_dirty(effect2)) {
|
|
update_effect(effect2);
|
|
}
|
|
}
|
|
eager_effects.clear();
|
|
}
|
|
function update(source2, d = 1) {
|
|
var value = get(source2);
|
|
var result = d === 1 ? value++ : value--;
|
|
set(source2, value);
|
|
return result;
|
|
}
|
|
function increment(source2) {
|
|
set(source2, source2.v + 1);
|
|
}
|
|
function mark_reactions(signal, status, updated_during_traversal) {
|
|
var _a5;
|
|
var reactions = signal.reactions;
|
|
if (reactions === null) return;
|
|
var runes = is_runes();
|
|
var length = reactions.length;
|
|
for (var i = 0; i < length; i++) {
|
|
var reaction = reactions[i];
|
|
var flags2 = reaction.f;
|
|
if (!runes && reaction === active_effect) continue;
|
|
if (dev_fallback_default && (flags2 & EAGER_EFFECT) !== 0) {
|
|
eager_effects.add(reaction);
|
|
continue;
|
|
}
|
|
var not_dirty = (flags2 & DIRTY) === 0;
|
|
if (not_dirty) {
|
|
set_signal_status(reaction, status);
|
|
}
|
|
if ((flags2 & DERIVED) !== 0) {
|
|
var derived3 = (
|
|
/** @type {Derived} */
|
|
reaction
|
|
);
|
|
(_a5 = batch_values) == null ? void 0 : _a5.delete(derived3);
|
|
if ((flags2 & WAS_MARKED) === 0) {
|
|
if (flags2 & CONNECTED) {
|
|
reaction.f |= WAS_MARKED;
|
|
}
|
|
mark_reactions(derived3, MAYBE_DIRTY, updated_during_traversal);
|
|
}
|
|
} else if (not_dirty) {
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
reaction
|
|
);
|
|
if ((flags2 & BLOCK_EFFECT) !== 0 && eager_block_effects !== null) {
|
|
eager_block_effects.add(effect2);
|
|
}
|
|
if (updated_during_traversal !== null) {
|
|
updated_during_traversal.push(effect2);
|
|
} else {
|
|
schedule_effect(effect2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/legacy.js
|
|
var captured_signals = null;
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/misc.js
|
|
function autofocus(dom, value) {
|
|
if (value) {
|
|
const body = document.body;
|
|
dom.autofocus = true;
|
|
queue_micro_task(() => {
|
|
if (document.activeElement === body) {
|
|
dom.focus();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
function remove_textarea_child(dom) {
|
|
if (hydrating && get_first_child(dom) !== null) {
|
|
clear_text_content(dom);
|
|
}
|
|
}
|
|
var listening_to_form_reset = false;
|
|
function add_form_reset_listener() {
|
|
if (!listening_to_form_reset) {
|
|
listening_to_form_reset = true;
|
|
document.addEventListener(
|
|
"reset",
|
|
(evt) => {
|
|
Promise.resolve().then(() => {
|
|
var _a5;
|
|
if (!evt.defaultPrevented) {
|
|
for (
|
|
const e of
|
|
/**@type {HTMLFormElement} */
|
|
evt.target.elements
|
|
) {
|
|
(_a5 = e.__on_r) == null ? void 0 : _a5.call(e);
|
|
}
|
|
}
|
|
});
|
|
},
|
|
// In the capture phase to guarantee we get noticed of it (no possibility of stopPropagation)
|
|
{ capture: true }
|
|
);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/bindings/shared.js
|
|
function without_reactive_context(fn) {
|
|
var previous_reaction = active_reaction;
|
|
var previous_effect = active_effect;
|
|
set_active_reaction(null);
|
|
set_active_effect(null);
|
|
try {
|
|
return fn();
|
|
} finally {
|
|
set_active_reaction(previous_reaction);
|
|
set_active_effect(previous_effect);
|
|
}
|
|
}
|
|
function listen_to_event_and_reset_event(element2, event2, handler, on_reset = handler) {
|
|
element2.addEventListener(event2, () => without_reactive_context(handler));
|
|
const prev = element2.__on_r;
|
|
if (prev) {
|
|
element2.__on_r = () => {
|
|
prev();
|
|
on_reset(true);
|
|
};
|
|
} else {
|
|
element2.__on_r = () => on_reset(true);
|
|
}
|
|
add_form_reset_listener();
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/runtime.js
|
|
var is_updating_effect = false;
|
|
var is_destroying_effect = false;
|
|
function set_is_destroying_effect(value) {
|
|
is_destroying_effect = value;
|
|
}
|
|
var active_reaction = null;
|
|
var untracking = false;
|
|
function set_active_reaction(reaction) {
|
|
active_reaction = reaction;
|
|
}
|
|
var active_effect = null;
|
|
function set_active_effect(effect2) {
|
|
active_effect = effect2;
|
|
}
|
|
var current_sources = null;
|
|
function push_reaction_value(value) {
|
|
if (active_reaction !== null && (!async_mode_flag || (active_reaction.f & DERIVED) !== 0)) {
|
|
if (current_sources === null) {
|
|
current_sources = [value];
|
|
} else {
|
|
current_sources.push(value);
|
|
}
|
|
}
|
|
}
|
|
var new_deps = null;
|
|
var skipped_deps = 0;
|
|
var untracked_writes = null;
|
|
function set_untracked_writes(value) {
|
|
untracked_writes = value;
|
|
}
|
|
var write_version = 1;
|
|
var read_version = 0;
|
|
var update_version = read_version;
|
|
function set_update_version(value) {
|
|
update_version = value;
|
|
}
|
|
function increment_write_version() {
|
|
return ++write_version;
|
|
}
|
|
function is_dirty(reaction) {
|
|
var flags2 = reaction.f;
|
|
if ((flags2 & DIRTY) !== 0) {
|
|
return true;
|
|
}
|
|
if (flags2 & DERIVED) {
|
|
reaction.f &= ~WAS_MARKED;
|
|
}
|
|
if ((flags2 & MAYBE_DIRTY) !== 0) {
|
|
var dependencies = (
|
|
/** @type {Value[]} */
|
|
reaction.deps
|
|
);
|
|
var length = dependencies.length;
|
|
for (var i = 0; i < length; i++) {
|
|
var dependency = dependencies[i];
|
|
if (is_dirty(
|
|
/** @type {Derived} */
|
|
dependency
|
|
)) {
|
|
update_derived(
|
|
/** @type {Derived} */
|
|
dependency
|
|
);
|
|
}
|
|
if (dependency.wv > reaction.wv) {
|
|
return true;
|
|
}
|
|
}
|
|
if ((flags2 & CONNECTED) !== 0 && // During time traveling we don't want to reset the status so that
|
|
// traversal of the graph in the other batches still happens
|
|
batch_values === null) {
|
|
set_signal_status(reaction, CLEAN);
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function schedule_possible_effect_self_invalidation(signal, effect2, root12 = true) {
|
|
var reactions = signal.reactions;
|
|
if (reactions === null) return;
|
|
if (!async_mode_flag && current_sources !== null && includes.call(current_sources, signal)) {
|
|
return;
|
|
}
|
|
for (var i = 0; i < reactions.length; i++) {
|
|
var reaction = reactions[i];
|
|
if ((reaction.f & DERIVED) !== 0) {
|
|
schedule_possible_effect_self_invalidation(
|
|
/** @type {Derived} */
|
|
reaction,
|
|
effect2,
|
|
false
|
|
);
|
|
} else if (effect2 === reaction) {
|
|
if (root12) {
|
|
set_signal_status(reaction, DIRTY);
|
|
} else if ((reaction.f & CLEAN) !== 0) {
|
|
set_signal_status(reaction, MAYBE_DIRTY);
|
|
}
|
|
schedule_effect(
|
|
/** @type {Effect} */
|
|
reaction
|
|
);
|
|
}
|
|
}
|
|
}
|
|
function update_reaction(reaction) {
|
|
var _a5, _b3, _c2;
|
|
var previous_deps = new_deps;
|
|
var previous_skipped_deps = skipped_deps;
|
|
var previous_untracked_writes = untracked_writes;
|
|
var previous_reaction = active_reaction;
|
|
var previous_sources = current_sources;
|
|
var previous_component_context = component_context;
|
|
var previous_untracking = untracking;
|
|
var previous_update_version = update_version;
|
|
var flags2 = reaction.f;
|
|
new_deps = /** @type {null | Value[]} */
|
|
null;
|
|
skipped_deps = 0;
|
|
untracked_writes = null;
|
|
active_reaction = (flags2 & (BRANCH_EFFECT | ROOT_EFFECT)) === 0 ? reaction : null;
|
|
current_sources = null;
|
|
set_component_context(reaction.ctx);
|
|
untracking = false;
|
|
update_version = ++read_version;
|
|
if (reaction.ac !== null) {
|
|
without_reactive_context(() => {
|
|
reaction.ac.abort(STALE_REACTION);
|
|
});
|
|
reaction.ac = null;
|
|
}
|
|
try {
|
|
reaction.f |= REACTION_IS_UPDATING;
|
|
var fn = (
|
|
/** @type {Function} */
|
|
reaction.fn
|
|
);
|
|
var result = fn();
|
|
reaction.f |= REACTION_RAN;
|
|
var deps = reaction.deps;
|
|
var is_fork = (_a5 = current_batch) == null ? void 0 : _a5.is_fork;
|
|
if (new_deps !== null) {
|
|
var i;
|
|
if (!is_fork) {
|
|
remove_reactions(reaction, skipped_deps);
|
|
}
|
|
if (deps !== null && skipped_deps > 0) {
|
|
deps.length = skipped_deps + new_deps.length;
|
|
for (i = 0; i < new_deps.length; i++) {
|
|
deps[skipped_deps + i] = new_deps[i];
|
|
}
|
|
} else {
|
|
reaction.deps = deps = new_deps;
|
|
}
|
|
if (effect_tracking() && (reaction.f & CONNECTED) !== 0) {
|
|
for (i = skipped_deps; i < deps.length; i++) {
|
|
((_c2 = (_b3 = deps[i]).reactions) != null ? _c2 : _b3.reactions = []).push(reaction);
|
|
}
|
|
}
|
|
} else if (!is_fork && deps !== null && skipped_deps < deps.length) {
|
|
remove_reactions(reaction, skipped_deps);
|
|
deps.length = skipped_deps;
|
|
}
|
|
if (is_runes() && untracked_writes !== null && !untracking && deps !== null && (reaction.f & (DERIVED | MAYBE_DIRTY | DIRTY)) === 0) {
|
|
for (i = 0; i < /** @type {Source[]} */
|
|
untracked_writes.length; i++) {
|
|
schedule_possible_effect_self_invalidation(
|
|
untracked_writes[i],
|
|
/** @type {Effect} */
|
|
reaction
|
|
);
|
|
}
|
|
}
|
|
if (previous_reaction !== null && previous_reaction !== reaction) {
|
|
read_version++;
|
|
if (previous_reaction.deps !== null) {
|
|
for (let i2 = 0; i2 < previous_skipped_deps; i2 += 1) {
|
|
previous_reaction.deps[i2].rv = read_version;
|
|
}
|
|
}
|
|
if (previous_deps !== null) {
|
|
for (const dep of previous_deps) {
|
|
dep.rv = read_version;
|
|
}
|
|
}
|
|
if (untracked_writes !== null) {
|
|
if (previous_untracked_writes === null) {
|
|
previous_untracked_writes = untracked_writes;
|
|
} else {
|
|
previous_untracked_writes.push(.../** @type {Source[]} */
|
|
untracked_writes);
|
|
}
|
|
}
|
|
}
|
|
if ((reaction.f & ERROR_VALUE) !== 0) {
|
|
reaction.f ^= ERROR_VALUE;
|
|
}
|
|
return result;
|
|
} catch (error) {
|
|
return handle_error(error);
|
|
} finally {
|
|
reaction.f ^= REACTION_IS_UPDATING;
|
|
new_deps = previous_deps;
|
|
skipped_deps = previous_skipped_deps;
|
|
untracked_writes = previous_untracked_writes;
|
|
active_reaction = previous_reaction;
|
|
current_sources = previous_sources;
|
|
set_component_context(previous_component_context);
|
|
untracking = previous_untracking;
|
|
update_version = previous_update_version;
|
|
}
|
|
}
|
|
function remove_reaction(signal, dependency) {
|
|
let reactions = dependency.reactions;
|
|
if (reactions !== null) {
|
|
var index2 = index_of.call(reactions, signal);
|
|
if (index2 !== -1) {
|
|
var new_length = reactions.length - 1;
|
|
if (new_length === 0) {
|
|
reactions = dependency.reactions = null;
|
|
} else {
|
|
reactions[index2] = reactions[new_length];
|
|
reactions.pop();
|
|
}
|
|
}
|
|
}
|
|
if (reactions === null && (dependency.f & DERIVED) !== 0 && // Destroying a child effect while updating a parent effect can cause a dependency to appear
|
|
// to be unused, when in fact it is used by the currently-updating parent. Checking `new_deps`
|
|
// allows us to skip the expensive work of disconnecting and immediately reconnecting it
|
|
(new_deps === null || !includes.call(new_deps, dependency))) {
|
|
var derived3 = (
|
|
/** @type {Derived} */
|
|
dependency
|
|
);
|
|
if ((derived3.f & CONNECTED) !== 0) {
|
|
derived3.f ^= CONNECTED;
|
|
derived3.f &= ~WAS_MARKED;
|
|
}
|
|
update_derived_status(derived3);
|
|
freeze_derived_effects(derived3);
|
|
remove_reactions(derived3, 0);
|
|
}
|
|
}
|
|
function remove_reactions(signal, start_index) {
|
|
var dependencies = signal.deps;
|
|
if (dependencies === null) return;
|
|
for (var i = start_index; i < dependencies.length; i++) {
|
|
remove_reaction(signal, dependencies[i]);
|
|
}
|
|
}
|
|
function update_effect(effect2) {
|
|
var _a5;
|
|
var flags2 = effect2.f;
|
|
if ((flags2 & DESTROYED) !== 0) {
|
|
return;
|
|
}
|
|
set_signal_status(effect2, CLEAN);
|
|
var previous_effect = active_effect;
|
|
var was_updating_effect = is_updating_effect;
|
|
active_effect = effect2;
|
|
is_updating_effect = true;
|
|
if (dev_fallback_default) {
|
|
var previous_component_fn = dev_current_component_function;
|
|
set_dev_current_component_function(effect2.component_function);
|
|
var previous_stack = (
|
|
/** @type {any} */
|
|
dev_stack
|
|
);
|
|
set_dev_stack((_a5 = effect2.dev_stack) != null ? _a5 : dev_stack);
|
|
}
|
|
try {
|
|
if ((flags2 & (BLOCK_EFFECT | MANAGED_EFFECT)) !== 0) {
|
|
destroy_block_effect_children(effect2);
|
|
} else {
|
|
destroy_effect_children(effect2);
|
|
}
|
|
execute_effect_teardown(effect2);
|
|
var teardown2 = update_reaction(effect2);
|
|
effect2.teardown = typeof teardown2 === "function" ? teardown2 : null;
|
|
effect2.wv = write_version;
|
|
if (dev_fallback_default && tracing_mode_flag && (effect2.f & DIRTY) !== 0 && effect2.deps !== null) {
|
|
for (var dep of effect2.deps) {
|
|
if (dep.set_during_effect) {
|
|
dep.wv = increment_write_version();
|
|
dep.set_during_effect = false;
|
|
}
|
|
}
|
|
}
|
|
} finally {
|
|
is_updating_effect = was_updating_effect;
|
|
active_effect = previous_effect;
|
|
if (dev_fallback_default) {
|
|
set_dev_current_component_function(previous_component_fn);
|
|
set_dev_stack(previous_stack);
|
|
}
|
|
}
|
|
}
|
|
async function tick() {
|
|
if (async_mode_flag) {
|
|
return new Promise((f) => {
|
|
requestAnimationFrame(() => f());
|
|
setTimeout(() => f());
|
|
});
|
|
}
|
|
await Promise.resolve();
|
|
flushSync();
|
|
}
|
|
function get(signal) {
|
|
var _a5, _b3, _c2;
|
|
var flags2 = signal.f;
|
|
var is_derived = (flags2 & DERIVED) !== 0;
|
|
(_a5 = captured_signals) == null ? void 0 : _a5.add(signal);
|
|
if (active_reaction !== null && !untracking) {
|
|
var destroyed = active_effect !== null && (active_effect.f & DESTROYED) !== 0;
|
|
if (!destroyed && (current_sources === null || !includes.call(current_sources, signal))) {
|
|
var deps = active_reaction.deps;
|
|
if ((active_reaction.f & REACTION_IS_UPDATING) !== 0) {
|
|
if (signal.rv < read_version) {
|
|
signal.rv = read_version;
|
|
if (new_deps === null && deps !== null && deps[skipped_deps] === signal) {
|
|
skipped_deps++;
|
|
} else if (new_deps === null) {
|
|
new_deps = [signal];
|
|
} else {
|
|
new_deps.push(signal);
|
|
}
|
|
}
|
|
} else {
|
|
((_b3 = active_reaction.deps) != null ? _b3 : active_reaction.deps = []).push(signal);
|
|
var reactions = signal.reactions;
|
|
if (reactions === null) {
|
|
signal.reactions = [active_reaction];
|
|
} else if (!includes.call(reactions, active_reaction)) {
|
|
reactions.push(active_reaction);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (dev_fallback_default) {
|
|
recent_async_deriveds.delete(signal);
|
|
if (tracing_mode_flag && !untracking && tracing_expressions !== null && active_reaction !== null && tracing_expressions.reaction === active_reaction) {
|
|
if (signal.trace) {
|
|
signal.trace();
|
|
} else {
|
|
var trace2 = get_error("traced at");
|
|
if (trace2) {
|
|
var entry = tracing_expressions.entries.get(signal);
|
|
if (entry === void 0) {
|
|
entry = { traces: [] };
|
|
tracing_expressions.entries.set(signal, entry);
|
|
}
|
|
var last = entry.traces[entry.traces.length - 1];
|
|
if (trace2.stack !== (last == null ? void 0 : last.stack)) {
|
|
entry.traces.push(trace2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (is_destroying_effect && old_values.has(signal)) {
|
|
return old_values.get(signal);
|
|
}
|
|
if (is_derived) {
|
|
var derived3 = (
|
|
/** @type {Derived} */
|
|
signal
|
|
);
|
|
if (is_destroying_effect) {
|
|
var value = derived3.v;
|
|
if ((derived3.f & CLEAN) === 0 && derived3.reactions !== null || depends_on_old_values(derived3)) {
|
|
value = execute_derived(derived3);
|
|
}
|
|
old_values.set(derived3, value);
|
|
return value;
|
|
}
|
|
var should_connect = (derived3.f & CONNECTED) === 0 && !untracking && active_reaction !== null && (is_updating_effect || (active_reaction.f & CONNECTED) !== 0);
|
|
var is_new = (derived3.f & REACTION_RAN) === 0;
|
|
if (is_dirty(derived3)) {
|
|
if (should_connect) {
|
|
derived3.f |= CONNECTED;
|
|
}
|
|
update_derived(derived3);
|
|
}
|
|
if (should_connect && !is_new) {
|
|
unfreeze_derived_effects(derived3);
|
|
reconnect(derived3);
|
|
}
|
|
}
|
|
if ((_c2 = batch_values) == null ? void 0 : _c2.has(signal)) {
|
|
return batch_values.get(signal);
|
|
}
|
|
if ((signal.f & ERROR_VALUE) !== 0) {
|
|
throw signal.v;
|
|
}
|
|
return signal.v;
|
|
}
|
|
function reconnect(derived3) {
|
|
var _a5;
|
|
derived3.f |= CONNECTED;
|
|
if (derived3.deps === null) return;
|
|
for (const dep of derived3.deps) {
|
|
((_a5 = dep.reactions) != null ? _a5 : dep.reactions = []).push(derived3);
|
|
if ((dep.f & DERIVED) !== 0 && (dep.f & CONNECTED) === 0) {
|
|
unfreeze_derived_effects(
|
|
/** @type {Derived} */
|
|
dep
|
|
);
|
|
reconnect(
|
|
/** @type {Derived} */
|
|
dep
|
|
);
|
|
}
|
|
}
|
|
}
|
|
function depends_on_old_values(derived3) {
|
|
if (derived3.v === UNINITIALIZED) return true;
|
|
if (derived3.deps === null) return false;
|
|
for (const dep of derived3.deps) {
|
|
if (old_values.has(dep)) {
|
|
return true;
|
|
}
|
|
if ((dep.f & DERIVED) !== 0 && depends_on_old_values(
|
|
/** @type {Derived} */
|
|
dep
|
|
)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function untrack(fn) {
|
|
var previous_untracking = untracking;
|
|
try {
|
|
untracking = true;
|
|
return fn();
|
|
} finally {
|
|
untracking = previous_untracking;
|
|
}
|
|
}
|
|
function deep_read_state(value) {
|
|
if (typeof value !== "object" || !value || value instanceof EventTarget) {
|
|
return;
|
|
}
|
|
if (STATE_SYMBOL in value) {
|
|
deep_read(value);
|
|
} else if (!Array.isArray(value)) {
|
|
for (let key2 in value) {
|
|
const prop2 = value[key2];
|
|
if (typeof prop2 === "object" && prop2 && STATE_SYMBOL in prop2) {
|
|
deep_read(prop2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function deep_read(value, visited = /* @__PURE__ */ new Set()) {
|
|
if (typeof value === "object" && value !== null && // We don't want to traverse DOM elements
|
|
!(value instanceof EventTarget) && !visited.has(value)) {
|
|
visited.add(value);
|
|
if (value instanceof Date) {
|
|
value.getTime();
|
|
}
|
|
for (let key2 in value) {
|
|
try {
|
|
deep_read(value[key2], visited);
|
|
} catch (e) {
|
|
}
|
|
}
|
|
const proto = get_prototype_of(value);
|
|
if (proto !== Object.prototype && proto !== Array.prototype && proto !== Map.prototype && proto !== Set.prototype && proto !== Date.prototype) {
|
|
const descriptors = get_descriptors(proto);
|
|
for (let key2 in descriptors) {
|
|
const get3 = descriptors[key2].get;
|
|
if (get3) {
|
|
try {
|
|
get3.call(value);
|
|
} catch (e) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/effects.js
|
|
function validate_effect(rune) {
|
|
if (active_effect === null) {
|
|
if (active_reaction === null) {
|
|
effect_orphan(rune);
|
|
}
|
|
effect_in_unowned_derived();
|
|
}
|
|
if (is_destroying_effect) {
|
|
effect_in_teardown(rune);
|
|
}
|
|
}
|
|
function push_effect(effect2, parent_effect) {
|
|
var parent_last = parent_effect.last;
|
|
if (parent_last === null) {
|
|
parent_effect.last = parent_effect.first = effect2;
|
|
} else {
|
|
parent_last.next = effect2;
|
|
effect2.prev = parent_last;
|
|
parent_effect.last = effect2;
|
|
}
|
|
}
|
|
function create_effect(type, fn) {
|
|
var _a5;
|
|
var parent = active_effect;
|
|
if (dev_fallback_default) {
|
|
while (parent !== null && (parent.f & EAGER_EFFECT) !== 0) {
|
|
parent = parent.parent;
|
|
}
|
|
}
|
|
if (parent !== null && (parent.f & INERT) !== 0) {
|
|
type |= INERT;
|
|
}
|
|
var effect2 = {
|
|
ctx: component_context,
|
|
deps: null,
|
|
nodes: null,
|
|
f: type | DIRTY | CONNECTED,
|
|
first: null,
|
|
fn,
|
|
last: null,
|
|
next: null,
|
|
parent,
|
|
b: parent && parent.b,
|
|
prev: null,
|
|
teardown: null,
|
|
wv: 0,
|
|
ac: null
|
|
};
|
|
if (dev_fallback_default) {
|
|
effect2.component_function = dev_current_component_function;
|
|
}
|
|
var e = effect2;
|
|
if ((type & EFFECT) !== 0) {
|
|
if (collected_effects !== null) {
|
|
collected_effects.push(effect2);
|
|
} else {
|
|
Batch.ensure().schedule(effect2);
|
|
}
|
|
} else if (fn !== null) {
|
|
try {
|
|
update_effect(effect2);
|
|
} catch (e2) {
|
|
destroy_effect(effect2);
|
|
throw e2;
|
|
}
|
|
if (e.deps === null && e.teardown === null && e.nodes === null && e.first === e.last && // either `null`, or a singular child
|
|
(e.f & EFFECT_PRESERVED) === 0) {
|
|
e = e.first;
|
|
if ((type & BLOCK_EFFECT) !== 0 && (type & EFFECT_TRANSPARENT) !== 0 && e !== null) {
|
|
e.f |= EFFECT_TRANSPARENT;
|
|
}
|
|
}
|
|
}
|
|
if (e !== null) {
|
|
e.parent = parent;
|
|
if (parent !== null) {
|
|
push_effect(e, parent);
|
|
}
|
|
if (active_reaction !== null && (active_reaction.f & DERIVED) !== 0 && (type & ROOT_EFFECT) === 0) {
|
|
var derived3 = (
|
|
/** @type {Derived} */
|
|
active_reaction
|
|
);
|
|
((_a5 = derived3.effects) != null ? _a5 : derived3.effects = []).push(e);
|
|
}
|
|
}
|
|
return effect2;
|
|
}
|
|
function effect_tracking() {
|
|
return active_reaction !== null && !untracking;
|
|
}
|
|
function teardown(fn) {
|
|
const effect2 = create_effect(RENDER_EFFECT, null);
|
|
set_signal_status(effect2, CLEAN);
|
|
effect2.teardown = fn;
|
|
return effect2;
|
|
}
|
|
function user_effect(fn) {
|
|
var _a5;
|
|
validate_effect("$effect");
|
|
if (dev_fallback_default) {
|
|
define_property(fn, "name", {
|
|
value: "$effect"
|
|
});
|
|
}
|
|
var flags2 = (
|
|
/** @type {Effect} */
|
|
active_effect.f
|
|
);
|
|
var defer = !active_reaction && (flags2 & BRANCH_EFFECT) !== 0 && (flags2 & REACTION_RAN) === 0;
|
|
if (defer) {
|
|
var context = (
|
|
/** @type {ComponentContext} */
|
|
component_context
|
|
);
|
|
((_a5 = context.e) != null ? _a5 : context.e = []).push(fn);
|
|
} else {
|
|
return create_user_effect(fn);
|
|
}
|
|
}
|
|
function create_user_effect(fn) {
|
|
return create_effect(EFFECT | USER_EFFECT, fn);
|
|
}
|
|
function user_pre_effect(fn) {
|
|
validate_effect("$effect.pre");
|
|
if (dev_fallback_default) {
|
|
define_property(fn, "name", {
|
|
value: "$effect.pre"
|
|
});
|
|
}
|
|
return create_effect(RENDER_EFFECT | USER_EFFECT, fn);
|
|
}
|
|
function effect_root(fn) {
|
|
Batch.ensure();
|
|
const effect2 = create_effect(ROOT_EFFECT | EFFECT_PRESERVED, fn);
|
|
return () => {
|
|
destroy_effect(effect2);
|
|
};
|
|
}
|
|
function component_root(fn) {
|
|
Batch.ensure();
|
|
const effect2 = create_effect(ROOT_EFFECT | EFFECT_PRESERVED, fn);
|
|
return (options = {}) => {
|
|
return new Promise((fulfil) => {
|
|
if (options.outro) {
|
|
pause_effect(effect2, () => {
|
|
destroy_effect(effect2);
|
|
fulfil(void 0);
|
|
});
|
|
} else {
|
|
destroy_effect(effect2);
|
|
fulfil(void 0);
|
|
}
|
|
});
|
|
};
|
|
}
|
|
function effect(fn) {
|
|
return create_effect(EFFECT, fn);
|
|
}
|
|
function legacy_pre_effect(deps, fn) {
|
|
var context = (
|
|
/** @type {ComponentContextLegacy} */
|
|
component_context
|
|
);
|
|
var token = { effect: null, ran: false, deps };
|
|
context.l.$.push(token);
|
|
token.effect = render_effect(() => {
|
|
deps();
|
|
if (token.ran) return;
|
|
token.ran = true;
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
try {
|
|
set_active_effect(effect2.parent);
|
|
untrack(fn);
|
|
} finally {
|
|
set_active_effect(effect2);
|
|
}
|
|
});
|
|
}
|
|
function legacy_pre_effect_reset() {
|
|
var context = (
|
|
/** @type {ComponentContextLegacy} */
|
|
component_context
|
|
);
|
|
render_effect(() => {
|
|
for (var token of context.l.$) {
|
|
token.deps();
|
|
var effect2 = token.effect;
|
|
if ((effect2.f & CLEAN) !== 0 && effect2.deps !== null) {
|
|
set_signal_status(effect2, MAYBE_DIRTY);
|
|
}
|
|
if (is_dirty(effect2)) {
|
|
update_effect(effect2);
|
|
}
|
|
token.ran = false;
|
|
}
|
|
});
|
|
}
|
|
function async_effect(fn) {
|
|
return create_effect(ASYNC | EFFECT_PRESERVED, fn);
|
|
}
|
|
function render_effect(fn, flags2 = 0) {
|
|
return create_effect(RENDER_EFFECT | flags2, fn);
|
|
}
|
|
function template_effect(fn, sync = [], async2 = [], blockers = []) {
|
|
flatten(blockers, sync, async2, (values) => {
|
|
create_effect(RENDER_EFFECT, () => fn(...values.map(get)));
|
|
});
|
|
}
|
|
function block(fn, flags2 = 0) {
|
|
var effect2 = create_effect(BLOCK_EFFECT | flags2, fn);
|
|
if (dev_fallback_default) {
|
|
effect2.dev_stack = dev_stack;
|
|
}
|
|
return effect2;
|
|
}
|
|
function managed(fn, flags2 = 0) {
|
|
var effect2 = create_effect(MANAGED_EFFECT | flags2, fn);
|
|
if (dev_fallback_default) {
|
|
effect2.dev_stack = dev_stack;
|
|
}
|
|
return effect2;
|
|
}
|
|
function branch(fn) {
|
|
return create_effect(BRANCH_EFFECT | EFFECT_PRESERVED, fn);
|
|
}
|
|
function execute_effect_teardown(effect2) {
|
|
var teardown2 = effect2.teardown;
|
|
if (teardown2 !== null) {
|
|
const previously_destroying_effect = is_destroying_effect;
|
|
const previous_reaction = active_reaction;
|
|
set_is_destroying_effect(true);
|
|
set_active_reaction(null);
|
|
try {
|
|
teardown2.call(null);
|
|
} finally {
|
|
set_is_destroying_effect(previously_destroying_effect);
|
|
set_active_reaction(previous_reaction);
|
|
}
|
|
}
|
|
}
|
|
function destroy_effect_children(signal, remove_dom = false) {
|
|
var effect2 = signal.first;
|
|
signal.first = signal.last = null;
|
|
while (effect2 !== null) {
|
|
const controller = effect2.ac;
|
|
if (controller !== null) {
|
|
without_reactive_context(() => {
|
|
controller.abort(STALE_REACTION);
|
|
});
|
|
}
|
|
var next2 = effect2.next;
|
|
if ((effect2.f & ROOT_EFFECT) !== 0) {
|
|
effect2.parent = null;
|
|
} else {
|
|
destroy_effect(effect2, remove_dom);
|
|
}
|
|
effect2 = next2;
|
|
}
|
|
}
|
|
function destroy_block_effect_children(signal) {
|
|
var effect2 = signal.first;
|
|
while (effect2 !== null) {
|
|
var next2 = effect2.next;
|
|
if ((effect2.f & BRANCH_EFFECT) === 0) {
|
|
destroy_effect(effect2);
|
|
}
|
|
effect2 = next2;
|
|
}
|
|
}
|
|
function destroy_effect(effect2, remove_dom = true) {
|
|
var removed = false;
|
|
if ((remove_dom || (effect2.f & HEAD_EFFECT) !== 0) && effect2.nodes !== null && effect2.nodes.end !== null) {
|
|
remove_effect_dom(
|
|
effect2.nodes.start,
|
|
/** @type {TemplateNode} */
|
|
effect2.nodes.end
|
|
);
|
|
removed = true;
|
|
}
|
|
set_signal_status(effect2, DESTROYING);
|
|
destroy_effect_children(effect2, remove_dom && !removed);
|
|
remove_reactions(effect2, 0);
|
|
var transitions = effect2.nodes && effect2.nodes.t;
|
|
if (transitions !== null) {
|
|
for (const transition2 of transitions) {
|
|
transition2.stop();
|
|
}
|
|
}
|
|
execute_effect_teardown(effect2);
|
|
effect2.f ^= DESTROYING;
|
|
effect2.f |= DESTROYED;
|
|
var parent = effect2.parent;
|
|
if (parent !== null && parent.first !== null) {
|
|
unlink_effect(effect2);
|
|
}
|
|
if (dev_fallback_default) {
|
|
effect2.component_function = null;
|
|
}
|
|
effect2.next = effect2.prev = effect2.teardown = effect2.ctx = effect2.deps = effect2.fn = effect2.nodes = effect2.ac = null;
|
|
}
|
|
function remove_effect_dom(node, end) {
|
|
while (node !== null) {
|
|
var next2 = node === end ? null : get_next_sibling(node);
|
|
node.remove();
|
|
node = next2;
|
|
}
|
|
}
|
|
function unlink_effect(effect2) {
|
|
var parent = effect2.parent;
|
|
var prev = effect2.prev;
|
|
var next2 = effect2.next;
|
|
if (prev !== null) prev.next = next2;
|
|
if (next2 !== null) next2.prev = prev;
|
|
if (parent !== null) {
|
|
if (parent.first === effect2) parent.first = next2;
|
|
if (parent.last === effect2) parent.last = prev;
|
|
}
|
|
}
|
|
function pause_effect(effect2, callback, destroy = true) {
|
|
var transitions = [];
|
|
pause_children(effect2, transitions, true);
|
|
var fn = () => {
|
|
if (destroy) destroy_effect(effect2);
|
|
if (callback) callback();
|
|
};
|
|
var remaining = transitions.length;
|
|
if (remaining > 0) {
|
|
var check = () => --remaining || fn();
|
|
for (var transition2 of transitions) {
|
|
transition2.out(check);
|
|
}
|
|
} else {
|
|
fn();
|
|
}
|
|
}
|
|
function pause_children(effect2, transitions, local) {
|
|
if ((effect2.f & INERT) !== 0) return;
|
|
effect2.f ^= INERT;
|
|
var t = effect2.nodes && effect2.nodes.t;
|
|
if (t !== null) {
|
|
for (const transition2 of t) {
|
|
if (transition2.is_global || local) {
|
|
transitions.push(transition2);
|
|
}
|
|
}
|
|
}
|
|
var child2 = effect2.first;
|
|
while (child2 !== null) {
|
|
var sibling2 = child2.next;
|
|
var transparent = (child2.f & EFFECT_TRANSPARENT) !== 0 || // If this is a branch effect without a block effect parent,
|
|
// it means the parent block effect was pruned. In that case,
|
|
// transparency information was transferred to the branch effect.
|
|
(child2.f & BRANCH_EFFECT) !== 0 && (effect2.f & BLOCK_EFFECT) !== 0;
|
|
pause_children(child2, transitions, transparent ? local : false);
|
|
child2 = sibling2;
|
|
}
|
|
}
|
|
function resume_effect(effect2) {
|
|
resume_children(effect2, true);
|
|
}
|
|
function resume_children(effect2, local) {
|
|
if ((effect2.f & INERT) === 0) return;
|
|
effect2.f ^= INERT;
|
|
if ((effect2.f & CLEAN) === 0) {
|
|
set_signal_status(effect2, DIRTY);
|
|
Batch.ensure().schedule(effect2);
|
|
}
|
|
var child2 = effect2.first;
|
|
while (child2 !== null) {
|
|
var sibling2 = child2.next;
|
|
var transparent = (child2.f & EFFECT_TRANSPARENT) !== 0 || (child2.f & BRANCH_EFFECT) !== 0;
|
|
resume_children(child2, transparent ? local : false);
|
|
child2 = sibling2;
|
|
}
|
|
var t = effect2.nodes && effect2.nodes.t;
|
|
if (t !== null) {
|
|
for (const transition2 of t) {
|
|
if (transition2.is_global || local) {
|
|
transition2.in();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function move_effect(effect2, fragment) {
|
|
if (!effect2.nodes) return;
|
|
var node = effect2.nodes.start;
|
|
var end = effect2.nodes.end;
|
|
while (node !== null) {
|
|
var next2 = node === end ? null : get_next_sibling(node);
|
|
fragment.append(node);
|
|
node = next2;
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/events.js
|
|
var event_symbol = /* @__PURE__ */ Symbol("events");
|
|
var all_registered_events = /* @__PURE__ */ new Set();
|
|
var root_event_handles = /* @__PURE__ */ new Set();
|
|
function create_event(event_name, dom, handler, options = {}) {
|
|
function target_handler(event2) {
|
|
if (!options.capture) {
|
|
handle_event_propagation.call(dom, event2);
|
|
}
|
|
if (!event2.cancelBubble) {
|
|
return without_reactive_context(() => {
|
|
return handler == null ? void 0 : handler.call(this, event2);
|
|
});
|
|
}
|
|
}
|
|
if (event_name.startsWith("pointer") || event_name.startsWith("touch") || event_name === "wheel") {
|
|
queue_micro_task(() => {
|
|
dom.addEventListener(event_name, target_handler, options);
|
|
});
|
|
} else {
|
|
dom.addEventListener(event_name, target_handler, options);
|
|
}
|
|
return target_handler;
|
|
}
|
|
function event(event_name, dom, handler, capture2, passive2) {
|
|
var options = { capture: capture2, passive: passive2 };
|
|
var target_handler = create_event(event_name, dom, handler, options);
|
|
if (dom === document.body || // @ts-ignore
|
|
dom === window || // @ts-ignore
|
|
dom === document || // Firefox has quirky behavior, it can happen that we still get "canplay" events when the element is already removed
|
|
dom instanceof HTMLMediaElement) {
|
|
teardown(() => {
|
|
dom.removeEventListener(event_name, target_handler, options);
|
|
});
|
|
}
|
|
}
|
|
function delegated(event_name, element2, handler) {
|
|
var _a5;
|
|
((_a5 = element2[event_symbol]) != null ? _a5 : element2[event_symbol] = {})[event_name] = handler;
|
|
}
|
|
function delegate(events) {
|
|
for (var i = 0; i < events.length; i++) {
|
|
all_registered_events.add(events[i]);
|
|
}
|
|
for (var fn of root_event_handles) {
|
|
fn(events);
|
|
}
|
|
}
|
|
var last_propagated_event = null;
|
|
function handle_event_propagation(event2) {
|
|
var _a5, _b3;
|
|
var handler_element = this;
|
|
var owner_document = (
|
|
/** @type {Node} */
|
|
handler_element.ownerDocument
|
|
);
|
|
var event_name = event2.type;
|
|
var path = ((_a5 = event2.composedPath) == null ? void 0 : _a5.call(event2)) || [];
|
|
var current_target = (
|
|
/** @type {null | Element} */
|
|
path[0] || event2.target
|
|
);
|
|
last_propagated_event = event2;
|
|
var path_idx = 0;
|
|
var handled_at = last_propagated_event === event2 && event2[event_symbol];
|
|
if (handled_at) {
|
|
var at_idx = path.indexOf(handled_at);
|
|
if (at_idx !== -1 && (handler_element === document || handler_element === /** @type {any} */
|
|
window)) {
|
|
event2[event_symbol] = handler_element;
|
|
return;
|
|
}
|
|
var handler_idx = path.indexOf(handler_element);
|
|
if (handler_idx === -1) {
|
|
return;
|
|
}
|
|
if (at_idx <= handler_idx) {
|
|
path_idx = at_idx;
|
|
}
|
|
}
|
|
current_target = /** @type {Element} */
|
|
path[path_idx] || event2.target;
|
|
if (current_target === handler_element) return;
|
|
define_property(event2, "currentTarget", {
|
|
configurable: true,
|
|
get() {
|
|
return current_target || owner_document;
|
|
}
|
|
});
|
|
var previous_reaction = active_reaction;
|
|
var previous_effect = active_effect;
|
|
set_active_reaction(null);
|
|
set_active_effect(null);
|
|
try {
|
|
var throw_error;
|
|
var other_errors = [];
|
|
while (current_target !== null) {
|
|
var parent_element = current_target.assignedSlot || current_target.parentNode || /** @type {any} */
|
|
current_target.host || null;
|
|
try {
|
|
var delegated2 = (_b3 = current_target[event_symbol]) == null ? void 0 : _b3[event_name];
|
|
if (delegated2 != null && (!/** @type {any} */
|
|
current_target.disabled || // DOM could've been updated already by the time this is reached, so we check this as well
|
|
// -> the target could not have been disabled because it emits the event in the first place
|
|
event2.target === current_target)) {
|
|
delegated2.call(current_target, event2);
|
|
}
|
|
} catch (error) {
|
|
if (throw_error) {
|
|
other_errors.push(error);
|
|
} else {
|
|
throw_error = error;
|
|
}
|
|
}
|
|
if (event2.cancelBubble || parent_element === handler_element || parent_element === null) {
|
|
break;
|
|
}
|
|
current_target = parent_element;
|
|
}
|
|
if (throw_error) {
|
|
for (let error of other_errors) {
|
|
queueMicrotask(() => {
|
|
throw error;
|
|
});
|
|
}
|
|
throw throw_error;
|
|
}
|
|
} finally {
|
|
event2[event_symbol] = handler_element;
|
|
delete event2.currentTarget;
|
|
set_active_reaction(previous_reaction);
|
|
set_active_effect(previous_effect);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/reconciler.js
|
|
var _a3;
|
|
var policy = (
|
|
// We gotta write it like this because after downleveling the pure comment may end up in the wrong location
|
|
((_a3 = globalThis == null ? void 0 : globalThis.window) == null ? void 0 : _a3.trustedTypes) && /* @__PURE__ */ globalThis.window.trustedTypes.createPolicy("svelte-trusted-html", {
|
|
/** @param {string} html */
|
|
createHTML: (html2) => {
|
|
return html2;
|
|
}
|
|
})
|
|
);
|
|
function create_trusted_html(html2) {
|
|
var _a5;
|
|
return (
|
|
/** @type {string} */
|
|
(_a5 = policy == null ? void 0 : policy.createHTML(html2)) != null ? _a5 : html2
|
|
);
|
|
}
|
|
function create_fragment_from_html(html2) {
|
|
var elem = create_element("template");
|
|
elem.innerHTML = create_trusted_html(html2.replaceAll("<!>", "<!---->"));
|
|
return elem.content;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/template.js
|
|
function assign_nodes(start, end) {
|
|
var effect2 = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
if (effect2.nodes === null) {
|
|
effect2.nodes = { start, end, a: null, t: null };
|
|
}
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function from_html(content, flags2) {
|
|
var is_fragment = (flags2 & TEMPLATE_FRAGMENT) !== 0;
|
|
var use_import_node = (flags2 & TEMPLATE_USE_IMPORT_NODE) !== 0;
|
|
var node;
|
|
var has_start = !content.startsWith("<!>");
|
|
return () => {
|
|
if (hydrating) {
|
|
assign_nodes(hydrate_node, null);
|
|
return hydrate_node;
|
|
}
|
|
if (node === void 0) {
|
|
node = create_fragment_from_html(has_start ? content : "<!>" + content);
|
|
if (!is_fragment) node = /** @type {TemplateNode} */
|
|
get_first_child(node);
|
|
}
|
|
var clone = (
|
|
/** @type {TemplateNode} */
|
|
use_import_node || is_firefox ? document.importNode(node, true) : node.cloneNode(true)
|
|
);
|
|
if (is_fragment) {
|
|
var start = (
|
|
/** @type {TemplateNode} */
|
|
get_first_child(clone)
|
|
);
|
|
var end = (
|
|
/** @type {TemplateNode} */
|
|
clone.lastChild
|
|
);
|
|
assign_nodes(start, end);
|
|
} else {
|
|
assign_nodes(clone, clone);
|
|
}
|
|
return clone;
|
|
};
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function from_namespace(content, flags2, ns = "svg") {
|
|
var has_start = !content.startsWith("<!>");
|
|
var is_fragment = (flags2 & TEMPLATE_FRAGMENT) !== 0;
|
|
var wrapped = `<${ns}>${has_start ? content : "<!>" + content}</${ns}>`;
|
|
var node;
|
|
return () => {
|
|
if (hydrating) {
|
|
assign_nodes(hydrate_node, null);
|
|
return hydrate_node;
|
|
}
|
|
if (!node) {
|
|
var fragment = (
|
|
/** @type {DocumentFragment} */
|
|
create_fragment_from_html(wrapped)
|
|
);
|
|
var root12 = (
|
|
/** @type {Element} */
|
|
get_first_child(fragment)
|
|
);
|
|
if (is_fragment) {
|
|
node = document.createDocumentFragment();
|
|
while (get_first_child(root12)) {
|
|
node.appendChild(
|
|
/** @type {TemplateNode} */
|
|
get_first_child(root12)
|
|
);
|
|
}
|
|
} else {
|
|
node = /** @type {Element} */
|
|
get_first_child(root12);
|
|
}
|
|
}
|
|
var clone = (
|
|
/** @type {TemplateNode} */
|
|
node.cloneNode(true)
|
|
);
|
|
if (is_fragment) {
|
|
var start = (
|
|
/** @type {TemplateNode} */
|
|
get_first_child(clone)
|
|
);
|
|
var end = (
|
|
/** @type {TemplateNode} */
|
|
clone.lastChild
|
|
);
|
|
assign_nodes(start, end);
|
|
} else {
|
|
assign_nodes(clone, clone);
|
|
}
|
|
return clone;
|
|
};
|
|
}
|
|
// @__NO_SIDE_EFFECTS__
|
|
function from_svg(content, flags2) {
|
|
return /* @__PURE__ */ from_namespace(content, flags2, "svg");
|
|
}
|
|
function text(value = "") {
|
|
if (!hydrating) {
|
|
var t = create_text(value + "");
|
|
assign_nodes(t, t);
|
|
return t;
|
|
}
|
|
var node = hydrate_node;
|
|
if (node.nodeType !== TEXT_NODE) {
|
|
node.before(node = create_text());
|
|
set_hydrate_node(node);
|
|
} else {
|
|
merge_text_nodes(
|
|
/** @type {Text} */
|
|
node
|
|
);
|
|
}
|
|
assign_nodes(node, node);
|
|
return node;
|
|
}
|
|
function comment() {
|
|
if (hydrating) {
|
|
assign_nodes(hydrate_node, null);
|
|
return hydrate_node;
|
|
}
|
|
var frag = document.createDocumentFragment();
|
|
var start = document.createComment("");
|
|
var anchor = create_text();
|
|
frag.append(start, anchor);
|
|
assign_nodes(start, anchor);
|
|
return frag;
|
|
}
|
|
function append(anchor, dom) {
|
|
if (hydrating) {
|
|
var effect2 = (
|
|
/** @type {Effect & { nodes: EffectNodes }} */
|
|
active_effect
|
|
);
|
|
if ((effect2.f & REACTION_RAN) === 0 || effect2.nodes.end === null) {
|
|
effect2.nodes.end = hydrate_node;
|
|
}
|
|
hydrate_next();
|
|
return;
|
|
}
|
|
if (anchor === null) {
|
|
return;
|
|
}
|
|
anchor.before(
|
|
/** @type {Node} */
|
|
dom
|
|
);
|
|
}
|
|
|
|
// node_modules/svelte/src/utils.js
|
|
function is_capture_event(name) {
|
|
return name.endsWith("capture") && name !== "gotpointercapture" && name !== "lostpointercapture";
|
|
}
|
|
var DELEGATED_EVENTS = [
|
|
"beforeinput",
|
|
"click",
|
|
"change",
|
|
"dblclick",
|
|
"contextmenu",
|
|
"focusin",
|
|
"focusout",
|
|
"input",
|
|
"keydown",
|
|
"keyup",
|
|
"mousedown",
|
|
"mousemove",
|
|
"mouseout",
|
|
"mouseover",
|
|
"mouseup",
|
|
"pointerdown",
|
|
"pointermove",
|
|
"pointerout",
|
|
"pointerover",
|
|
"pointerup",
|
|
"touchend",
|
|
"touchmove",
|
|
"touchstart"
|
|
];
|
|
function can_delegate_event(event_name) {
|
|
return DELEGATED_EVENTS.includes(event_name);
|
|
}
|
|
var DOM_BOOLEAN_ATTRIBUTES = [
|
|
"allowfullscreen",
|
|
"async",
|
|
"autofocus",
|
|
"autoplay",
|
|
"checked",
|
|
"controls",
|
|
"default",
|
|
"disabled",
|
|
"formnovalidate",
|
|
"indeterminate",
|
|
"inert",
|
|
"ismap",
|
|
"loop",
|
|
"multiple",
|
|
"muted",
|
|
"nomodule",
|
|
"novalidate",
|
|
"open",
|
|
"playsinline",
|
|
"readonly",
|
|
"required",
|
|
"reversed",
|
|
"seamless",
|
|
"selected",
|
|
"webkitdirectory",
|
|
"defer",
|
|
"disablepictureinpicture",
|
|
"disableremoteplayback"
|
|
];
|
|
var ATTRIBUTE_ALIASES = {
|
|
// no `class: 'className'` because we handle that separately
|
|
formnovalidate: "formNoValidate",
|
|
ismap: "isMap",
|
|
nomodule: "noModule",
|
|
playsinline: "playsInline",
|
|
readonly: "readOnly",
|
|
defaultvalue: "defaultValue",
|
|
defaultchecked: "defaultChecked",
|
|
srcobject: "srcObject",
|
|
novalidate: "noValidate",
|
|
allowfullscreen: "allowFullscreen",
|
|
disablepictureinpicture: "disablePictureInPicture",
|
|
disableremoteplayback: "disableRemotePlayback"
|
|
};
|
|
function normalize_attribute(name) {
|
|
var _a5;
|
|
name = name.toLowerCase();
|
|
return (_a5 = ATTRIBUTE_ALIASES[name]) != null ? _a5 : name;
|
|
}
|
|
var DOM_PROPERTIES = [
|
|
...DOM_BOOLEAN_ATTRIBUTES,
|
|
"formNoValidate",
|
|
"isMap",
|
|
"noModule",
|
|
"playsInline",
|
|
"readOnly",
|
|
"value",
|
|
"volume",
|
|
"defaultValue",
|
|
"defaultChecked",
|
|
"srcObject",
|
|
"noValidate",
|
|
"allowFullscreen",
|
|
"disablePictureInPicture",
|
|
"disableRemotePlayback"
|
|
];
|
|
var PASSIVE_EVENTS = ["touchstart", "touchmove"];
|
|
function is_passive_event(name) {
|
|
return PASSIVE_EVENTS.includes(name);
|
|
}
|
|
var STATE_CREATION_RUNES = (
|
|
/** @type {const} */
|
|
[
|
|
"$state",
|
|
"$state.raw",
|
|
"$derived",
|
|
"$derived.by"
|
|
]
|
|
);
|
|
var RUNES = (
|
|
/** @type {const} */
|
|
[
|
|
...STATE_CREATION_RUNES,
|
|
"$state.eager",
|
|
"$state.snapshot",
|
|
"$props",
|
|
"$props.id",
|
|
"$bindable",
|
|
"$effect",
|
|
"$effect.pre",
|
|
"$effect.tracking",
|
|
"$effect.root",
|
|
"$effect.pending",
|
|
"$inspect",
|
|
"$inspect().with",
|
|
"$inspect.trace",
|
|
"$host"
|
|
]
|
|
);
|
|
|
|
// node_modules/svelte/src/internal/client/render.js
|
|
var should_intro = true;
|
|
function set_text(text2, value) {
|
|
var _a5;
|
|
var str = value == null ? "" : typeof value === "object" ? `${value}` : value;
|
|
if (str !== ((_a5 = text2.__t) != null ? _a5 : text2.__t = text2.nodeValue)) {
|
|
text2.__t = str;
|
|
text2.nodeValue = `${str}`;
|
|
}
|
|
}
|
|
function mount(component2, options) {
|
|
return _mount(component2, options);
|
|
}
|
|
function hydrate(component2, options) {
|
|
var _a5;
|
|
init_operations();
|
|
options.intro = (_a5 = options.intro) != null ? _a5 : false;
|
|
const target = options.target;
|
|
const was_hydrating = hydrating;
|
|
const previous_hydrate_node = hydrate_node;
|
|
try {
|
|
var anchor = get_first_child(target);
|
|
while (anchor && (anchor.nodeType !== COMMENT_NODE || /** @type {Comment} */
|
|
anchor.data !== HYDRATION_START)) {
|
|
anchor = get_next_sibling(anchor);
|
|
}
|
|
if (!anchor) {
|
|
throw HYDRATION_ERROR;
|
|
}
|
|
set_hydrating(true);
|
|
set_hydrate_node(
|
|
/** @type {Comment} */
|
|
anchor
|
|
);
|
|
const instance = _mount(component2, { ...options, anchor });
|
|
set_hydrating(false);
|
|
return (
|
|
/** @type {Exports} */
|
|
instance
|
|
);
|
|
} catch (error) {
|
|
if (error instanceof Error && error.message.split("\n").some((line) => line.startsWith("https://svelte.dev/e/"))) {
|
|
throw error;
|
|
}
|
|
if (error !== HYDRATION_ERROR) {
|
|
console.warn("Failed to hydrate: ", error);
|
|
}
|
|
if (options.recover === false) {
|
|
hydration_failed();
|
|
}
|
|
init_operations();
|
|
clear_text_content(target);
|
|
set_hydrating(false);
|
|
return mount(component2, options);
|
|
} finally {
|
|
set_hydrating(was_hydrating);
|
|
set_hydrate_node(previous_hydrate_node);
|
|
}
|
|
}
|
|
var listeners = /* @__PURE__ */ new Map();
|
|
function _mount(Component2, { target, anchor, props = {}, events, context, intro = true, transformError }) {
|
|
init_operations();
|
|
var component2 = void 0;
|
|
var unmount2 = component_root(() => {
|
|
var anchor_node = anchor != null ? anchor : target.appendChild(create_text());
|
|
boundary(
|
|
/** @type {TemplateNode} */
|
|
anchor_node,
|
|
{
|
|
pending: () => {
|
|
}
|
|
},
|
|
(anchor_node2) => {
|
|
push({});
|
|
var ctx = (
|
|
/** @type {ComponentContext} */
|
|
component_context
|
|
);
|
|
if (context) ctx.c = context;
|
|
if (events) {
|
|
props.$$events = events;
|
|
}
|
|
if (hydrating) {
|
|
assign_nodes(
|
|
/** @type {TemplateNode} */
|
|
anchor_node2,
|
|
null
|
|
);
|
|
}
|
|
should_intro = intro;
|
|
component2 = Component2(anchor_node2, props) || {};
|
|
should_intro = true;
|
|
if (hydrating) {
|
|
active_effect.nodes.end = hydrate_node;
|
|
if (hydrate_node === null || hydrate_node.nodeType !== COMMENT_NODE || /** @type {Comment} */
|
|
hydrate_node.data !== HYDRATION_END) {
|
|
hydration_mismatch();
|
|
throw HYDRATION_ERROR;
|
|
}
|
|
}
|
|
pop();
|
|
},
|
|
transformError
|
|
);
|
|
var registered_events = /* @__PURE__ */ new Set();
|
|
var event_handle = (events2) => {
|
|
for (var i = 0; i < events2.length; i++) {
|
|
var event_name = events2[i];
|
|
if (registered_events.has(event_name)) continue;
|
|
registered_events.add(event_name);
|
|
var passive2 = is_passive_event(event_name);
|
|
for (const node of [target, document]) {
|
|
var counts = listeners.get(node);
|
|
if (counts === void 0) {
|
|
counts = /* @__PURE__ */ new Map();
|
|
listeners.set(node, counts);
|
|
}
|
|
var count = counts.get(event_name);
|
|
if (count === void 0) {
|
|
node.addEventListener(event_name, handle_event_propagation, { passive: passive2 });
|
|
counts.set(event_name, 1);
|
|
} else {
|
|
counts.set(event_name, count + 1);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
event_handle(array_from(all_registered_events));
|
|
root_event_handles.add(event_handle);
|
|
return () => {
|
|
var _a5;
|
|
for (var event_name of registered_events) {
|
|
for (const node of [target, document]) {
|
|
var counts = (
|
|
/** @type {Map<string, number>} */
|
|
listeners.get(node)
|
|
);
|
|
var count = (
|
|
/** @type {number} */
|
|
counts.get(event_name)
|
|
);
|
|
if (--count == 0) {
|
|
node.removeEventListener(event_name, handle_event_propagation);
|
|
counts.delete(event_name);
|
|
if (counts.size === 0) {
|
|
listeners.delete(node);
|
|
}
|
|
} else {
|
|
counts.set(event_name, count);
|
|
}
|
|
}
|
|
}
|
|
root_event_handles.delete(event_handle);
|
|
if (anchor_node !== anchor) {
|
|
(_a5 = anchor_node.parentNode) == null ? void 0 : _a5.removeChild(anchor_node);
|
|
}
|
|
};
|
|
});
|
|
mounted_components.set(component2, unmount2);
|
|
return component2;
|
|
}
|
|
var mounted_components = /* @__PURE__ */ new WeakMap();
|
|
function unmount(component2, options) {
|
|
const fn = mounted_components.get(component2);
|
|
if (fn) {
|
|
mounted_components.delete(component2);
|
|
return fn(options);
|
|
}
|
|
if (dev_fallback_default) {
|
|
if (STATE_SYMBOL in component2) {
|
|
state_proxy_unmount();
|
|
} else {
|
|
lifecycle_double_unmount();
|
|
}
|
|
}
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/legacy/event-modifiers.js
|
|
function stopPropagation(fn) {
|
|
return function(...args) {
|
|
var event2 = (
|
|
/** @type {Event} */
|
|
args[0]
|
|
);
|
|
event2.stopPropagation();
|
|
return fn == null ? void 0 : fn.apply(this, args);
|
|
};
|
|
}
|
|
function preventDefault(fn) {
|
|
return function(...args) {
|
|
var event2 = (
|
|
/** @type {Event} */
|
|
args[0]
|
|
);
|
|
event2.preventDefault();
|
|
return fn == null ? void 0 : fn.apply(this, args);
|
|
};
|
|
}
|
|
|
|
// node_modules/svelte/src/legacy/legacy-client.js
|
|
function createClassComponent(options) {
|
|
return new Svelte4Component(options);
|
|
}
|
|
var _events, _instance;
|
|
var Svelte4Component = class {
|
|
/**
|
|
* @param {ComponentConstructorOptions & {
|
|
* component: any;
|
|
* }} options
|
|
*/
|
|
constructor(options) {
|
|
/** @type {any} */
|
|
__privateAdd(this, _events);
|
|
/** @type {Record<string, any>} */
|
|
__privateAdd(this, _instance);
|
|
var _a5, _b3;
|
|
var sources = /* @__PURE__ */ new Map();
|
|
var add_source = (key2, value) => {
|
|
var s = mutable_source(value, false, false);
|
|
sources.set(key2, s);
|
|
return s;
|
|
};
|
|
const props = new Proxy(
|
|
{ ...options.props || {}, $$events: {} },
|
|
{
|
|
get(target, prop2) {
|
|
var _a6;
|
|
return get((_a6 = sources.get(prop2)) != null ? _a6 : add_source(prop2, Reflect.get(target, prop2)));
|
|
},
|
|
has(target, prop2) {
|
|
var _a6;
|
|
if (prop2 === LEGACY_PROPS) return true;
|
|
get((_a6 = sources.get(prop2)) != null ? _a6 : add_source(prop2, Reflect.get(target, prop2)));
|
|
return Reflect.has(target, prop2);
|
|
},
|
|
set(target, prop2, value) {
|
|
var _a6;
|
|
set((_a6 = sources.get(prop2)) != null ? _a6 : add_source(prop2, value), value);
|
|
return Reflect.set(target, prop2, value);
|
|
}
|
|
}
|
|
);
|
|
__privateSet(this, _instance, (options.hydrate ? hydrate : mount)(options.component, {
|
|
target: options.target,
|
|
anchor: options.anchor,
|
|
props,
|
|
context: options.context,
|
|
intro: (_a5 = options.intro) != null ? _a5 : false,
|
|
recover: options.recover,
|
|
transformError: options.transformError
|
|
}));
|
|
if (!async_mode_flag && (!((_b3 = options == null ? void 0 : options.props) == null ? void 0 : _b3.$$host) || options.sync === false)) {
|
|
flushSync();
|
|
}
|
|
__privateSet(this, _events, props.$$events);
|
|
for (const key2 of Object.keys(__privateGet(this, _instance))) {
|
|
if (key2 === "$set" || key2 === "$destroy" || key2 === "$on") continue;
|
|
define_property(this, key2, {
|
|
get() {
|
|
return __privateGet(this, _instance)[key2];
|
|
},
|
|
/** @param {any} value */
|
|
set(value) {
|
|
__privateGet(this, _instance)[key2] = value;
|
|
},
|
|
enumerable: true
|
|
});
|
|
}
|
|
__privateGet(this, _instance).$set = /** @param {Record<string, any>} next */
|
|
(next2) => {
|
|
Object.assign(props, next2);
|
|
};
|
|
__privateGet(this, _instance).$destroy = () => {
|
|
unmount(__privateGet(this, _instance));
|
|
};
|
|
}
|
|
/** @param {Record<string, any>} props */
|
|
$set(props) {
|
|
__privateGet(this, _instance).$set(props);
|
|
}
|
|
/**
|
|
* @param {string} event
|
|
* @param {(...args: any[]) => any} callback
|
|
* @returns {any}
|
|
*/
|
|
$on(event2, callback) {
|
|
__privateGet(this, _events)[event2] = __privateGet(this, _events)[event2] || [];
|
|
const cb = (...args) => callback.call(this, ...args);
|
|
__privateGet(this, _events)[event2].push(cb);
|
|
return () => {
|
|
__privateGet(this, _events)[event2] = __privateGet(this, _events)[event2].filter(
|
|
/** @param {any} fn */
|
|
(fn) => fn !== cb
|
|
);
|
|
};
|
|
}
|
|
$destroy() {
|
|
__privateGet(this, _instance).$destroy();
|
|
}
|
|
};
|
|
_events = new WeakMap();
|
|
_instance = new WeakMap();
|
|
|
|
// node_modules/svelte/src/version.js
|
|
var PUBLIC_VERSION = "5";
|
|
|
|
// node_modules/svelte/src/internal/disclose-version.js
|
|
var _a4, _b2, _c;
|
|
if (typeof window !== "undefined") {
|
|
((_c = (_b2 = (_a4 = window.__svelte) != null ? _a4 : window.__svelte = {}).v) != null ? _c : _b2.v = /* @__PURE__ */ new Set()).add(PUBLIC_VERSION);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/flags/legacy.js
|
|
enable_legacy_mode_flag();
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/branches.js
|
|
var _batches, _onscreen, _offscreen, _outroing, _transition, _commit, _discard;
|
|
var BranchManager = class {
|
|
/**
|
|
* @param {TemplateNode} anchor
|
|
* @param {boolean} transition
|
|
*/
|
|
constructor(anchor, transition2 = true) {
|
|
/** @type {TemplateNode} */
|
|
__publicField(this, "anchor");
|
|
/** @type {Map<Batch, Key>} */
|
|
__privateAdd(this, _batches, /* @__PURE__ */ new Map());
|
|
/**
|
|
* Map of keys to effects that are currently rendered in the DOM.
|
|
* These effects are visible and actively part of the document tree.
|
|
* Example:
|
|
* ```
|
|
* {#if condition}
|
|
* foo
|
|
* {:else}
|
|
* bar
|
|
* {/if}
|
|
* ```
|
|
* Can result in the entries `true->Effect` and `false->Effect`
|
|
* @type {Map<Key, Effect>}
|
|
*/
|
|
__privateAdd(this, _onscreen, /* @__PURE__ */ new Map());
|
|
/**
|
|
* Similar to #onscreen with respect to the keys, but contains branches that are not yet
|
|
* in the DOM, because their insertion is deferred.
|
|
* @type {Map<Key, Branch>}
|
|
*/
|
|
__privateAdd(this, _offscreen, /* @__PURE__ */ new Map());
|
|
/**
|
|
* Keys of effects that are currently outroing
|
|
* @type {Set<Key>}
|
|
*/
|
|
__privateAdd(this, _outroing, /* @__PURE__ */ new Set());
|
|
/**
|
|
* Whether to pause (i.e. outro) on change, or destroy immediately.
|
|
* This is necessary for `<svelte:element>`
|
|
*/
|
|
__privateAdd(this, _transition, true);
|
|
/**
|
|
* @param {Batch} batch
|
|
*/
|
|
__privateAdd(this, _commit, (batch) => {
|
|
if (!__privateGet(this, _batches).has(batch)) return;
|
|
var key2 = (
|
|
/** @type {Key} */
|
|
__privateGet(this, _batches).get(batch)
|
|
);
|
|
var onscreen = __privateGet(this, _onscreen).get(key2);
|
|
if (onscreen) {
|
|
resume_effect(onscreen);
|
|
__privateGet(this, _outroing).delete(key2);
|
|
} else {
|
|
var offscreen = __privateGet(this, _offscreen).get(key2);
|
|
if (offscreen) {
|
|
__privateGet(this, _onscreen).set(key2, offscreen.effect);
|
|
__privateGet(this, _offscreen).delete(key2);
|
|
offscreen.fragment.lastChild.remove();
|
|
this.anchor.before(offscreen.fragment);
|
|
onscreen = offscreen.effect;
|
|
}
|
|
}
|
|
for (const [b, k] of __privateGet(this, _batches)) {
|
|
__privateGet(this, _batches).delete(b);
|
|
if (b === batch) {
|
|
break;
|
|
}
|
|
const offscreen2 = __privateGet(this, _offscreen).get(k);
|
|
if (offscreen2) {
|
|
destroy_effect(offscreen2.effect);
|
|
__privateGet(this, _offscreen).delete(k);
|
|
}
|
|
}
|
|
for (const [k, effect2] of __privateGet(this, _onscreen)) {
|
|
if (k === key2 || __privateGet(this, _outroing).has(k)) continue;
|
|
const on_destroy = () => {
|
|
const keys = Array.from(__privateGet(this, _batches).values());
|
|
if (keys.includes(k)) {
|
|
var fragment = document.createDocumentFragment();
|
|
move_effect(effect2, fragment);
|
|
fragment.append(create_text());
|
|
__privateGet(this, _offscreen).set(k, { effect: effect2, fragment });
|
|
} else {
|
|
destroy_effect(effect2);
|
|
}
|
|
__privateGet(this, _outroing).delete(k);
|
|
__privateGet(this, _onscreen).delete(k);
|
|
};
|
|
if (__privateGet(this, _transition) || !onscreen) {
|
|
__privateGet(this, _outroing).add(k);
|
|
pause_effect(effect2, on_destroy, false);
|
|
} else {
|
|
on_destroy();
|
|
}
|
|
}
|
|
});
|
|
/**
|
|
* @param {Batch} batch
|
|
*/
|
|
__privateAdd(this, _discard, (batch) => {
|
|
__privateGet(this, _batches).delete(batch);
|
|
const keys = Array.from(__privateGet(this, _batches).values());
|
|
for (const [k, branch2] of __privateGet(this, _offscreen)) {
|
|
if (!keys.includes(k)) {
|
|
destroy_effect(branch2.effect);
|
|
__privateGet(this, _offscreen).delete(k);
|
|
}
|
|
}
|
|
});
|
|
this.anchor = anchor;
|
|
__privateSet(this, _transition, transition2);
|
|
}
|
|
/**
|
|
*
|
|
* @param {any} key
|
|
* @param {null | ((target: TemplateNode) => void)} fn
|
|
*/
|
|
ensure(key2, fn) {
|
|
var batch = (
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
var defer = should_defer_append();
|
|
if (fn && !__privateGet(this, _onscreen).has(key2) && !__privateGet(this, _offscreen).has(key2)) {
|
|
if (defer) {
|
|
var fragment = document.createDocumentFragment();
|
|
var target = create_text();
|
|
fragment.append(target);
|
|
__privateGet(this, _offscreen).set(key2, {
|
|
effect: branch(() => fn(target)),
|
|
fragment
|
|
});
|
|
} else {
|
|
__privateGet(this, _onscreen).set(
|
|
key2,
|
|
branch(() => fn(this.anchor))
|
|
);
|
|
}
|
|
}
|
|
__privateGet(this, _batches).set(batch, key2);
|
|
if (defer) {
|
|
for (const [k, effect2] of __privateGet(this, _onscreen)) {
|
|
if (k === key2) {
|
|
batch.unskip_effect(effect2);
|
|
} else {
|
|
batch.skip_effect(effect2);
|
|
}
|
|
}
|
|
for (const [k, branch2] of __privateGet(this, _offscreen)) {
|
|
if (k === key2) {
|
|
batch.unskip_effect(branch2.effect);
|
|
} else {
|
|
batch.skip_effect(branch2.effect);
|
|
}
|
|
}
|
|
batch.oncommit(__privateGet(this, _commit));
|
|
batch.ondiscard(__privateGet(this, _discard));
|
|
} else {
|
|
if (hydrating) {
|
|
this.anchor = hydrate_node;
|
|
}
|
|
__privateGet(this, _commit).call(this, batch);
|
|
}
|
|
}
|
|
};
|
|
_batches = new WeakMap();
|
|
_onscreen = new WeakMap();
|
|
_offscreen = new WeakMap();
|
|
_outroing = new WeakMap();
|
|
_transition = new WeakMap();
|
|
_commit = new WeakMap();
|
|
_discard = new WeakMap();
|
|
|
|
// node_modules/svelte/src/index-client.js
|
|
if (dev_fallback_default) {
|
|
let throw_rune_error = function(rune) {
|
|
if (!(rune in globalThis)) {
|
|
let value;
|
|
Object.defineProperty(globalThis, rune, {
|
|
configurable: true,
|
|
// eslint-disable-next-line getter-return
|
|
get: () => {
|
|
if (value !== void 0) {
|
|
return value;
|
|
}
|
|
rune_outside_svelte(rune);
|
|
},
|
|
set: (v) => {
|
|
value = v;
|
|
}
|
|
});
|
|
}
|
|
};
|
|
throw_rune_error("$state");
|
|
throw_rune_error("$effect");
|
|
throw_rune_error("$derived");
|
|
throw_rune_error("$inspect");
|
|
throw_rune_error("$props");
|
|
throw_rune_error("$bindable");
|
|
}
|
|
function onMount(fn) {
|
|
if (component_context === null) {
|
|
lifecycle_outside_component("onMount");
|
|
}
|
|
if (legacy_mode_flag && component_context.l !== null) {
|
|
init_update_callbacks(component_context).m.push(fn);
|
|
} else {
|
|
user_effect(() => {
|
|
const cleanup = untrack(fn);
|
|
if (typeof cleanup === "function") return (
|
|
/** @type {() => void} */
|
|
cleanup
|
|
);
|
|
});
|
|
}
|
|
}
|
|
function onDestroy(fn) {
|
|
if (component_context === null) {
|
|
lifecycle_outside_component("onDestroy");
|
|
}
|
|
onMount(() => () => untrack(fn));
|
|
}
|
|
function create_custom_event(type, detail, { bubbles = false, cancelable = false } = {}) {
|
|
return new CustomEvent(type, { detail, bubbles, cancelable });
|
|
}
|
|
function createEventDispatcher() {
|
|
const active_component_context = component_context;
|
|
if (active_component_context === null) {
|
|
lifecycle_outside_component("createEventDispatcher");
|
|
}
|
|
return (type, detail, options) => {
|
|
var _a5;
|
|
const events = (
|
|
/** @type {Record<string, Function | Function[]>} */
|
|
(_a5 = active_component_context.s.$$events) == null ? void 0 : _a5[
|
|
/** @type {string} */
|
|
type
|
|
]
|
|
);
|
|
if (events) {
|
|
const callbacks = is_array(events) ? events.slice() : [events];
|
|
const event2 = create_custom_event(
|
|
/** @type {string} */
|
|
type,
|
|
detail,
|
|
options
|
|
);
|
|
for (const fn of callbacks) {
|
|
fn.call(active_component_context.x, event2);
|
|
}
|
|
return !event2.defaultPrevented;
|
|
}
|
|
return true;
|
|
};
|
|
}
|
|
function beforeUpdate(fn) {
|
|
if (component_context === null) {
|
|
lifecycle_outside_component("beforeUpdate");
|
|
}
|
|
if (component_context.l === null) {
|
|
lifecycle_legacy_only("beforeUpdate");
|
|
}
|
|
init_update_callbacks(component_context).b.push(fn);
|
|
}
|
|
function init_update_callbacks(context) {
|
|
var _a5;
|
|
var l = (
|
|
/** @type {ComponentContextLegacy} */
|
|
context.l
|
|
);
|
|
return (_a5 = l.u) != null ? _a5 : l.u = { a: [], b: [], m: [] };
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dev/css.js
|
|
var all_styles = /* @__PURE__ */ new Map();
|
|
function register_style(hash2, style) {
|
|
var styles = all_styles.get(hash2);
|
|
if (!styles) {
|
|
styles = /* @__PURE__ */ new Set();
|
|
all_styles.set(hash2, styles);
|
|
}
|
|
styles.add(style);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/if.js
|
|
function if_block(node, fn, elseif = false) {
|
|
var marker;
|
|
if (hydrating) {
|
|
marker = hydrate_node;
|
|
hydrate_next();
|
|
}
|
|
var branches = new BranchManager(node);
|
|
var flags2 = elseif ? EFFECT_TRANSPARENT : 0;
|
|
function update_branch(key2, fn2) {
|
|
if (hydrating) {
|
|
var data = read_hydration_instruction(
|
|
/** @type {TemplateNode} */
|
|
marker
|
|
);
|
|
if (key2 !== parseInt(data.substring(1))) {
|
|
var anchor = skip_nodes();
|
|
set_hydrate_node(anchor);
|
|
branches.anchor = anchor;
|
|
set_hydrating(false);
|
|
branches.ensure(key2, fn2);
|
|
set_hydrating(true);
|
|
return;
|
|
}
|
|
}
|
|
branches.ensure(key2, fn2);
|
|
}
|
|
block(() => {
|
|
var has_branch = false;
|
|
fn((fn2, key2 = 0) => {
|
|
has_branch = true;
|
|
update_branch(key2, fn2);
|
|
});
|
|
if (!has_branch) {
|
|
update_branch(-1, null);
|
|
}
|
|
}, flags2);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/css-props.js
|
|
function css_props(element2, get_styles) {
|
|
if (hydrating) {
|
|
set_hydrate_node(get_first_child(element2));
|
|
}
|
|
render_effect(() => {
|
|
var styles = get_styles();
|
|
for (var key2 in styles) {
|
|
var value = styles[key2];
|
|
if (value) {
|
|
element2.style.setProperty(key2, value);
|
|
} else {
|
|
element2.style.removeProperty(key2);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/each.js
|
|
function index(_, i) {
|
|
return i;
|
|
}
|
|
function pause_effects(state2, to_destroy, controlled_anchor) {
|
|
var _a5;
|
|
var transitions = [];
|
|
var length = to_destroy.length;
|
|
var group;
|
|
var remaining = to_destroy.length;
|
|
for (var i = 0; i < length; i++) {
|
|
let effect2 = to_destroy[i];
|
|
pause_effect(
|
|
effect2,
|
|
() => {
|
|
if (group) {
|
|
group.pending.delete(effect2);
|
|
group.done.add(effect2);
|
|
if (group.pending.size === 0) {
|
|
var groups = (
|
|
/** @type {Set<EachOutroGroup>} */
|
|
state2.outrogroups
|
|
);
|
|
destroy_effects(state2, array_from(group.done));
|
|
groups.delete(group);
|
|
if (groups.size === 0) {
|
|
state2.outrogroups = null;
|
|
}
|
|
}
|
|
} else {
|
|
remaining -= 1;
|
|
}
|
|
},
|
|
false
|
|
);
|
|
}
|
|
if (remaining === 0) {
|
|
var fast_path = transitions.length === 0 && controlled_anchor !== null;
|
|
if (fast_path) {
|
|
var anchor = (
|
|
/** @type {Element} */
|
|
controlled_anchor
|
|
);
|
|
var parent_node = (
|
|
/** @type {Element} */
|
|
anchor.parentNode
|
|
);
|
|
clear_text_content(parent_node);
|
|
parent_node.append(anchor);
|
|
state2.items.clear();
|
|
}
|
|
destroy_effects(state2, to_destroy, !fast_path);
|
|
} else {
|
|
group = {
|
|
pending: new Set(to_destroy),
|
|
done: /* @__PURE__ */ new Set()
|
|
};
|
|
((_a5 = state2.outrogroups) != null ? _a5 : state2.outrogroups = /* @__PURE__ */ new Set()).add(group);
|
|
}
|
|
}
|
|
function destroy_effects(state2, to_destroy, remove_dom = true) {
|
|
var preserved_effects;
|
|
if (state2.pending.size > 0) {
|
|
preserved_effects = /* @__PURE__ */ new Set();
|
|
for (const keys of state2.pending.values()) {
|
|
for (const key2 of keys) {
|
|
preserved_effects.add(
|
|
/** @type {EachItem} */
|
|
state2.items.get(key2).e
|
|
);
|
|
}
|
|
}
|
|
}
|
|
for (var i = 0; i < to_destroy.length; i++) {
|
|
var e = to_destroy[i];
|
|
if (preserved_effects == null ? void 0 : preserved_effects.has(e)) {
|
|
e.f |= EFFECT_OFFSCREEN;
|
|
const fragment = document.createDocumentFragment();
|
|
move_effect(e, fragment);
|
|
} else {
|
|
destroy_effect(to_destroy[i], remove_dom);
|
|
}
|
|
}
|
|
}
|
|
var offscreen_anchor;
|
|
function each(node, flags2, get_collection, get_key, render_fn2, fallback_fn = null) {
|
|
var anchor = node;
|
|
var items = /* @__PURE__ */ new Map();
|
|
var is_controlled = (flags2 & EACH_IS_CONTROLLED) !== 0;
|
|
if (is_controlled) {
|
|
var parent_node = (
|
|
/** @type {Element} */
|
|
node
|
|
);
|
|
anchor = hydrating ? set_hydrate_node(get_first_child(parent_node)) : parent_node.appendChild(create_text());
|
|
}
|
|
if (hydrating) {
|
|
hydrate_next();
|
|
}
|
|
var fallback2 = null;
|
|
var each_array = derived_safe_equal(() => {
|
|
var collection = get_collection();
|
|
return is_array(collection) ? collection : collection == null ? [] : array_from(collection);
|
|
});
|
|
var array;
|
|
var pending2 = /* @__PURE__ */ new Map();
|
|
var first_run = true;
|
|
function commit(batch) {
|
|
if ((state2.effect.f & DESTROYED) !== 0) {
|
|
return;
|
|
}
|
|
state2.pending.delete(batch);
|
|
state2.fallback = fallback2;
|
|
reconcile(state2, array, anchor, flags2, get_key);
|
|
if (fallback2 !== null) {
|
|
if (array.length === 0) {
|
|
if ((fallback2.f & EFFECT_OFFSCREEN) === 0) {
|
|
resume_effect(fallback2);
|
|
} else {
|
|
fallback2.f ^= EFFECT_OFFSCREEN;
|
|
move(fallback2, null, anchor);
|
|
}
|
|
} else {
|
|
pause_effect(fallback2, () => {
|
|
fallback2 = null;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
function discard(batch) {
|
|
state2.pending.delete(batch);
|
|
}
|
|
var effect2 = block(() => {
|
|
array = /** @type {V[]} */
|
|
get(each_array);
|
|
var length = array.length;
|
|
let mismatch = false;
|
|
if (hydrating) {
|
|
var is_else = read_hydration_instruction(anchor) === HYDRATION_START_ELSE;
|
|
if (is_else !== (length === 0)) {
|
|
anchor = skip_nodes();
|
|
set_hydrate_node(anchor);
|
|
set_hydrating(false);
|
|
mismatch = true;
|
|
}
|
|
}
|
|
var keys = /* @__PURE__ */ new Set();
|
|
var batch = (
|
|
/** @type {Batch} */
|
|
current_batch
|
|
);
|
|
var defer = should_defer_append();
|
|
for (var index2 = 0; index2 < length; index2 += 1) {
|
|
if (hydrating && hydrate_node.nodeType === COMMENT_NODE && /** @type {Comment} */
|
|
hydrate_node.data === HYDRATION_END) {
|
|
anchor = /** @type {Comment} */
|
|
hydrate_node;
|
|
mismatch = true;
|
|
set_hydrating(false);
|
|
}
|
|
var value = array[index2];
|
|
var key2 = get_key(value, index2);
|
|
if (dev_fallback_default) {
|
|
var key_again = get_key(value, index2);
|
|
if (key2 !== key_again) {
|
|
each_key_volatile(String(index2), String(key2), String(key_again));
|
|
}
|
|
}
|
|
var item = first_run ? null : items.get(key2);
|
|
if (item) {
|
|
if (item.v) internal_set(item.v, value);
|
|
if (item.i) internal_set(item.i, index2);
|
|
if (defer) {
|
|
batch.unskip_effect(item.e);
|
|
}
|
|
} else {
|
|
item = create_item(
|
|
items,
|
|
first_run ? anchor : offscreen_anchor != null ? offscreen_anchor : offscreen_anchor = create_text(),
|
|
value,
|
|
key2,
|
|
index2,
|
|
render_fn2,
|
|
flags2,
|
|
get_collection
|
|
);
|
|
if (!first_run) {
|
|
item.e.f |= EFFECT_OFFSCREEN;
|
|
}
|
|
items.set(key2, item);
|
|
}
|
|
keys.add(key2);
|
|
}
|
|
if (length === 0 && fallback_fn && !fallback2) {
|
|
if (first_run) {
|
|
fallback2 = branch(() => fallback_fn(anchor));
|
|
} else {
|
|
fallback2 = branch(() => fallback_fn(offscreen_anchor != null ? offscreen_anchor : offscreen_anchor = create_text()));
|
|
fallback2.f |= EFFECT_OFFSCREEN;
|
|
}
|
|
}
|
|
if (length > keys.size) {
|
|
if (dev_fallback_default) {
|
|
validate_each_keys(array, get_key);
|
|
} else {
|
|
each_key_duplicate("", "", "");
|
|
}
|
|
}
|
|
if (hydrating && length > 0) {
|
|
set_hydrate_node(skip_nodes());
|
|
}
|
|
if (!first_run) {
|
|
pending2.set(batch, keys);
|
|
if (defer) {
|
|
for (const [key3, item2] of items) {
|
|
if (!keys.has(key3)) {
|
|
batch.skip_effect(item2.e);
|
|
}
|
|
}
|
|
batch.oncommit(commit);
|
|
batch.ondiscard(discard);
|
|
} else {
|
|
commit(batch);
|
|
}
|
|
}
|
|
if (mismatch) {
|
|
set_hydrating(true);
|
|
}
|
|
get(each_array);
|
|
});
|
|
var state2 = { effect: effect2, flags: flags2, items, pending: pending2, outrogroups: null, fallback: fallback2 };
|
|
first_run = false;
|
|
if (hydrating) {
|
|
anchor = hydrate_node;
|
|
}
|
|
}
|
|
function skip_to_branch(effect2) {
|
|
while (effect2 !== null && (effect2.f & BRANCH_EFFECT) === 0) {
|
|
effect2 = effect2.next;
|
|
}
|
|
return effect2;
|
|
}
|
|
function reconcile(state2, array, anchor, flags2, get_key) {
|
|
var _a5, _b3, _c2, _d, _e, _f, _g, _h, _i;
|
|
var is_animated = (flags2 & EACH_IS_ANIMATED) !== 0;
|
|
var length = array.length;
|
|
var items = state2.items;
|
|
var current = skip_to_branch(state2.effect.first);
|
|
var seen;
|
|
var prev = null;
|
|
var to_animate;
|
|
var matched = [];
|
|
var stashed = [];
|
|
var value;
|
|
var key2;
|
|
var effect2;
|
|
var i;
|
|
if (is_animated) {
|
|
for (i = 0; i < length; i += 1) {
|
|
value = array[i];
|
|
key2 = get_key(value, i);
|
|
effect2 = /** @type {EachItem} */
|
|
items.get(key2).e;
|
|
if ((effect2.f & EFFECT_OFFSCREEN) === 0) {
|
|
(_b3 = (_a5 = effect2.nodes) == null ? void 0 : _a5.a) == null ? void 0 : _b3.measure();
|
|
(to_animate != null ? to_animate : to_animate = /* @__PURE__ */ new Set()).add(effect2);
|
|
}
|
|
}
|
|
}
|
|
for (i = 0; i < length; i += 1) {
|
|
value = array[i];
|
|
key2 = get_key(value, i);
|
|
effect2 = /** @type {EachItem} */
|
|
items.get(key2).e;
|
|
if (state2.outrogroups !== null) {
|
|
for (const group of state2.outrogroups) {
|
|
group.pending.delete(effect2);
|
|
group.done.delete(effect2);
|
|
}
|
|
}
|
|
if ((effect2.f & EFFECT_OFFSCREEN) !== 0) {
|
|
effect2.f ^= EFFECT_OFFSCREEN;
|
|
if (effect2 === current) {
|
|
move(effect2, null, anchor);
|
|
} else {
|
|
var next2 = prev ? prev.next : current;
|
|
if (effect2 === state2.effect.last) {
|
|
state2.effect.last = effect2.prev;
|
|
}
|
|
if (effect2.prev) effect2.prev.next = effect2.next;
|
|
if (effect2.next) effect2.next.prev = effect2.prev;
|
|
link(state2, prev, effect2);
|
|
link(state2, effect2, next2);
|
|
move(effect2, next2, anchor);
|
|
prev = effect2;
|
|
matched = [];
|
|
stashed = [];
|
|
current = skip_to_branch(prev.next);
|
|
continue;
|
|
}
|
|
}
|
|
if ((effect2.f & INERT) !== 0) {
|
|
resume_effect(effect2);
|
|
if (is_animated) {
|
|
(_d = (_c2 = effect2.nodes) == null ? void 0 : _c2.a) == null ? void 0 : _d.unfix();
|
|
(to_animate != null ? to_animate : to_animate = /* @__PURE__ */ new Set()).delete(effect2);
|
|
}
|
|
}
|
|
if (effect2 !== current) {
|
|
if (seen !== void 0 && seen.has(effect2)) {
|
|
if (matched.length < stashed.length) {
|
|
var start = stashed[0];
|
|
var j;
|
|
prev = start.prev;
|
|
var a = matched[0];
|
|
var b = matched[matched.length - 1];
|
|
for (j = 0; j < matched.length; j += 1) {
|
|
move(matched[j], start, anchor);
|
|
}
|
|
for (j = 0; j < stashed.length; j += 1) {
|
|
seen.delete(stashed[j]);
|
|
}
|
|
link(state2, a.prev, b.next);
|
|
link(state2, prev, a);
|
|
link(state2, b, start);
|
|
current = start;
|
|
prev = b;
|
|
i -= 1;
|
|
matched = [];
|
|
stashed = [];
|
|
} else {
|
|
seen.delete(effect2);
|
|
move(effect2, current, anchor);
|
|
link(state2, effect2.prev, effect2.next);
|
|
link(state2, effect2, prev === null ? state2.effect.first : prev.next);
|
|
link(state2, prev, effect2);
|
|
prev = effect2;
|
|
}
|
|
continue;
|
|
}
|
|
matched = [];
|
|
stashed = [];
|
|
while (current !== null && current !== effect2) {
|
|
(seen != null ? seen : seen = /* @__PURE__ */ new Set()).add(current);
|
|
stashed.push(current);
|
|
current = skip_to_branch(current.next);
|
|
}
|
|
if (current === null) {
|
|
continue;
|
|
}
|
|
}
|
|
if ((effect2.f & EFFECT_OFFSCREEN) === 0) {
|
|
matched.push(effect2);
|
|
}
|
|
prev = effect2;
|
|
current = skip_to_branch(effect2.next);
|
|
}
|
|
if (state2.outrogroups !== null) {
|
|
for (const group of state2.outrogroups) {
|
|
if (group.pending.size === 0) {
|
|
destroy_effects(state2, array_from(group.done));
|
|
(_e = state2.outrogroups) == null ? void 0 : _e.delete(group);
|
|
}
|
|
}
|
|
if (state2.outrogroups.size === 0) {
|
|
state2.outrogroups = null;
|
|
}
|
|
}
|
|
if (current !== null || seen !== void 0) {
|
|
var to_destroy = [];
|
|
if (seen !== void 0) {
|
|
for (effect2 of seen) {
|
|
if ((effect2.f & INERT) === 0) {
|
|
to_destroy.push(effect2);
|
|
}
|
|
}
|
|
}
|
|
while (current !== null) {
|
|
if ((current.f & INERT) === 0 && current !== state2.fallback) {
|
|
to_destroy.push(current);
|
|
}
|
|
current = skip_to_branch(current.next);
|
|
}
|
|
var destroy_length = to_destroy.length;
|
|
if (destroy_length > 0) {
|
|
var controlled_anchor = (flags2 & EACH_IS_CONTROLLED) !== 0 && length === 0 ? anchor : null;
|
|
if (is_animated) {
|
|
for (i = 0; i < destroy_length; i += 1) {
|
|
(_g = (_f = to_destroy[i].nodes) == null ? void 0 : _f.a) == null ? void 0 : _g.measure();
|
|
}
|
|
for (i = 0; i < destroy_length; i += 1) {
|
|
(_i = (_h = to_destroy[i].nodes) == null ? void 0 : _h.a) == null ? void 0 : _i.fix();
|
|
}
|
|
}
|
|
pause_effects(state2, to_destroy, controlled_anchor);
|
|
}
|
|
}
|
|
if (is_animated) {
|
|
queue_micro_task(() => {
|
|
var _a6, _b4;
|
|
if (to_animate === void 0) return;
|
|
for (effect2 of to_animate) {
|
|
(_b4 = (_a6 = effect2.nodes) == null ? void 0 : _a6.a) == null ? void 0 : _b4.apply();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
function create_item(items, anchor, value, key2, index2, render_fn2, flags2, get_collection) {
|
|
var v = (flags2 & EACH_ITEM_REACTIVE) !== 0 ? (flags2 & EACH_ITEM_IMMUTABLE) === 0 ? mutable_source(value, false, false) : source(value) : null;
|
|
var i = (flags2 & EACH_INDEX_REACTIVE) !== 0 ? source(index2) : null;
|
|
if (dev_fallback_default && v) {
|
|
v.trace = () => {
|
|
var _a5;
|
|
get_collection()[(_a5 = i == null ? void 0 : i.v) != null ? _a5 : index2];
|
|
};
|
|
}
|
|
return {
|
|
v,
|
|
i,
|
|
e: branch(() => {
|
|
render_fn2(anchor, v != null ? v : value, i != null ? i : index2, get_collection);
|
|
return () => {
|
|
items.delete(key2);
|
|
};
|
|
})
|
|
};
|
|
}
|
|
function move(effect2, next2, anchor) {
|
|
if (!effect2.nodes) return;
|
|
var node = effect2.nodes.start;
|
|
var end = effect2.nodes.end;
|
|
var dest = next2 && (next2.f & EFFECT_OFFSCREEN) === 0 ? (
|
|
/** @type {EffectNodes} */
|
|
next2.nodes.start
|
|
) : anchor;
|
|
while (node !== null) {
|
|
var next_node = (
|
|
/** @type {TemplateNode} */
|
|
get_next_sibling(node)
|
|
);
|
|
dest.before(node);
|
|
if (node === end) {
|
|
return;
|
|
}
|
|
node = next_node;
|
|
}
|
|
}
|
|
function link(state2, prev, next2) {
|
|
if (prev === null) {
|
|
state2.effect.first = next2;
|
|
} else {
|
|
prev.next = next2;
|
|
}
|
|
if (next2 === null) {
|
|
state2.effect.last = prev;
|
|
} else {
|
|
next2.prev = prev;
|
|
}
|
|
}
|
|
function validate_each_keys(array, key_fn) {
|
|
const keys = /* @__PURE__ */ new Map();
|
|
const length = array.length;
|
|
for (let i = 0; i < length; i++) {
|
|
const key2 = key_fn(array[i], i);
|
|
if (keys.has(key2)) {
|
|
const a = String(keys.get(key2));
|
|
const b = String(i);
|
|
let k = String(key2);
|
|
if (k.startsWith("[object ")) k = null;
|
|
each_key_duplicate(a, b, k);
|
|
}
|
|
keys.set(key2, i);
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/blocks/slot.js
|
|
function slot(anchor, $$props, name, slot_props, fallback_fn) {
|
|
var _a5;
|
|
if (hydrating) {
|
|
hydrate_next();
|
|
}
|
|
var slot_fn = (_a5 = $$props.$$slots) == null ? void 0 : _a5[name];
|
|
var is_interop = false;
|
|
if (slot_fn === true) {
|
|
slot_fn = $$props[name === "default" ? "children" : name];
|
|
is_interop = true;
|
|
}
|
|
if (slot_fn === void 0) {
|
|
if (fallback_fn !== null) {
|
|
fallback_fn(anchor);
|
|
}
|
|
} else {
|
|
slot_fn(anchor, is_interop ? () => slot_props : slot_props);
|
|
}
|
|
}
|
|
function sanitize_slots(props) {
|
|
const sanitized = {};
|
|
if (props.children) sanitized.default = true;
|
|
for (const key2 in props.$$slots) {
|
|
sanitized[key2] = true;
|
|
}
|
|
return sanitized;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/css.js
|
|
function append_styles(anchor, css) {
|
|
effect(() => {
|
|
var _a5;
|
|
var root12 = anchor.getRootNode();
|
|
var target = (
|
|
/** @type {ShadowRoot} */
|
|
root12.host ? (
|
|
/** @type {ShadowRoot} */
|
|
root12
|
|
) : (
|
|
/** @type {Document} */
|
|
(_a5 = root12.head) != null ? _a5 : (
|
|
/** @type {Document} */
|
|
root12.ownerDocument.head
|
|
)
|
|
)
|
|
);
|
|
if (!target.querySelector("#" + css.hash)) {
|
|
const style = create_element("style");
|
|
style.id = css.hash;
|
|
style.textContent = css.code;
|
|
target.appendChild(style);
|
|
if (dev_fallback_default) {
|
|
register_style(css.hash, style);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/actions.js
|
|
function action(dom, action2, get_value) {
|
|
effect(() => {
|
|
var payload = untrack(() => action2(dom, get_value == null ? void 0 : get_value()) || {});
|
|
if (get_value && (payload == null ? void 0 : payload.update)) {
|
|
var inited = false;
|
|
var prev = (
|
|
/** @type {any} */
|
|
{}
|
|
);
|
|
render_effect(() => {
|
|
var value = get_value();
|
|
deep_read_state(value);
|
|
if (inited && safe_not_equal(prev, value)) {
|
|
prev = value;
|
|
payload.update(value);
|
|
}
|
|
});
|
|
inited = true;
|
|
}
|
|
if (payload == null ? void 0 : payload.destroy) {
|
|
return () => (
|
|
/** @type {Function} */
|
|
payload.destroy()
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/attachments.js
|
|
function attach(node, get_fn) {
|
|
var fn = void 0;
|
|
var e;
|
|
managed(() => {
|
|
if (fn !== (fn = get_fn())) {
|
|
if (e) {
|
|
destroy_effect(e);
|
|
e = null;
|
|
}
|
|
if (fn) {
|
|
e = branch(() => {
|
|
effect(() => (
|
|
/** @type {(node: Element) => void} */
|
|
fn(node)
|
|
));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// node_modules/clsx/dist/clsx.mjs
|
|
function r(e) {
|
|
var t, f, n = "";
|
|
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
else if ("object" == typeof e) if (Array.isArray(e)) {
|
|
var o = e.length;
|
|
for (t = 0; t < o; t++) e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
|
|
} else for (f in e) e[f] && (n && (n += " "), n += f);
|
|
return n;
|
|
}
|
|
function clsx() {
|
|
for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++) (e = arguments[f]) && (t = r(e)) && (n && (n += " "), n += t);
|
|
return n;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/shared/attributes.js
|
|
function clsx2(value) {
|
|
if (typeof value === "object") {
|
|
return clsx(value);
|
|
} else {
|
|
return value != null ? value : "";
|
|
}
|
|
}
|
|
var whitespace = [..." \n\r\f\xA0\v\uFEFF"];
|
|
function to_class(value, hash2, directives) {
|
|
var classname = value == null ? "" : "" + value;
|
|
if (hash2) {
|
|
classname = classname ? classname + " " + hash2 : hash2;
|
|
}
|
|
if (directives) {
|
|
for (var key2 of Object.keys(directives)) {
|
|
if (directives[key2]) {
|
|
classname = classname ? classname + " " + key2 : key2;
|
|
} else if (classname.length) {
|
|
var len = key2.length;
|
|
var a = 0;
|
|
while ((a = classname.indexOf(key2, a)) >= 0) {
|
|
var b = a + len;
|
|
if ((a === 0 || whitespace.includes(classname[a - 1])) && (b === classname.length || whitespace.includes(classname[b]))) {
|
|
classname = (a === 0 ? "" : classname.substring(0, a)) + classname.substring(b + 1);
|
|
} else {
|
|
a = b;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return classname === "" ? null : classname;
|
|
}
|
|
function append_styles2(styles, important = false) {
|
|
var separator = important ? " !important;" : ";";
|
|
var css = "";
|
|
for (var key2 of Object.keys(styles)) {
|
|
var value = styles[key2];
|
|
if (value != null && value !== "") {
|
|
css += " " + key2 + ": " + value + separator;
|
|
}
|
|
}
|
|
return css;
|
|
}
|
|
function to_css_name(name) {
|
|
if (name[0] !== "-" || name[1] !== "-") {
|
|
return name.toLowerCase();
|
|
}
|
|
return name;
|
|
}
|
|
function to_style(value, styles) {
|
|
if (styles) {
|
|
var new_style = "";
|
|
var normal_styles;
|
|
var important_styles;
|
|
if (Array.isArray(styles)) {
|
|
normal_styles = styles[0];
|
|
important_styles = styles[1];
|
|
} else {
|
|
normal_styles = styles;
|
|
}
|
|
if (value) {
|
|
value = String(value).replaceAll(/\s*\/\*.*?\*\/\s*/g, "").trim();
|
|
var in_str = false;
|
|
var in_apo = 0;
|
|
var in_comment = false;
|
|
var reserved_names = [];
|
|
if (normal_styles) {
|
|
reserved_names.push(...Object.keys(normal_styles).map(to_css_name));
|
|
}
|
|
if (important_styles) {
|
|
reserved_names.push(...Object.keys(important_styles).map(to_css_name));
|
|
}
|
|
var start_index = 0;
|
|
var name_index = -1;
|
|
const len = value.length;
|
|
for (var i = 0; i < len; i++) {
|
|
var c = value[i];
|
|
if (in_comment) {
|
|
if (c === "/" && value[i - 1] === "*") {
|
|
in_comment = false;
|
|
}
|
|
} else if (in_str) {
|
|
if (in_str === c) {
|
|
in_str = false;
|
|
}
|
|
} else if (c === "/" && value[i + 1] === "*") {
|
|
in_comment = true;
|
|
} else if (c === '"' || c === "'") {
|
|
in_str = c;
|
|
} else if (c === "(") {
|
|
in_apo++;
|
|
} else if (c === ")") {
|
|
in_apo--;
|
|
}
|
|
if (!in_comment && in_str === false && in_apo === 0) {
|
|
if (c === ":" && name_index === -1) {
|
|
name_index = i;
|
|
} else if (c === ";" || i === len - 1) {
|
|
if (name_index !== -1) {
|
|
var name = to_css_name(value.substring(start_index, name_index).trim());
|
|
if (!reserved_names.includes(name)) {
|
|
if (c !== ";") {
|
|
i++;
|
|
}
|
|
var property = value.substring(start_index, i).trim();
|
|
new_style += " " + property + ";";
|
|
}
|
|
}
|
|
start_index = i + 1;
|
|
name_index = -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (normal_styles) {
|
|
new_style += append_styles2(normal_styles);
|
|
}
|
|
if (important_styles) {
|
|
new_style += append_styles2(important_styles, true);
|
|
}
|
|
new_style = new_style.trim();
|
|
return new_style === "" ? null : new_style;
|
|
}
|
|
return value == null ? null : String(value);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/class.js
|
|
function set_class(dom, is_html, value, hash2, prev_classes, next_classes) {
|
|
var prev = dom.__className;
|
|
if (hydrating || prev !== value || prev === void 0) {
|
|
var next_class_name = to_class(value, hash2, next_classes);
|
|
if (!hydrating || next_class_name !== dom.getAttribute("class")) {
|
|
if (next_class_name == null) {
|
|
dom.removeAttribute("class");
|
|
} else if (is_html) {
|
|
dom.className = next_class_name;
|
|
} else {
|
|
dom.setAttribute("class", next_class_name);
|
|
}
|
|
}
|
|
dom.__className = value;
|
|
} else if (next_classes && prev_classes !== next_classes) {
|
|
for (var key2 in next_classes) {
|
|
var is_present = !!next_classes[key2];
|
|
if (prev_classes == null || is_present !== !!prev_classes[key2]) {
|
|
dom.classList.toggle(key2, is_present);
|
|
}
|
|
}
|
|
}
|
|
return next_classes;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/style.js
|
|
function update_styles(dom, prev = {}, next2, priority) {
|
|
for (var key2 in next2) {
|
|
var value = next2[key2];
|
|
if (prev[key2] !== value) {
|
|
if (next2[key2] == null) {
|
|
dom.style.removeProperty(key2);
|
|
} else {
|
|
dom.style.setProperty(key2, value, priority);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function set_style(dom, value, prev_styles, next_styles) {
|
|
var prev = dom.__style;
|
|
if (hydrating || prev !== value) {
|
|
var next_style_attr = to_style(value, next_styles);
|
|
if (!hydrating || next_style_attr !== dom.getAttribute("style")) {
|
|
if (next_style_attr == null) {
|
|
dom.removeAttribute("style");
|
|
} else {
|
|
dom.style.cssText = next_style_attr;
|
|
}
|
|
}
|
|
dom.__style = value;
|
|
} else if (next_styles) {
|
|
if (Array.isArray(next_styles)) {
|
|
update_styles(dom, prev_styles == null ? void 0 : prev_styles[0], next_styles[0]);
|
|
update_styles(dom, prev_styles == null ? void 0 : prev_styles[1], next_styles[1], "important");
|
|
} else {
|
|
update_styles(dom, prev_styles, next_styles);
|
|
}
|
|
}
|
|
return next_styles;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/bindings/select.js
|
|
function select_option(select, value, mounting = false) {
|
|
if (select.multiple) {
|
|
if (value == void 0) {
|
|
return;
|
|
}
|
|
if (!is_array(value)) {
|
|
return select_multiple_invalid_value();
|
|
}
|
|
for (var option of select.options) {
|
|
option.selected = value.includes(get_option_value(option));
|
|
}
|
|
return;
|
|
}
|
|
for (option of select.options) {
|
|
var option_value = get_option_value(option);
|
|
if (is(option_value, value)) {
|
|
option.selected = true;
|
|
return;
|
|
}
|
|
}
|
|
if (!mounting || value !== void 0) {
|
|
select.selectedIndex = -1;
|
|
}
|
|
}
|
|
function init_select(select) {
|
|
var observer = new MutationObserver(() => {
|
|
select_option(select, select.__value);
|
|
});
|
|
observer.observe(select, {
|
|
// Listen to option element changes
|
|
childList: true,
|
|
subtree: true,
|
|
// because of <optgroup>
|
|
// Listen to option element value attribute changes
|
|
// (doesn't get notified of select value changes,
|
|
// because that property is not reflected as an attribute)
|
|
attributes: true,
|
|
attributeFilter: ["value"]
|
|
});
|
|
teardown(() => {
|
|
observer.disconnect();
|
|
});
|
|
}
|
|
function get_option_value(option) {
|
|
if ("__value" in option) {
|
|
return option.__value;
|
|
} else {
|
|
return option.value;
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/attributes.js
|
|
var CLASS = /* @__PURE__ */ Symbol("class");
|
|
var STYLE = /* @__PURE__ */ Symbol("style");
|
|
var IS_CUSTOM_ELEMENT = /* @__PURE__ */ Symbol("is custom element");
|
|
var IS_HTML = /* @__PURE__ */ Symbol("is html");
|
|
var LINK_TAG = IS_XHTML ? "link" : "LINK";
|
|
var INPUT_TAG = IS_XHTML ? "input" : "INPUT";
|
|
var OPTION_TAG = IS_XHTML ? "option" : "OPTION";
|
|
var SELECT_TAG = IS_XHTML ? "select" : "SELECT";
|
|
var PROGRESS_TAG = IS_XHTML ? "progress" : "PROGRESS";
|
|
function remove_input_defaults(input) {
|
|
if (!hydrating) return;
|
|
var already_removed = false;
|
|
var remove_defaults = () => {
|
|
if (already_removed) return;
|
|
already_removed = true;
|
|
if (input.hasAttribute("value")) {
|
|
var value = input.value;
|
|
set_attribute2(input, "value", null);
|
|
input.value = value;
|
|
}
|
|
if (input.hasAttribute("checked")) {
|
|
var checked = input.checked;
|
|
set_attribute2(input, "checked", null);
|
|
input.checked = checked;
|
|
}
|
|
};
|
|
input.__on_r = remove_defaults;
|
|
queue_micro_task(remove_defaults);
|
|
add_form_reset_listener();
|
|
}
|
|
function set_value(element2, value) {
|
|
var attributes = get_attributes(element2);
|
|
if (attributes.value === (attributes.value = // treat null and undefined the same for the initial value
|
|
value != null ? value : void 0) || // @ts-expect-error
|
|
// `progress` elements always need their value set when it's `0`
|
|
element2.value === value && (value !== 0 || element2.nodeName !== PROGRESS_TAG)) {
|
|
return;
|
|
}
|
|
element2.value = value != null ? value : "";
|
|
}
|
|
function set_selected(element2, selected) {
|
|
if (selected) {
|
|
if (!element2.hasAttribute("selected")) {
|
|
element2.setAttribute("selected", "");
|
|
}
|
|
} else {
|
|
element2.removeAttribute("selected");
|
|
}
|
|
}
|
|
function set_attribute2(element2, attribute, value, skip_warning) {
|
|
var attributes = get_attributes(element2);
|
|
if (hydrating) {
|
|
attributes[attribute] = element2.getAttribute(attribute);
|
|
if (attribute === "src" || attribute === "srcset" || attribute === "href" && element2.nodeName === LINK_TAG) {
|
|
if (!skip_warning) {
|
|
check_src_in_dev_hydration(element2, attribute, value != null ? value : "");
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
if (attributes[attribute] === (attributes[attribute] = value)) return;
|
|
if (attribute === "loading") {
|
|
element2[LOADING_ATTR_SYMBOL] = value;
|
|
}
|
|
if (value == null) {
|
|
element2.removeAttribute(attribute);
|
|
} else if (typeof value !== "string" && get_setters(element2).includes(attribute)) {
|
|
element2[attribute] = value;
|
|
} else {
|
|
element2.setAttribute(attribute, value);
|
|
}
|
|
}
|
|
function set_attributes(element2, prev, next2, css_hash, should_remove_defaults = false, skip_warning = false) {
|
|
var _a5;
|
|
if (hydrating && should_remove_defaults && element2.nodeName === INPUT_TAG) {
|
|
var input = (
|
|
/** @type {HTMLInputElement} */
|
|
element2
|
|
);
|
|
var attribute = input.type === "checkbox" ? "defaultChecked" : "defaultValue";
|
|
if (!(attribute in next2)) {
|
|
remove_input_defaults(input);
|
|
}
|
|
}
|
|
var attributes = get_attributes(element2);
|
|
var is_custom_element = attributes[IS_CUSTOM_ELEMENT];
|
|
var preserve_attribute_case = !attributes[IS_HTML];
|
|
let is_hydrating_custom_element = hydrating && is_custom_element;
|
|
if (is_hydrating_custom_element) {
|
|
set_hydrating(false);
|
|
}
|
|
var current = prev || {};
|
|
var is_option_element = element2.nodeName === OPTION_TAG;
|
|
for (var key2 in prev) {
|
|
if (!(key2 in next2)) {
|
|
next2[key2] = null;
|
|
}
|
|
}
|
|
if (next2.class) {
|
|
next2.class = clsx2(next2.class);
|
|
} else if (css_hash || next2[CLASS]) {
|
|
next2.class = null;
|
|
}
|
|
if (next2[STYLE]) {
|
|
(_a5 = next2.style) != null ? _a5 : next2.style = null;
|
|
}
|
|
var setters = get_setters(element2);
|
|
for (const key3 in next2) {
|
|
let value = next2[key3];
|
|
if (is_option_element && key3 === "value" && value == null) {
|
|
element2.value = element2.__value = "";
|
|
current[key3] = value;
|
|
continue;
|
|
}
|
|
if (key3 === "class") {
|
|
var is_html = element2.namespaceURI === "http://www.w3.org/1999/xhtml";
|
|
set_class(element2, is_html, value, css_hash, prev == null ? void 0 : prev[CLASS], next2[CLASS]);
|
|
current[key3] = value;
|
|
current[CLASS] = next2[CLASS];
|
|
continue;
|
|
}
|
|
if (key3 === "style") {
|
|
set_style(element2, value, prev == null ? void 0 : prev[STYLE], next2[STYLE]);
|
|
current[key3] = value;
|
|
current[STYLE] = next2[STYLE];
|
|
continue;
|
|
}
|
|
var prev_value = current[key3];
|
|
if (value === prev_value && !(value === void 0 && element2.hasAttribute(key3))) {
|
|
continue;
|
|
}
|
|
current[key3] = value;
|
|
var prefix = key3[0] + key3[1];
|
|
if (prefix === "$$") continue;
|
|
if (prefix === "on") {
|
|
const opts = {};
|
|
const event_handle_key = "$$" + key3;
|
|
let event_name = key3.slice(2);
|
|
var is_delegated = can_delegate_event(event_name);
|
|
if (is_capture_event(event_name)) {
|
|
event_name = event_name.slice(0, -7);
|
|
opts.capture = true;
|
|
}
|
|
if (!is_delegated && prev_value) {
|
|
if (value != null) continue;
|
|
element2.removeEventListener(event_name, current[event_handle_key], opts);
|
|
current[event_handle_key] = null;
|
|
}
|
|
if (is_delegated) {
|
|
delegated(event_name, element2, value);
|
|
delegate([event_name]);
|
|
} else if (value != null) {
|
|
let handle = function(evt) {
|
|
current[key3].call(this, evt);
|
|
};
|
|
current[event_handle_key] = create_event(event_name, element2, handle, opts);
|
|
}
|
|
} else if (key3 === "style") {
|
|
set_attribute2(element2, key3, value);
|
|
} else if (key3 === "autofocus") {
|
|
autofocus(
|
|
/** @type {HTMLElement} */
|
|
element2,
|
|
Boolean(value)
|
|
);
|
|
} else if (!is_custom_element && (key3 === "__value" || key3 === "value" && value != null)) {
|
|
element2.value = element2.__value = value;
|
|
} else if (key3 === "selected" && is_option_element) {
|
|
set_selected(
|
|
/** @type {HTMLOptionElement} */
|
|
element2,
|
|
value
|
|
);
|
|
} else {
|
|
var name = key3;
|
|
if (!preserve_attribute_case) {
|
|
name = normalize_attribute(name);
|
|
}
|
|
var is_default = name === "defaultValue" || name === "defaultChecked";
|
|
if (value == null && !is_custom_element && !is_default) {
|
|
attributes[key3] = null;
|
|
if (name === "value" || name === "checked") {
|
|
let input2 = (
|
|
/** @type {HTMLInputElement} */
|
|
element2
|
|
);
|
|
const use_default = prev === void 0;
|
|
if (name === "value") {
|
|
let previous = input2.defaultValue;
|
|
input2.removeAttribute(name);
|
|
input2.defaultValue = previous;
|
|
input2.value = input2.__value = use_default ? previous : null;
|
|
} else {
|
|
let previous = input2.defaultChecked;
|
|
input2.removeAttribute(name);
|
|
input2.defaultChecked = previous;
|
|
input2.checked = use_default ? previous : false;
|
|
}
|
|
} else {
|
|
element2.removeAttribute(key3);
|
|
}
|
|
} else if (is_default || setters.includes(name) && (is_custom_element || typeof value !== "string")) {
|
|
element2[name] = value;
|
|
if (name in attributes) attributes[name] = UNINITIALIZED;
|
|
} else if (typeof value !== "function") {
|
|
set_attribute2(element2, name, value, skip_warning);
|
|
}
|
|
}
|
|
}
|
|
if (is_hydrating_custom_element) {
|
|
set_hydrating(true);
|
|
}
|
|
return current;
|
|
}
|
|
function attribute_effect(element2, fn, sync = [], async2 = [], blockers = [], css_hash, should_remove_defaults = false, skip_warning = false) {
|
|
flatten(blockers, sync, async2, (values) => {
|
|
var prev = void 0;
|
|
var effects = {};
|
|
var is_select = element2.nodeName === SELECT_TAG;
|
|
var inited = false;
|
|
managed(() => {
|
|
var next2 = fn(...values.map(get));
|
|
var current = set_attributes(
|
|
element2,
|
|
prev,
|
|
next2,
|
|
css_hash,
|
|
should_remove_defaults,
|
|
skip_warning
|
|
);
|
|
if (inited && is_select && "value" in next2) {
|
|
select_option(
|
|
/** @type {HTMLSelectElement} */
|
|
element2,
|
|
next2.value
|
|
);
|
|
}
|
|
for (let symbol of Object.getOwnPropertySymbols(effects)) {
|
|
if (!next2[symbol]) destroy_effect(effects[symbol]);
|
|
}
|
|
for (let symbol of Object.getOwnPropertySymbols(next2)) {
|
|
var n = next2[symbol];
|
|
if (symbol.description === ATTACHMENT_KEY && (!prev || n !== prev[symbol])) {
|
|
if (effects[symbol]) destroy_effect(effects[symbol]);
|
|
effects[symbol] = branch(() => attach(element2, () => n));
|
|
}
|
|
current[symbol] = n;
|
|
}
|
|
prev = current;
|
|
});
|
|
if (is_select) {
|
|
var select = (
|
|
/** @type {HTMLSelectElement} */
|
|
element2
|
|
);
|
|
effect(() => {
|
|
select_option(
|
|
select,
|
|
/** @type {Record<string | symbol, any>} */
|
|
prev.value,
|
|
true
|
|
);
|
|
init_select(select);
|
|
});
|
|
}
|
|
inited = true;
|
|
});
|
|
}
|
|
function get_attributes(element2) {
|
|
var _a5;
|
|
return (
|
|
/** @type {Record<string | symbol, unknown>} **/
|
|
// @ts-expect-error
|
|
(_a5 = element2.__attributes) != null ? _a5 : element2.__attributes = {
|
|
[IS_CUSTOM_ELEMENT]: element2.nodeName.includes("-"),
|
|
[IS_HTML]: element2.namespaceURI === NAMESPACE_HTML
|
|
}
|
|
);
|
|
}
|
|
var setters_cache = /* @__PURE__ */ new Map();
|
|
function get_setters(element2) {
|
|
var cache_key = element2.getAttribute("is") || element2.nodeName;
|
|
var setters = setters_cache.get(cache_key);
|
|
if (setters) return setters;
|
|
setters_cache.set(cache_key, setters = []);
|
|
var descriptors;
|
|
var proto = element2;
|
|
var element_proto = Element.prototype;
|
|
while (element_proto !== proto) {
|
|
descriptors = get_descriptors(proto);
|
|
for (var key2 in descriptors) {
|
|
if (descriptors[key2].set) {
|
|
setters.push(key2);
|
|
}
|
|
}
|
|
proto = get_prototype_of(proto);
|
|
}
|
|
return setters;
|
|
}
|
|
function check_src_in_dev_hydration(element2, attribute, value) {
|
|
var _a5;
|
|
if (!dev_fallback_default) return;
|
|
if (attribute === "srcset" && srcset_url_equal(element2, value)) return;
|
|
if (src_url_equal((_a5 = element2.getAttribute(attribute)) != null ? _a5 : "", value)) return;
|
|
hydration_attribute_changed(
|
|
attribute,
|
|
element2.outerHTML.replace(element2.innerHTML, element2.innerHTML && "..."),
|
|
String(value)
|
|
);
|
|
}
|
|
function src_url_equal(element_src, url) {
|
|
if (element_src === url) return true;
|
|
return new URL(element_src, document.baseURI).href === new URL(url, document.baseURI).href;
|
|
}
|
|
function split_srcset(srcset) {
|
|
return srcset.split(",").map((src) => src.trim().split(" ").filter(Boolean));
|
|
}
|
|
function srcset_url_equal(element2, srcset) {
|
|
var element_urls = split_srcset(element2.srcset);
|
|
var urls = split_srcset(srcset);
|
|
return urls.length === element_urls.length && urls.every(
|
|
([url, width], i) => width === element_urls[i][1] && // We need to test both ways because Vite will create an a full URL with
|
|
// `new URL(asset, import.meta.url).href` for the client when `base: './'`, and the
|
|
// relative URLs inside srcset are not automatically resolved to absolute URLs by
|
|
// browsers (in contrast to img.src). This means both SSR and DOM code could
|
|
// contain relative or absolute URLs.
|
|
(src_url_equal(element_urls[i][0], url) || src_url_equal(url, element_urls[i][0]))
|
|
);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/bindings/input.js
|
|
function bind_value(input, get3, set2 = get3) {
|
|
var batches2 = /* @__PURE__ */ new WeakSet();
|
|
listen_to_event_and_reset_event(input, "input", async (is_reset) => {
|
|
if (dev_fallback_default && input.type === "checkbox") {
|
|
bind_invalid_checkbox_value();
|
|
}
|
|
var value = is_reset ? input.defaultValue : input.value;
|
|
value = is_numberlike_input(input) ? to_number(value) : value;
|
|
set2(value);
|
|
if (current_batch !== null) {
|
|
batches2.add(current_batch);
|
|
}
|
|
await tick();
|
|
if (value !== (value = get3())) {
|
|
var start = input.selectionStart;
|
|
var end = input.selectionEnd;
|
|
var length = input.value.length;
|
|
input.value = value != null ? value : "";
|
|
if (end !== null) {
|
|
var new_length = input.value.length;
|
|
if (start === end && end === length && new_length > length) {
|
|
input.selectionStart = new_length;
|
|
input.selectionEnd = new_length;
|
|
} else {
|
|
input.selectionStart = start;
|
|
input.selectionEnd = Math.min(end, new_length);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (
|
|
// If we are hydrating and the value has since changed,
|
|
// then use the updated value from the input instead.
|
|
hydrating && input.defaultValue !== input.value || // If defaultValue is set, then value == defaultValue
|
|
// TODO Svelte 6: remove input.value check and set to empty string?
|
|
untrack(get3) == null && input.value
|
|
) {
|
|
set2(is_numberlike_input(input) ? to_number(input.value) : input.value);
|
|
if (current_batch !== null) {
|
|
batches2.add(current_batch);
|
|
}
|
|
}
|
|
render_effect(() => {
|
|
if (dev_fallback_default && input.type === "checkbox") {
|
|
bind_invalid_checkbox_value();
|
|
}
|
|
var value = get3();
|
|
if (input === document.activeElement) {
|
|
var batch = (
|
|
/** @type {Batch} */
|
|
async_mode_flag ? previous_batch : current_batch
|
|
);
|
|
if (batches2.has(batch)) {
|
|
return;
|
|
}
|
|
}
|
|
if (is_numberlike_input(input) && value === to_number(input.value)) {
|
|
return;
|
|
}
|
|
if (input.type === "date" && !value && !input.value) {
|
|
return;
|
|
}
|
|
if (value !== input.value) {
|
|
input.value = value != null ? value : "";
|
|
}
|
|
});
|
|
}
|
|
function is_numberlike_input(input) {
|
|
var type = input.type;
|
|
return type === "number" || type === "range";
|
|
}
|
|
function to_number(value) {
|
|
return value === "" ? null : +value;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/bindings/props.js
|
|
function bind_prop(props, prop2, value) {
|
|
var desc = get_descriptor(props, prop2);
|
|
if (desc && desc.set) {
|
|
props[prop2] = value;
|
|
teardown(() => {
|
|
props[prop2] = null;
|
|
});
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/bindings/this.js
|
|
function is_bound_this(bound_value, element_or_component) {
|
|
return bound_value === element_or_component || (bound_value == null ? void 0 : bound_value[STATE_SYMBOL]) === element_or_component;
|
|
}
|
|
function bind_this(element_or_component = {}, update2, get_value, get_parts) {
|
|
var component_effect = (
|
|
/** @type {ComponentContext} */
|
|
component_context.r
|
|
);
|
|
var parent = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
effect(() => {
|
|
var old_parts;
|
|
var parts;
|
|
render_effect(() => {
|
|
old_parts = parts;
|
|
parts = (get_parts == null ? void 0 : get_parts()) || [];
|
|
untrack(() => {
|
|
if (element_or_component !== get_value(...parts)) {
|
|
update2(element_or_component, ...parts);
|
|
if (old_parts && is_bound_this(get_value(...old_parts), element_or_component)) {
|
|
update2(null, ...old_parts);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
return () => {
|
|
let p = parent;
|
|
while (p !== component_effect && p.parent !== null && p.parent.f & DESTROYING) {
|
|
p = p.parent;
|
|
}
|
|
const teardown2 = () => {
|
|
if (parts && is_bound_this(get_value(...parts), element_or_component)) {
|
|
update2(null, ...parts);
|
|
}
|
|
};
|
|
const original_teardown = p.teardown;
|
|
p.teardown = () => {
|
|
teardown2();
|
|
original_teardown == null ? void 0 : original_teardown();
|
|
};
|
|
};
|
|
});
|
|
return element_or_component;
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/legacy/lifecycle.js
|
|
function init(immutable = false) {
|
|
const context = (
|
|
/** @type {ComponentContextLegacy} */
|
|
component_context
|
|
);
|
|
const callbacks = context.l.u;
|
|
if (!callbacks) return;
|
|
let props = () => deep_read_state(context.s);
|
|
if (immutable) {
|
|
let version = 0;
|
|
let prev = (
|
|
/** @type {Record<string, any>} */
|
|
{}
|
|
);
|
|
const d = derived2(() => {
|
|
let changed = false;
|
|
const props2 = context.s;
|
|
for (const key2 in props2) {
|
|
if (props2[key2] !== prev[key2]) {
|
|
prev[key2] = props2[key2];
|
|
changed = true;
|
|
}
|
|
}
|
|
if (changed) version++;
|
|
return version;
|
|
});
|
|
props = () => get(d);
|
|
}
|
|
if (callbacks.b.length) {
|
|
user_pre_effect(() => {
|
|
observe_all(context, props);
|
|
run_all(callbacks.b);
|
|
});
|
|
}
|
|
user_effect(() => {
|
|
const fns = untrack(() => callbacks.m.map(run));
|
|
return () => {
|
|
for (const fn of fns) {
|
|
if (typeof fn === "function") {
|
|
fn();
|
|
}
|
|
}
|
|
};
|
|
});
|
|
if (callbacks.a.length) {
|
|
user_effect(() => {
|
|
observe_all(context, props);
|
|
run_all(callbacks.a);
|
|
});
|
|
}
|
|
}
|
|
function observe_all(context, props) {
|
|
if (context.l.s) {
|
|
for (const signal of context.l.s) get(signal);
|
|
}
|
|
props();
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/legacy/misc.js
|
|
function bubble_event($$props, event2) {
|
|
var _a5;
|
|
var events = (
|
|
/** @type {Record<string, Function[] | Function>} */
|
|
(_a5 = $$props.$$events) == null ? void 0 : _a5[event2.type]
|
|
);
|
|
var callbacks = is_array(events) ? events.slice() : events == null ? [] : [events];
|
|
for (var fn of callbacks) {
|
|
fn.call(this, event2);
|
|
}
|
|
}
|
|
function add_legacy_event_listener($$props, event_name, event_callback) {
|
|
var _a5;
|
|
$$props.$$events || ($$props.$$events = {});
|
|
(_a5 = $$props.$$events)[event_name] || (_a5[event_name] = []);
|
|
$$props.$$events[event_name].push(event_callback);
|
|
}
|
|
function update_legacy_props($$new_props) {
|
|
for (var key2 in $$new_props) {
|
|
if (key2 in this) {
|
|
this[key2] = $$new_props[key2];
|
|
}
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/reactivity/props.js
|
|
var legacy_rest_props_handler = {
|
|
get(target, key2) {
|
|
if (target.exclude.includes(key2)) return;
|
|
get(target.version);
|
|
return key2 in target.special ? target.special[key2]() : target.props[key2];
|
|
},
|
|
set(target, key2, value) {
|
|
if (!(key2 in target.special)) {
|
|
var previous_effect = active_effect;
|
|
try {
|
|
set_active_effect(target.parent_effect);
|
|
target.special[key2] = prop(
|
|
{
|
|
get [key2]() {
|
|
return target.props[key2];
|
|
}
|
|
},
|
|
/** @type {string} */
|
|
key2,
|
|
PROPS_IS_UPDATED
|
|
);
|
|
} finally {
|
|
set_active_effect(previous_effect);
|
|
}
|
|
}
|
|
target.special[key2](value);
|
|
update(target.version);
|
|
return true;
|
|
},
|
|
getOwnPropertyDescriptor(target, key2) {
|
|
if (target.exclude.includes(key2)) return;
|
|
if (key2 in target.props) {
|
|
return {
|
|
enumerable: true,
|
|
configurable: true,
|
|
value: target.props[key2]
|
|
};
|
|
}
|
|
},
|
|
deleteProperty(target, key2) {
|
|
if (target.exclude.includes(key2)) return true;
|
|
target.exclude.push(key2);
|
|
update(target.version);
|
|
return true;
|
|
},
|
|
has(target, key2) {
|
|
if (target.exclude.includes(key2)) return false;
|
|
return key2 in target.props;
|
|
},
|
|
ownKeys(target) {
|
|
return Reflect.ownKeys(target.props).filter((key2) => !target.exclude.includes(key2));
|
|
}
|
|
};
|
|
function legacy_rest_props(props, exclude) {
|
|
return new Proxy(
|
|
{
|
|
props,
|
|
exclude,
|
|
special: {},
|
|
version: source(0),
|
|
// TODO this is only necessary because we need to track component
|
|
// destruction inside `prop`, because of `bind:this`, but it
|
|
// seems likely that we can simplify `bind:this` instead
|
|
parent_effect: (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
)
|
|
},
|
|
legacy_rest_props_handler
|
|
);
|
|
}
|
|
function prop(props, key2, flags2, fallback2) {
|
|
var _a5, _b3;
|
|
var runes = !legacy_mode_flag || (flags2 & PROPS_IS_RUNES) !== 0;
|
|
var bindable = (flags2 & PROPS_IS_BINDABLE) !== 0;
|
|
var lazy = (flags2 & PROPS_IS_LAZY_INITIAL) !== 0;
|
|
var fallback_value = (
|
|
/** @type {V} */
|
|
fallback2
|
|
);
|
|
var fallback_dirty = true;
|
|
var get_fallback = () => {
|
|
if (fallback_dirty) {
|
|
fallback_dirty = false;
|
|
fallback_value = lazy ? untrack(
|
|
/** @type {() => V} */
|
|
fallback2
|
|
) : (
|
|
/** @type {V} */
|
|
fallback2
|
|
);
|
|
}
|
|
return fallback_value;
|
|
};
|
|
let setter;
|
|
if (bindable) {
|
|
var is_entry_props = STATE_SYMBOL in props || LEGACY_PROPS in props;
|
|
setter = (_b3 = (_a5 = get_descriptor(props, key2)) == null ? void 0 : _a5.set) != null ? _b3 : is_entry_props && key2 in props ? (v) => props[key2] = v : void 0;
|
|
}
|
|
var initial_value;
|
|
var is_store_sub = false;
|
|
if (bindable) {
|
|
[initial_value, is_store_sub] = capture_store_binding(() => (
|
|
/** @type {V} */
|
|
props[key2]
|
|
));
|
|
} else {
|
|
initial_value = /** @type {V} */
|
|
props[key2];
|
|
}
|
|
if (initial_value === void 0 && fallback2 !== void 0) {
|
|
initial_value = get_fallback();
|
|
if (setter) {
|
|
if (runes) props_invalid_value(key2);
|
|
setter(initial_value);
|
|
}
|
|
}
|
|
var getter;
|
|
if (runes) {
|
|
getter = () => {
|
|
var value = (
|
|
/** @type {V} */
|
|
props[key2]
|
|
);
|
|
if (value === void 0) return get_fallback();
|
|
fallback_dirty = true;
|
|
return value;
|
|
};
|
|
} else {
|
|
getter = () => {
|
|
var value = (
|
|
/** @type {V} */
|
|
props[key2]
|
|
);
|
|
if (value !== void 0) {
|
|
fallback_value = /** @type {V} */
|
|
void 0;
|
|
}
|
|
return value === void 0 ? fallback_value : value;
|
|
};
|
|
}
|
|
if (runes && (flags2 & PROPS_IS_UPDATED) === 0) {
|
|
return getter;
|
|
}
|
|
if (setter) {
|
|
var legacy_parent = props.$$legacy;
|
|
return (
|
|
/** @type {() => V} */
|
|
(function(value, mutation) {
|
|
if (arguments.length > 0) {
|
|
if (!runes || !mutation || legacy_parent || is_store_sub) {
|
|
setter(mutation ? getter() : value);
|
|
}
|
|
return value;
|
|
}
|
|
return getter();
|
|
})
|
|
);
|
|
}
|
|
var overridden = false;
|
|
var d = ((flags2 & PROPS_IS_IMMUTABLE) !== 0 ? derived2 : derived_safe_equal)(() => {
|
|
overridden = false;
|
|
return getter();
|
|
});
|
|
if (dev_fallback_default) {
|
|
d.label = key2;
|
|
}
|
|
if (bindable) get(d);
|
|
var parent_effect = (
|
|
/** @type {Effect} */
|
|
active_effect
|
|
);
|
|
return (
|
|
/** @type {() => V} */
|
|
(function(value, mutation) {
|
|
if (arguments.length > 0) {
|
|
const new_value = mutation ? get(d) : runes && bindable ? proxy(value) : value;
|
|
set(d, new_value);
|
|
overridden = true;
|
|
if (fallback_value !== void 0) {
|
|
fallback_value = new_value;
|
|
}
|
|
return value;
|
|
}
|
|
if (is_destroying_effect && overridden || (parent_effect.f & DESTROYED) !== 0) {
|
|
return d.v;
|
|
}
|
|
return get(d);
|
|
})
|
|
);
|
|
}
|
|
|
|
// node_modules/svelte/src/internal/client/dom/elements/custom-element.js
|
|
var SvelteElement;
|
|
if (typeof HTMLElement === "function") {
|
|
SvelteElement = class extends HTMLElement {
|
|
/**
|
|
* @param {*} $$componentCtor
|
|
* @param {*} $$slots
|
|
* @param {ShadowRootInit | undefined} shadow_root_init
|
|
*/
|
|
constructor($$componentCtor, $$slots, shadow_root_init) {
|
|
super();
|
|
/** The Svelte component constructor */
|
|
__publicField(this, "$$ctor");
|
|
/** Slots */
|
|
__publicField(this, "$$s");
|
|
/** @type {any} The Svelte component instance */
|
|
__publicField(this, "$$c");
|
|
/** Whether or not the custom element is connected */
|
|
__publicField(this, "$$cn", false);
|
|
/** @type {Record<string, any>} Component props data */
|
|
__publicField(this, "$$d", {});
|
|
/** `true` if currently in the process of reflecting component props back to attributes */
|
|
__publicField(this, "$$r", false);
|
|
/** @type {Record<string, CustomElementPropDefinition>} Props definition (name, reflected, type etc) */
|
|
__publicField(this, "$$p_d", {});
|
|
/** @type {Record<string, EventListenerOrEventListenerObject[]>} Event listeners */
|
|
__publicField(this, "$$l", {});
|
|
/** @type {Map<EventListenerOrEventListenerObject, Function>} Event listener unsubscribe functions */
|
|
__publicField(this, "$$l_u", /* @__PURE__ */ new Map());
|
|
/** @type {any} The managed render effect for reflecting attributes */
|
|
__publicField(this, "$$me");
|
|
/** @type {ShadowRoot | null} The ShadowRoot of the custom element */
|
|
__publicField(this, "$$shadowRoot", null);
|
|
this.$$ctor = $$componentCtor;
|
|
this.$$s = $$slots;
|
|
if (shadow_root_init) {
|
|
this.$$shadowRoot = this.attachShadow(shadow_root_init);
|
|
}
|
|
}
|
|
/**
|
|
* @param {string} type
|
|
* @param {EventListenerOrEventListenerObject} listener
|
|
* @param {boolean | AddEventListenerOptions} [options]
|
|
*/
|
|
addEventListener(type, listener, options) {
|
|
this.$$l[type] = this.$$l[type] || [];
|
|
this.$$l[type].push(listener);
|
|
if (this.$$c) {
|
|
const unsub = this.$$c.$on(type, listener);
|
|
this.$$l_u.set(listener, unsub);
|
|
}
|
|
super.addEventListener(type, listener, options);
|
|
}
|
|
/**
|
|
* @param {string} type
|
|
* @param {EventListenerOrEventListenerObject} listener
|
|
* @param {boolean | AddEventListenerOptions} [options]
|
|
*/
|
|
removeEventListener(type, listener, options) {
|
|
super.removeEventListener(type, listener, options);
|
|
if (this.$$c) {
|
|
const unsub = this.$$l_u.get(listener);
|
|
if (unsub) {
|
|
unsub();
|
|
this.$$l_u.delete(listener);
|
|
}
|
|
}
|
|
}
|
|
async connectedCallback() {
|
|
this.$$cn = true;
|
|
if (!this.$$c) {
|
|
let create_slot = function(name) {
|
|
return (anchor) => {
|
|
const slot2 = create_element("slot");
|
|
if (name !== "default") slot2.name = name;
|
|
append(anchor, slot2);
|
|
};
|
|
};
|
|
await Promise.resolve();
|
|
if (!this.$$cn || this.$$c) {
|
|
return;
|
|
}
|
|
const $$slots = {};
|
|
const existing_slots = get_custom_elements_slots(this);
|
|
for (const name of this.$$s) {
|
|
if (name in existing_slots) {
|
|
if (name === "default" && !this.$$d.children) {
|
|
this.$$d.children = create_slot(name);
|
|
$$slots.default = true;
|
|
} else {
|
|
$$slots[name] = create_slot(name);
|
|
}
|
|
}
|
|
}
|
|
for (const attribute of this.attributes) {
|
|
const name = this.$$g_p(attribute.name);
|
|
if (!(name in this.$$d)) {
|
|
this.$$d[name] = get_custom_element_value(name, attribute.value, this.$$p_d, "toProp");
|
|
}
|
|
}
|
|
for (const key2 in this.$$p_d) {
|
|
if (!(key2 in this.$$d) && this[key2] !== void 0) {
|
|
this.$$d[key2] = this[key2];
|
|
delete this[key2];
|
|
}
|
|
}
|
|
this.$$c = createClassComponent({
|
|
component: this.$$ctor,
|
|
target: this.$$shadowRoot || this,
|
|
props: {
|
|
...this.$$d,
|
|
$$slots,
|
|
$$host: this
|
|
}
|
|
});
|
|
this.$$me = effect_root(() => {
|
|
render_effect(() => {
|
|
var _a5;
|
|
this.$$r = true;
|
|
for (const key2 of object_keys(this.$$c)) {
|
|
if (!((_a5 = this.$$p_d[key2]) == null ? void 0 : _a5.reflect)) continue;
|
|
this.$$d[key2] = this.$$c[key2];
|
|
const attribute_value = get_custom_element_value(
|
|
key2,
|
|
this.$$d[key2],
|
|
this.$$p_d,
|
|
"toAttribute"
|
|
);
|
|
if (attribute_value == null) {
|
|
this.removeAttribute(this.$$p_d[key2].attribute || key2);
|
|
} else {
|
|
this.setAttribute(this.$$p_d[key2].attribute || key2, attribute_value);
|
|
}
|
|
}
|
|
this.$$r = false;
|
|
});
|
|
});
|
|
for (const type in this.$$l) {
|
|
for (const listener of this.$$l[type]) {
|
|
const unsub = this.$$c.$on(type, listener);
|
|
this.$$l_u.set(listener, unsub);
|
|
}
|
|
}
|
|
this.$$l = {};
|
|
}
|
|
}
|
|
// We don't need this when working within Svelte code, but for compatibility of people using this outside of Svelte
|
|
// and setting attributes through setAttribute etc, this is helpful
|
|
/**
|
|
* @param {string} attr
|
|
* @param {string} _oldValue
|
|
* @param {string} newValue
|
|
*/
|
|
attributeChangedCallback(attr2, _oldValue, newValue) {
|
|
var _a5;
|
|
if (this.$$r) return;
|
|
attr2 = this.$$g_p(attr2);
|
|
this.$$d[attr2] = get_custom_element_value(attr2, newValue, this.$$p_d, "toProp");
|
|
(_a5 = this.$$c) == null ? void 0 : _a5.$set({ [attr2]: this.$$d[attr2] });
|
|
}
|
|
disconnectedCallback() {
|
|
this.$$cn = false;
|
|
Promise.resolve().then(() => {
|
|
if (!this.$$cn && this.$$c) {
|
|
this.$$c.$destroy();
|
|
this.$$me();
|
|
this.$$c = void 0;
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* @param {string} attribute_name
|
|
*/
|
|
$$g_p(attribute_name) {
|
|
return object_keys(this.$$p_d).find(
|
|
(key2) => this.$$p_d[key2].attribute === attribute_name || !this.$$p_d[key2].attribute && key2.toLowerCase() === attribute_name
|
|
) || attribute_name;
|
|
}
|
|
};
|
|
}
|
|
function get_custom_element_value(prop2, value, props_definition, transform) {
|
|
var _a5;
|
|
const type = (_a5 = props_definition[prop2]) == null ? void 0 : _a5.type;
|
|
value = type === "Boolean" && typeof value !== "boolean" ? value != null : value;
|
|
if (!transform || !props_definition[prop2]) {
|
|
return value;
|
|
} else if (transform === "toAttribute") {
|
|
switch (type) {
|
|
case "Object":
|
|
case "Array":
|
|
return value == null ? null : JSON.stringify(value);
|
|
case "Boolean":
|
|
return value ? "" : null;
|
|
case "Number":
|
|
return value == null ? null : value;
|
|
default:
|
|
return value;
|
|
}
|
|
} else {
|
|
switch (type) {
|
|
case "Object":
|
|
case "Array":
|
|
return value && JSON.parse(value);
|
|
case "Boolean":
|
|
return value;
|
|
// conversion already handled above
|
|
case "Number":
|
|
return value != null ? +value : value;
|
|
default:
|
|
return value;
|
|
}
|
|
}
|
|
}
|
|
function get_custom_elements_slots(element2) {
|
|
const result = {};
|
|
element2.childNodes.forEach((node) => {
|
|
result[
|
|
/** @type {Element} node */
|
|
node.slot || "default"
|
|
] = true;
|
|
});
|
|
return result;
|
|
}
|
|
|
|
// src/parsing/kebab/kebab.ts
|
|
function kebab(input) {
|
|
return input.replaceAll(/\p{Lu}/gu, (match) => `-${match.toLowerCase()}`).replaceAll(/\p{Z}/gu, "-").replaceAll(/[^\p{L}\p{N}\/-]/gu, "-").replaceAll(/-+/g, "-").replace(/^-/, "").replace(/-$/, "");
|
|
}
|
|
|
|
// src/ui/columns/definitions.ts
|
|
var RESERVED_COLUMN_KEYS = /* @__PURE__ */ new Set(["uncategorised", "done"]);
|
|
function parseColumnSpec(columnSpec) {
|
|
const hashMatch = columnSpec.match(/^(.+?)\(#([0-9a-fA-F]{6})\)$/);
|
|
const oxMatch = columnSpec.match(/^(.+?)\(0x([0-9a-fA-F]{6})\)$/);
|
|
const match = hashMatch || oxMatch;
|
|
if ((match == null ? void 0 : match[1]) && (match == null ? void 0 : match[2])) {
|
|
return {
|
|
raw: columnSpec,
|
|
label: match[1],
|
|
color: `#${match[2]}`
|
|
};
|
|
}
|
|
return {
|
|
raw: columnSpec,
|
|
label: columnSpec
|
|
};
|
|
}
|
|
function sanitizeIdBase(label) {
|
|
const normalized = kebab(label).replace(/[^a-z0-9-]/g, "");
|
|
return normalized.length > 0 ? normalized : "column";
|
|
}
|
|
function createColumnId(label, usedIds) {
|
|
const base = `column-${sanitizeIdBase(label)}`;
|
|
let candidate = base;
|
|
let suffix = 2;
|
|
while (usedIds.has(candidate) || RESERVED_COLUMN_KEYS.has(candidate)) {
|
|
candidate = `${base}-${suffix}`;
|
|
suffix += 1;
|
|
}
|
|
usedIds.add(candidate);
|
|
return candidate;
|
|
}
|
|
function normalizeMatchTags(tags) {
|
|
const normalized = tags.map((tag2) => tag2.trim().replace(/^#/, "")).filter((tag2) => tag2.length > 0);
|
|
return [...new Set(normalized)];
|
|
}
|
|
function getNameModeWriteTag(column) {
|
|
return kebab(column.label);
|
|
}
|
|
function usesTagMatching(column) {
|
|
return column.matchMode === "tags";
|
|
}
|
|
function getColumnWriteTags(column) {
|
|
return usesTagMatching(column) ? column.matchTags : [getNameModeWriteTag(column)];
|
|
}
|
|
function columnRuleSignature(column) {
|
|
return usesTagMatching(column) ? `tags:${[...getColumnWriteTags(column)].sort().join(",")}` : `name:${getNameModeWriteTag(column)}`;
|
|
}
|
|
function matchesColumnDefinition(column, taskTags) {
|
|
if (usesTagMatching(column)) {
|
|
const explicitTags = getColumnWriteTags(column);
|
|
return explicitTags.length > 0 && explicitTags.every((tag2) => taskTags.has(tag2));
|
|
}
|
|
const derivedTag = getNameModeWriteTag(column);
|
|
for (const tag2 of taskTags) {
|
|
if (kebab(tag2) === derivedTag) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function getColumnMatchSpecificity(column) {
|
|
return usesTagMatching(column) ? getColumnWriteTags(column).length : 1;
|
|
}
|
|
function resolveMatchedColumnDefinition(columns, taskTags) {
|
|
let matchedColumn;
|
|
let matchedSpecificity = -1;
|
|
for (const column of columns) {
|
|
if (!matchesColumnDefinition(column, taskTags)) {
|
|
continue;
|
|
}
|
|
const specificity = getColumnMatchSpecificity(column);
|
|
if (!matchedColumn || specificity > matchedSpecificity) {
|
|
matchedColumn = column;
|
|
matchedSpecificity = specificity;
|
|
}
|
|
}
|
|
return matchedColumn;
|
|
}
|
|
function isPlacementTag(column, tag2) {
|
|
if (usesTagMatching(column)) {
|
|
return getColumnWriteTags(column).includes(tag2);
|
|
}
|
|
return kebab(tag2) === getNameModeWriteTag(column);
|
|
}
|
|
function getColumnHeaderTags(column) {
|
|
return usesTagMatching(column) ? column.matchTags : [];
|
|
}
|
|
function migrateColumnDefinitions(columns) {
|
|
const usedIds = /* @__PURE__ */ new Set();
|
|
return columns.flatMap((column) => {
|
|
if (typeof column === "string") {
|
|
const parsed = parseColumnSpec(column);
|
|
return [
|
|
{
|
|
id: createColumnId(parsed.label, usedIds),
|
|
label: parsed.label,
|
|
color: parsed.color,
|
|
matchMode: "name",
|
|
matchTags: []
|
|
}
|
|
];
|
|
}
|
|
if (!column || typeof column !== "object") {
|
|
return [];
|
|
}
|
|
const label = typeof column.label === "string" ? column.label : "";
|
|
const idCandidate = typeof column.id === "string" ? column.id : "";
|
|
const id = idCandidate && !usedIds.has(idCandidate) && !RESERVED_COLUMN_KEYS.has(idCandidate) ? (usedIds.add(idCandidate), idCandidate) : createColumnId(label, usedIds);
|
|
return [
|
|
{
|
|
id,
|
|
label,
|
|
color: typeof column.color === "string" && column.color.length > 0 ? column.color : void 0,
|
|
matchMode: column.matchMode === "tags" ? "tags" : "name",
|
|
matchTags: normalizeMatchTags(Array.isArray(column.matchTags) ? column.matchTags : [])
|
|
}
|
|
];
|
|
});
|
|
}
|
|
function migrateCollapsedColumns(collapsedColumns, columns) {
|
|
if (!collapsedColumns || collapsedColumns.length === 0) {
|
|
return [];
|
|
}
|
|
const placementTagToId = /* @__PURE__ */ new Map();
|
|
for (const column of columns) {
|
|
placementTagToId.set(getNameModeWriteTag(column), column.id);
|
|
}
|
|
const migrated = /* @__PURE__ */ new Set();
|
|
for (const value of collapsedColumns) {
|
|
if (value === "done" || value === "uncategorised") {
|
|
migrated.add(value);
|
|
continue;
|
|
}
|
|
const matchedColumn = columns.find((column) => column.id === value);
|
|
if (matchedColumn) {
|
|
migrated.add(matchedColumn.id);
|
|
continue;
|
|
}
|
|
const mappedId = placementTagToId.get(value);
|
|
if (mappedId) {
|
|
migrated.add(mappedId);
|
|
}
|
|
}
|
|
return [...migrated];
|
|
}
|
|
|
|
// src/ui/columns/columns.ts
|
|
var createColumnStores = (settingsStore) => {
|
|
const columnDefinitions = derived([settingsStore], ([settings]) => {
|
|
var _a5;
|
|
return (_a5 = settings.columns) != null ? _a5 : [];
|
|
});
|
|
const columnData = derived([columnDefinitions], ([columns]) => createColumnData(columns));
|
|
const columnTagTable = derived([columnData], ([data]) => data.columnTagTable);
|
|
const columnColourTable = derived([columnData], ([data]) => data.columnColourTable);
|
|
const columnPlacementTagTable = derived([columnData], ([data]) => data.columnPlacementTagTable);
|
|
const columnMatchTagTable = derived([columnData], ([data]) => data.columnMatchTagTable);
|
|
return {
|
|
columnDefinitions,
|
|
columnTagTable,
|
|
columnColourTable,
|
|
columnPlacementTagTable,
|
|
columnMatchTagTable
|
|
};
|
|
};
|
|
function isColumnTag(input, columnTagTableStore) {
|
|
return input in get2(columnTagTableStore);
|
|
}
|
|
var DEFAULT_UNCATEGORIZED_LABEL = "Uncategorized";
|
|
var DEFAULT_DONE_LABEL = "Done";
|
|
function resolveDefaultColumnName(column, uncategorizedColumnName, doneColumnName) {
|
|
switch (column) {
|
|
case "uncategorised":
|
|
return uncategorizedColumnName || DEFAULT_UNCATEGORIZED_LABEL;
|
|
case "done":
|
|
return doneColumnName || DEFAULT_DONE_LABEL;
|
|
}
|
|
}
|
|
var createCollapsedColumnsStore = (settingsStore) => {
|
|
return derived([settingsStore], ([settings]) => {
|
|
var _a5;
|
|
return new Set((_a5 = settings.collapsedColumns) != null ? _a5 : []);
|
|
});
|
|
};
|
|
function createColumnData(columns) {
|
|
const columnTagTable = {};
|
|
const columnColourTable = {};
|
|
const columnPlacementTagTable = {};
|
|
const columnMatchTagTable = {};
|
|
for (const column of columns) {
|
|
if (RESERVED_COLUMN_KEYS.has(column.id)) continue;
|
|
columnTagTable[column.id] = column.label;
|
|
if (column.color) {
|
|
columnColourTable[column.id] = column.color;
|
|
}
|
|
columnPlacementTagTable[column.id] = getColumnWriteTags(column);
|
|
columnMatchTagTable[column.id] = getColumnHeaderTags(column);
|
|
}
|
|
return {
|
|
columnTagTable,
|
|
columnColourTable,
|
|
columnPlacementTagTable,
|
|
columnMatchTagTable
|
|
};
|
|
}
|
|
|
|
// src/ui/components/column.svelte
|
|
var import_obsidian5 = require("obsidian");
|
|
|
|
// src/ui/dnd/store.ts
|
|
var isDraggingStore = writable(null);
|
|
|
|
// src/ui/components/task_menu.svelte
|
|
var import_obsidian2 = require("obsidian");
|
|
|
|
// src/ui/components/icon_button.svelte
|
|
var import_obsidian = require("obsidian");
|
|
var root = from_html(`<button></button>`);
|
|
var $$css = {
|
|
hash: "svelte-1igl4u1",
|
|
code: "button.svelte-1igl4u1 {width:24px;height:24px;display:flex;justify-content:center;align-items:center;border-radius:var(--radius-s);transition:background linear 100ms;cursor:pointer;background:unset;padding:0;}button.svelte-1igl4u1:focus-visible {outline:2px solid var(--background-modifier-border-focus);outline-offset:2px;}"
|
|
};
|
|
function Icon_button($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Icon_button, ...$$anchor });
|
|
const $$sanitized_props = legacy_rest_props($$props, ["children", "$$slots", "$$events", "$$legacy"]);
|
|
const $$restProps = legacy_rest_props($$sanitized_props, ["icon"]);
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css);
|
|
let icon = prop($$props, "icon", 12);
|
|
let element2 = mutable_source();
|
|
function handleKeydown(e) {
|
|
var _a5;
|
|
if (e.key === "Enter" || e.key === " ") {
|
|
e.preventDefault();
|
|
(_a5 = get(element2)) == null ? void 0 : _a5.click();
|
|
}
|
|
}
|
|
legacy_pre_effect(() => (get(element2), import_obsidian.setIcon, deep_read_state(icon())), () => {
|
|
if (get(element2)) {
|
|
(0, import_obsidian.setIcon)(get(element2), icon());
|
|
}
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get icon() {
|
|
return icon();
|
|
},
|
|
set icon($$value) {
|
|
icon($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var button = root();
|
|
attribute_effect(button, () => ({ tabindex: "0", ...$$restProps }), void 0, void 0, void 0, "svelte-1igl4u1");
|
|
bind_this(button, ($$value) => set(element2, $$value), () => get(element2));
|
|
event("click", button, function($$arg) {
|
|
bubble_event.call(this, $$props, $$arg);
|
|
});
|
|
event("keydown", button, handleKeydown);
|
|
append($$anchor, button);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/components/task_menu.svelte
|
|
function Task_menu($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Task_menu, ...$$anchor });
|
|
push($$props, false);
|
|
const $columnTagTableStore = () => store_get(columnTagTableStore(), "$columnTagTableStore", $$stores);
|
|
const [$$stores, $$cleanup] = setup_stores();
|
|
let task = prop($$props, "task", 12);
|
|
let taskActions = prop($$props, "taskActions", 12);
|
|
let columnTagTableStore = prop($$props, "columnTagTableStore", 12);
|
|
let doneColumnName = prop($$props, "doneColumnName", 12, void 0);
|
|
function showMenu(e) {
|
|
const menu = new import_obsidian2.Menu();
|
|
const target = e.target;
|
|
if (!target) {
|
|
return;
|
|
}
|
|
const boundingRect = target.getBoundingClientRect();
|
|
const y = boundingRect.top + boundingRect.height / 2;
|
|
const x = boundingRect.left + boundingRect.width / 2;
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Go to file`).onClick(() => taskActions().viewFile(task().id));
|
|
});
|
|
menu.addSeparator();
|
|
for (const [tag2, label] of Object.entries($columnTagTableStore())) {
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Move to ${label}`).onClick(() => taskActions().changeColumn(task().id, tag2));
|
|
if (task().column === tag2) {
|
|
i.setDisabled(true);
|
|
}
|
|
});
|
|
}
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Move to ${resolveDefaultColumnName("done", void 0, doneColumnName())}`).onClick(() => taskActions().markDone(task().id));
|
|
if (task().done) {
|
|
i.setDisabled(true);
|
|
}
|
|
});
|
|
menu.addSeparator();
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Duplicate task`).onClick(() => taskActions().duplicateTask(task().id));
|
|
});
|
|
menu.addItem((i) => {
|
|
if (task().isCancelled) {
|
|
i.setTitle(`Restore task`).onClick(() => taskActions().restoreTasks([task().id]));
|
|
} else {
|
|
i.setTitle(`Cancel task`).onClick(() => taskActions().cancelTasks([task().id]));
|
|
}
|
|
});
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Archive task`).onClick(() => taskActions().archiveTasks([task().id]));
|
|
});
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Delete task`).onClick(() => taskActions().deleteTask(task().id));
|
|
});
|
|
menu.showAtPosition({ x, y });
|
|
}
|
|
var $$exports = {
|
|
get task() {
|
|
return task();
|
|
},
|
|
set task($$value) {
|
|
task($$value);
|
|
flushSync();
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
set taskActions($$value) {
|
|
taskActions($$value);
|
|
flushSync();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
set columnTagTableStore($$value) {
|
|
columnTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get doneColumnName() {
|
|
return doneColumnName();
|
|
},
|
|
set doneColumnName($$value) {
|
|
doneColumnName($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
Icon_button($$anchor, { icon: "lucide-more-vertical", $$events: { click: showMenu } });
|
|
var $$pop = pop($$exports);
|
|
$$cleanup();
|
|
return $$pop;
|
|
}
|
|
|
|
// src/ui/components/icon.svelte
|
|
var import_obsidian3 = require("obsidian");
|
|
var root2 = from_html(`<span class="icon svelte-1cj3qcy"></span>`);
|
|
var $$css2 = {
|
|
hash: "svelte-1cj3qcy",
|
|
code: ".icon.svelte-1cj3qcy {display:inline-flex;justify-content:center;align-items:center;flex-shrink:0;}.icon.svelte-1cj3qcy svg {width:100%;height:100%;}"
|
|
};
|
|
function Icon($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Icon, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css2);
|
|
let name = prop($$props, "name", 12);
|
|
let size2 = prop(
|
|
$$props,
|
|
"size",
|
|
12,
|
|
16
|
|
// Default icon size in pixels
|
|
);
|
|
let opacity = prop($$props, "opacity", 12, 1);
|
|
let ariaLabel = prop($$props, "ariaLabel", 12, void 0);
|
|
let element2 = mutable_source();
|
|
onMount(() => {
|
|
if (get(element2)) {
|
|
(0, import_obsidian3.setIcon)(get(element2), name());
|
|
}
|
|
});
|
|
legacy_pre_effect(() => (get(element2), deep_read_state(name()), import_obsidian3.setIcon), () => {
|
|
if (get(element2) && name()) {
|
|
(0, import_obsidian3.setIcon)(get(element2), name());
|
|
}
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get name() {
|
|
return name();
|
|
},
|
|
set name($$value) {
|
|
name($$value);
|
|
flushSync();
|
|
},
|
|
get size() {
|
|
return size2();
|
|
},
|
|
set size($$value) {
|
|
size2($$value);
|
|
flushSync();
|
|
},
|
|
get opacity() {
|
|
return opacity();
|
|
},
|
|
set opacity($$value) {
|
|
opacity($$value);
|
|
flushSync();
|
|
},
|
|
get ariaLabel() {
|
|
return ariaLabel();
|
|
},
|
|
set ariaLabel($$value) {
|
|
ariaLabel($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var span = root2();
|
|
let styles;
|
|
bind_this(span, ($$value) => set(element2, $$value), () => get(element2));
|
|
template_effect(() => {
|
|
var _a5, _b3;
|
|
set_attribute2(span, "aria-label", ariaLabel());
|
|
set_attribute2(span, "role", ariaLabel() ? "img" : void 0);
|
|
styles = set_style(span, "", styles, {
|
|
width: `${(_a5 = size2()) != null ? _a5 : ""}px`,
|
|
height: `${(_b3 = size2()) != null ? _b3 : ""}px`,
|
|
opacity: opacity()
|
|
});
|
|
});
|
|
append($$anchor, span);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/components/task.svelte
|
|
var import_obsidian4 = require("obsidian");
|
|
var root_1 = from_html(`<button role="checkbox" tabindex="0"><!></button>`);
|
|
var root_2 = from_html(`<textarea></textarea>`);
|
|
var root_3 = from_html(`<div role="button" class="content-preview markdown-rendered svelte-1fvsaoa" tabindex="0"></div>`);
|
|
var root_4 = from_html(`<div class="task-footer svelte-1fvsaoa"><button class="go-to-file-button svelte-1fvsaoa" aria-label="Go to file" title="Go to file" tabindex="0"><!> <span class="file-path svelte-1fvsaoa"> </span></button></div>`);
|
|
var root_6 = from_html(`<span><span class="cm-formatting cm-formatting-hashtag cm-hashtag cm-hashtag-begin cm-list-1">#</span><span class="cm-hashtag cm-hashtag-end cm-list-1"> </span></span>`);
|
|
var root_5 = from_html(`<div class="task-tags svelte-1fvsaoa"></div>`);
|
|
var root3 = from_html(`<div role="group"><div class="task-row svelte-1fvsaoa"><div class="task-row-left svelte-1fvsaoa"><!></div> <div class="task-row-content svelte-1fvsaoa"><!></div> <div class="task-row-right svelte-1fvsaoa"><!></div></div> <!> <!></div>`);
|
|
var $$css3 = {
|
|
hash: "svelte-1fvsaoa",
|
|
code: '.task.svelte-1fvsaoa {background-color:var(--background-secondary-alt);border-radius:var(--radius-m);border:var(--border-width) solid var(--background-modifier-border);cursor:grab;}.task.is-dragging.svelte-1fvsaoa {opacity:0.15;}.task.is-selected.svelte-1fvsaoa {border-color:var(--interactive-accent);background-color:color-mix(in srgb, var(--interactive-accent) 8%, var(--background-secondary-alt));}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) {padding:var(--size-4-2);padding-inline-start:calc(var(--size-4-2) + 8px);display:flex;gap:var(--size-4-1);align-items:flex-start;}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-left:where(.svelte-1fvsaoa) {display:flex;align-items:center;flex-shrink:0;}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-content:where(.svelte-1fvsaoa) {flex:1;min-width:0;}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-content:where(.svelte-1fvsaoa) textarea:where(.svelte-1fvsaoa) {cursor:text;background-color:var(--color-base-25);width:100%;}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-content:where(.svelte-1fvsaoa) .content-preview:where(.svelte-1fvsaoa) {min-height:1.5rem;}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-content:where(.svelte-1fvsaoa) .content-preview:where(.svelte-1fvsaoa):focus-within {box-shadow:0 0 0 3px var(--background-modifier-border-focus);}.task.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-right:where(.svelte-1fvsaoa) {display:flex;align-items:center;flex-shrink:0;}.task.is-selection-mode.svelte-1fvsaoa .task-row:where(.svelte-1fvsaoa) .task-row-left:where(.svelte-1fvsaoa) {width:0;flex:0 0 0;overflow:visible;z-index:1;}.task.is-selection-mode.svelte-1fvsaoa .select-task:where(.svelte-1fvsaoa) {transform:translateX(calc(var(--size-4-2) * -1));}.task.svelte-1fvsaoa .icon-button:where(.svelte-1fvsaoa) {display:flex;justify-content:center;align-items:center;width:24px;height:24px;padding:0;border:none;background:transparent;cursor:pointer;border-radius:var(--radius-s);transition:opacity 0.2s ease;box-shadow:none;}.task.svelte-1fvsaoa .icon-button:where(.svelte-1fvsaoa):hover, .task.svelte-1fvsaoa .icon-button:where(.svelte-1fvsaoa):active {background:transparent;box-shadow:none;}.task.svelte-1fvsaoa .icon-button:where(.svelte-1fvsaoa):focus-visible {outline:2px solid var(--background-modifier-border-focus);outline-offset:2px;}.task.svelte-1fvsaoa .icon-button.select-task:where(.svelte-1fvsaoa):hover svg {opacity:0.8 !important;color:var(--interactive-accent);}.task.svelte-1fvsaoa .icon-button.select-task.is-selected:where(.svelte-1fvsaoa) svg {color:var(--interactive-accent);}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) {border-top:var(--border-width) solid var(--background-modifier-border);padding:var(--size-4-2);padding-top:var(--size-4-1);}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa) {display:flex;align-items:center;justify-content:flex-start;gap:var(--size-2-1);width:100%;padding:0;border:none;background:transparent;cursor:pointer;text-align:left;box-shadow:none;transition:opacity 0.2s ease;border-radius:var(--radius-s);}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa):hover {background:transparent;box-shadow:none;}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa):hover svg {opacity:1 !important;color:var(--interactive-accent);}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa):hover .file-path:where(.svelte-1fvsaoa) {color:var(--interactive-accent);}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa):focus-visible {outline:2px solid var(--background-modifier-border-focus);outline-offset:2px;}.task.svelte-1fvsaoa .task-footer:where(.svelte-1fvsaoa) .go-to-file-button:where(.svelte-1fvsaoa) .file-path:where(.svelte-1fvsaoa) {margin:0;font-size:var(--font-ui-smaller);color:var(--text-muted);transition:color 0.2s ease;overflow-wrap:anywhere;white-space:normal;flex:1;min-width:0;line-height:1.3;}.task.svelte-1fvsaoa .task-tags:where(.svelte-1fvsaoa) {display:flex;flex-wrap:wrap;gap:var(--size-4-1) var(--size-2-1);padding:var(--size-4-2) var(--size-2-2);padding-top:0;}.task-row-content img {max-width:100%;max-height:160px;object-fit:contain;}.task-row-content code {white-space:pre-wrap;}.task-row-content .content-preview,\n.task-row-content .content-preview > ul,\n.task-row-content .content-preview > ul > li,\n.task-row-content .content-preview > ul > li > p {margin:0;}.task .task-row-content .content-preview > ul {padding-left:var(--size-4-4, 16px);}.task-row-content .content-preview .task-list-item {min-width:0;word-break:break-word;}.task-row-content input.task-nested-checkbox {pointer-events:none;}.task-row-content .content-preview .task-list-item > input[type="checkbox"] {margin-right:var(--size-2-2);transform:translateY(2px);}.task-row-content .content-preview .task-list-item > *:not(input[type="checkbox"]) {min-width:0;}'
|
|
};
|
|
function Task($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Task, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css3);
|
|
const shouldconsolidateTags = mutable_source();
|
|
let app = prop($$props, "app", 12);
|
|
let task = prop($$props, "task", 12);
|
|
let taskActions = prop($$props, "taskActions", 12);
|
|
let columnTagTableStore = prop($$props, "columnTagTableStore", 12);
|
|
let showFilepath = prop($$props, "showFilepath", 12);
|
|
let consolidateTags = prop($$props, "consolidateTags", 12);
|
|
let displayColumn = prop($$props, "displayColumn", 12);
|
|
let isSelectionMode = prop($$props, "isSelectionMode", 12, false);
|
|
let isSelected = prop($$props, "isSelected", 12, false);
|
|
let onToggleSelection = prop($$props, "onToggleSelection", 12, () => {
|
|
});
|
|
let selectedTaskIds = prop($$props, "selectedTaskIds", 28, () => []);
|
|
let doneColumnName = prop($$props, "doneColumnName", 12, void 0);
|
|
function handleContentBlur() {
|
|
var _a5;
|
|
set(isEditing, false);
|
|
const content = (_a5 = get(textAreaEl)) == null ? void 0 : _a5.value;
|
|
if (!content) return;
|
|
const updatedContent = content.replaceAll("\n", "<br />");
|
|
taskActions().updateContent(task().id, updatedContent);
|
|
}
|
|
function handleKeypress(e) {
|
|
var _a5;
|
|
if (e.key === "Enter" && !e.shiftKey || e.key === "Escape") {
|
|
(_a5 = get(textAreaEl)) == null ? void 0 : _a5.blur();
|
|
}
|
|
}
|
|
function handleOpenKeypress(e) {
|
|
if (e.key === "Enter" || e.key === " ") {
|
|
handleFocus(e);
|
|
}
|
|
}
|
|
let isEditing = mutable_source(false);
|
|
let isDragging = mutable_source(false);
|
|
function handleDragStart(e) {
|
|
handleContentBlur();
|
|
set(isDragging, true);
|
|
const taskIds = isSelectionMode() && isSelected() && selectedTaskIds().length > 0 ? selectedTaskIds() : [task().id];
|
|
isDraggingStore.set({ fromColumn: displayColumn(), draggedTaskIds: taskIds });
|
|
if (e.dataTransfer) {
|
|
e.dataTransfer.setData("text/plain", task().id);
|
|
e.dataTransfer.dropEffect = "move";
|
|
}
|
|
if (taskIds.length > 1 && e.dataTransfer) {
|
|
const ghost = document.createElement("div");
|
|
ghost.textContent = `Moving ${taskIds.length} tasks`;
|
|
ghost.style.cssText = [
|
|
"position:fixed",
|
|
"top:-9999px",
|
|
"left:-9999px",
|
|
"padding:6px 12px",
|
|
"background:var(--background-secondary-alt)",
|
|
"border:1px solid var(--background-modifier-border)",
|
|
"border-radius:var(--radius-m)",
|
|
"font-size:var(--font-ui-small)",
|
|
"color:var(--text-normal)",
|
|
"box-shadow:var(--shadow-s)",
|
|
"white-space:nowrap"
|
|
].join(";");
|
|
document.body.appendChild(ghost);
|
|
e.dataTransfer.setDragImage(ghost, 0, 0);
|
|
setTimeout(() => document.body.removeChild(ghost), 0);
|
|
}
|
|
}
|
|
function handleDragEnd() {
|
|
set(isDragging, false);
|
|
isDraggingStore.set(null);
|
|
}
|
|
let textAreaEl = mutable_source();
|
|
let previewContainerEl = mutable_source();
|
|
let markdownComponent;
|
|
const interactiveTagNames = /* @__PURE__ */ new Set([
|
|
"a",
|
|
"button",
|
|
"input",
|
|
"select",
|
|
"textarea",
|
|
"label",
|
|
"summary",
|
|
"details"
|
|
]);
|
|
function eventHasInteractiveTarget(e) {
|
|
const path = (e == null ? void 0 : e.composedPath()) || [];
|
|
const currentTarget = e == null ? void 0 : e.currentTarget;
|
|
for (const element2 of path) {
|
|
if (!(element2 instanceof HTMLElement)) {
|
|
continue;
|
|
}
|
|
if (currentTarget instanceof HTMLElement && element2 === currentTarget) {
|
|
continue;
|
|
}
|
|
if (interactiveTagNames.has(element2.tagName.toLowerCase())) {
|
|
return true;
|
|
}
|
|
if (element2.isContentEditable) {
|
|
return true;
|
|
}
|
|
const role = element2.getAttribute("role");
|
|
if (role === "button" || role === "checkbox" || role === "link") {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
function handleFocus(e) {
|
|
if (eventHasInteractiveTarget(e)) {
|
|
return;
|
|
}
|
|
set(isEditing, true);
|
|
setTimeout(
|
|
() => {
|
|
var _a5;
|
|
(_a5 = get(textAreaEl)) == null ? void 0 : _a5.focus();
|
|
},
|
|
100
|
|
);
|
|
}
|
|
function renderTaskMarkdown() {
|
|
const contentWithBlockLink = (task().content + (task().blockLink ? ` ^${task().blockLink}` : "")).replaceAll("<br />", "\n");
|
|
const indentedContinuationLines = contentWithBlockLink.replaceAll("\n", "\n ");
|
|
return `- [${task().displayStatus}] ${indentedContinuationLines}`;
|
|
}
|
|
async function renderMarkdown(selectionMode) {
|
|
if (!get(previewContainerEl)) return;
|
|
if (markdownComponent) {
|
|
markdownComponent.unload();
|
|
}
|
|
get(previewContainerEl).empty();
|
|
markdownComponent = new import_obsidian4.Component();
|
|
const contentToRender = renderTaskMarkdown();
|
|
await import_obsidian4.MarkdownRenderer.render(app(), contentToRender, get(previewContainerEl), task().path, markdownComponent);
|
|
setupLinkHandlers();
|
|
postProcessRenderedContent(selectionMode);
|
|
}
|
|
function setupLinkHandlers() {
|
|
if (!get(previewContainerEl)) return;
|
|
const internalLinks = get(previewContainerEl).querySelectorAll("a.internal-link");
|
|
internalLinks.forEach((link2) => {
|
|
const anchorEl = link2;
|
|
anchorEl.addEventListener("click", (e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
const linkTarget = anchorEl.getAttribute("data-href");
|
|
if (linkTarget && app()) {
|
|
app().workspace.openLinkText(linkTarget, task().path, import_obsidian4.Keymap.isModEvent(e));
|
|
}
|
|
});
|
|
anchorEl.addEventListener("mouseover", (e) => {
|
|
const linkTarget = anchorEl.getAttribute("data-href");
|
|
if (linkTarget && app() && get(previewContainerEl)) {
|
|
app().workspace.trigger("hover-link", {
|
|
event: e,
|
|
source: "kanban-view",
|
|
hoverParent: get(previewContainerEl),
|
|
targetEl: anchorEl,
|
|
linktext: linkTarget,
|
|
sourcePath: task().path
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|
|
function postProcessRenderedContent(selectionMode) {
|
|
if (!get(previewContainerEl)) return;
|
|
function stopPropagation2(e) {
|
|
e.stopPropagation();
|
|
}
|
|
function handlePrimaryCheckboxClick(e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
void taskActions().toggleDone(task().id);
|
|
}
|
|
get(previewContainerEl).querySelectorAll("a:not(.internal-link)").forEach((a) => {
|
|
const anchor = a;
|
|
anchor.target = "_blank";
|
|
anchor.rel = "noopener noreferrer";
|
|
anchor.addEventListener("click", stopPropagation2);
|
|
anchor.addEventListener("keypress", stopPropagation2);
|
|
});
|
|
const checkboxes = Array.from(get(previewContainerEl).querySelectorAll('input[type="checkbox"]'));
|
|
const [primaryCheckbox, ...nestedCheckboxes] = checkboxes;
|
|
if (primaryCheckbox) {
|
|
primaryCheckbox.classList.add("task-primary-checkbox");
|
|
primaryCheckbox.addEventListener("mousedown", stopPropagation2);
|
|
primaryCheckbox.addEventListener("mouseup", stopPropagation2);
|
|
primaryCheckbox.addEventListener("keypress", stopPropagation2);
|
|
if (selectionMode) {
|
|
primaryCheckbox.disabled = true;
|
|
primaryCheckbox.tabIndex = -1;
|
|
primaryCheckbox.style.visibility = "hidden";
|
|
primaryCheckbox.setAttribute("aria-hidden", "true");
|
|
primaryCheckbox.addEventListener("click", stopPropagation2);
|
|
} else {
|
|
primaryCheckbox.disabled = false;
|
|
primaryCheckbox.style.removeProperty("visibility");
|
|
primaryCheckbox.removeAttribute("aria-hidden");
|
|
primaryCheckbox.setAttribute("aria-label", task().done ? "Mark as incomplete" : "Mark as complete");
|
|
primaryCheckbox.addEventListener("click", handlePrimaryCheckboxClick);
|
|
}
|
|
}
|
|
nestedCheckboxes.forEach((checkbox) => {
|
|
checkbox.classList.add("task-nested-checkbox");
|
|
checkbox.disabled = true;
|
|
checkbox.tabIndex = -1;
|
|
checkbox.addEventListener("click", stopPropagation2);
|
|
checkbox.addEventListener("keypress", stopPropagation2);
|
|
});
|
|
get(previewContainerEl).querySelectorAll("iframe, audio, video").forEach((el) => {
|
|
el.remove();
|
|
});
|
|
}
|
|
onDestroy(() => {
|
|
if (markdownComponent) {
|
|
markdownComponent.unload();
|
|
}
|
|
});
|
|
function onInput(e) {
|
|
e.currentTarget.style.height = `0px`;
|
|
e.currentTarget.style.height = `${e.currentTarget.scrollHeight}px`;
|
|
}
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(task()), get(isEditing), get(previewContainerEl), deep_read_state(isSelectionMode())),
|
|
() => {
|
|
if (task() && !get(isEditing) && get(previewContainerEl)) {
|
|
void renderMarkdown(isSelectionMode());
|
|
}
|
|
}
|
|
);
|
|
legacy_pre_effect(() => get(textAreaEl), () => {
|
|
if (get(textAreaEl)) {
|
|
mutate(textAreaEl, get(textAreaEl).style.height = `0px`);
|
|
mutate(textAreaEl, get(textAreaEl).style.height = `${get(textAreaEl).scrollHeight}px`);
|
|
}
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(consolidateTags()), deep_read_state(task())),
|
|
() => {
|
|
set(shouldconsolidateTags, consolidateTags() && task().tags.size > 0);
|
|
}
|
|
);
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get app() {
|
|
return app();
|
|
},
|
|
set app($$value) {
|
|
app($$value);
|
|
flushSync();
|
|
},
|
|
get task() {
|
|
return task();
|
|
},
|
|
set task($$value) {
|
|
task($$value);
|
|
flushSync();
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
set taskActions($$value) {
|
|
taskActions($$value);
|
|
flushSync();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
set columnTagTableStore($$value) {
|
|
columnTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get showFilepath() {
|
|
return showFilepath();
|
|
},
|
|
set showFilepath($$value) {
|
|
showFilepath($$value);
|
|
flushSync();
|
|
},
|
|
get consolidateTags() {
|
|
return consolidateTags();
|
|
},
|
|
set consolidateTags($$value) {
|
|
consolidateTags($$value);
|
|
flushSync();
|
|
},
|
|
get displayColumn() {
|
|
return displayColumn();
|
|
},
|
|
set displayColumn($$value) {
|
|
displayColumn($$value);
|
|
flushSync();
|
|
},
|
|
get isSelectionMode() {
|
|
return isSelectionMode();
|
|
},
|
|
set isSelectionMode($$value) {
|
|
isSelectionMode($$value);
|
|
flushSync();
|
|
},
|
|
get isSelected() {
|
|
return isSelected();
|
|
},
|
|
set isSelected($$value) {
|
|
isSelected($$value);
|
|
flushSync();
|
|
},
|
|
get onToggleSelection() {
|
|
return onToggleSelection();
|
|
},
|
|
set onToggleSelection($$value) {
|
|
onToggleSelection($$value);
|
|
flushSync();
|
|
},
|
|
get selectedTaskIds() {
|
|
return selectedTaskIds();
|
|
},
|
|
set selectedTaskIds($$value) {
|
|
selectedTaskIds($$value);
|
|
flushSync();
|
|
},
|
|
get doneColumnName() {
|
|
return doneColumnName();
|
|
},
|
|
set doneColumnName($$value) {
|
|
doneColumnName($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var div = root3();
|
|
let classes;
|
|
var div_1 = child(div);
|
|
var div_2 = child(div_1);
|
|
var node = child(div_2);
|
|
{
|
|
var consequent = ($$anchor2) => {
|
|
var button = root_1();
|
|
let classes_1;
|
|
var node_1 = child(button);
|
|
{
|
|
let $0 = derived_safe_equal(() => isSelected() ? "lucide-check-square" : "lucide-square");
|
|
let $1 = derived_safe_equal(() => isSelected() ? 1 : 0.5);
|
|
Icon(node_1, {
|
|
get name() {
|
|
return get($0);
|
|
},
|
|
size: 18,
|
|
get opacity() {
|
|
return get($1);
|
|
}
|
|
});
|
|
}
|
|
reset(button);
|
|
template_effect(() => {
|
|
classes_1 = set_class(button, 1, "icon-button select-task svelte-1fvsaoa", null, classes_1, { "is-selected": isSelected() });
|
|
set_attribute2(button, "aria-label", isSelected() ? "Deselect for bulk actions" : "Select for bulk actions");
|
|
set_attribute2(button, "aria-checked", isSelected());
|
|
set_attribute2(button, "title", isSelected() ? "Deselect for bulk actions" : "Select for bulk actions");
|
|
});
|
|
event("click", button, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onToggleSelection()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
event("keydown", button, (e) => {
|
|
if (e.key === "Enter" || e.key === " ") {
|
|
e.preventDefault();
|
|
onToggleSelection()();
|
|
}
|
|
});
|
|
append($$anchor2, button);
|
|
};
|
|
if_block(node, ($$render) => {
|
|
if (isSelectionMode()) $$render(consequent);
|
|
});
|
|
}
|
|
reset(div_2);
|
|
var div_3 = sibling(div_2, 2);
|
|
var node_2 = child(div_3);
|
|
{
|
|
var consequent_1 = ($$anchor2) => {
|
|
var textarea = root_2();
|
|
remove_textarea_child(textarea);
|
|
let classes_2;
|
|
bind_this(textarea, ($$value) => set(textAreaEl, $$value), () => get(textAreaEl));
|
|
template_effect(
|
|
($0) => {
|
|
set_value(textarea, $0);
|
|
classes_2 = set_class(textarea, 1, "svelte-1fvsaoa", null, classes_2, { editing: get(isEditing) });
|
|
},
|
|
[
|
|
() => (deep_read_state(task()), untrack(() => task().content.replaceAll("<br />", "\n")))
|
|
]
|
|
);
|
|
event("keypress", textarea, handleKeypress);
|
|
event("blur", textarea, handleContentBlur);
|
|
event("input", textarea, onInput);
|
|
append($$anchor2, textarea);
|
|
};
|
|
var alternate = ($$anchor2) => {
|
|
var div_4 = root_3();
|
|
bind_this(div_4, ($$value) => set(previewContainerEl, $$value), () => get(previewContainerEl));
|
|
event("mouseup", div_4, handleFocus);
|
|
event("keypress", div_4, handleOpenKeypress);
|
|
append($$anchor2, div_4);
|
|
};
|
|
if_block(node_2, ($$render) => {
|
|
if (get(isEditing)) $$render(consequent_1);
|
|
else $$render(alternate, -1);
|
|
});
|
|
}
|
|
reset(div_3);
|
|
var div_5 = sibling(div_3, 2);
|
|
var node_3 = child(div_5);
|
|
Task_menu(node_3, {
|
|
get task() {
|
|
return task();
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
get doneColumnName() {
|
|
return doneColumnName();
|
|
}
|
|
});
|
|
reset(div_5);
|
|
reset(div_1);
|
|
var node_4 = sibling(div_1, 2);
|
|
{
|
|
var consequent_2 = ($$anchor2) => {
|
|
var div_6 = root_4();
|
|
var button_1 = child(div_6);
|
|
var node_5 = child(button_1);
|
|
Icon(node_5, { name: "lucide-arrow-up-right", size: 18, opacity: 0.5 });
|
|
var span = sibling(node_5, 2);
|
|
var text2 = child(span, true);
|
|
reset(span);
|
|
reset(button_1);
|
|
reset(div_6);
|
|
template_effect(() => set_text(text2, (deep_read_state(task()), untrack(() => task().path))));
|
|
event("click", button_1, (e) => taskActions().viewFile(task().id, e));
|
|
event("keydown", button_1, (e) => {
|
|
if (e.key === "Enter" || e.key === " ") {
|
|
e.preventDefault();
|
|
taskActions().viewFile(task().id, e);
|
|
}
|
|
});
|
|
append($$anchor2, div_6);
|
|
};
|
|
if_block(node_4, ($$render) => {
|
|
if (showFilepath()) $$render(consequent_2);
|
|
});
|
|
}
|
|
var node_6 = sibling(node_4, 2);
|
|
{
|
|
var consequent_3 = ($$anchor2) => {
|
|
var div_7 = root_5();
|
|
each(div_7, 5, () => (deep_read_state(task()), untrack(() => task().tags)), index, ($$anchor3, tag2) => {
|
|
var span_1 = root_6();
|
|
var span_2 = sibling(child(span_1));
|
|
var text_1 = child(span_2, true);
|
|
reset(span_2);
|
|
reset(span_1);
|
|
template_effect(() => set_text(text_1, get(tag2)));
|
|
append($$anchor3, span_1);
|
|
});
|
|
reset(div_7);
|
|
append($$anchor2, div_7);
|
|
};
|
|
if_block(node_6, ($$render) => {
|
|
if (get(shouldconsolidateTags)) $$render(consequent_3);
|
|
});
|
|
}
|
|
reset(div);
|
|
template_effect(() => {
|
|
classes = set_class(div, 1, "task svelte-1fvsaoa", null, classes, {
|
|
"is-dragging": get(isDragging),
|
|
"is-selected": isSelectionMode() && isSelected(),
|
|
"is-selection-mode": isSelectionMode()
|
|
});
|
|
set_attribute2(div, "draggable", !get(isEditing));
|
|
});
|
|
event("dragstart", div, handleDragStart);
|
|
event("dragend", div, handleDragEnd);
|
|
append($$anchor, div);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/selection/task_selection_store.ts
|
|
var taskSelectionStore = writable(/* @__PURE__ */ new Map());
|
|
function toggleTaskSelection(taskId) {
|
|
taskSelectionStore.update((map) => {
|
|
const current = map.get(taskId) || false;
|
|
map.set(taskId, !current);
|
|
return new Map(map);
|
|
});
|
|
}
|
|
function isTaskSelected(taskId, selectionMap) {
|
|
return selectionMap.get(taskId) || false;
|
|
}
|
|
function getSelectedTaskCount(taskIds, selectionMap) {
|
|
return taskIds.filter((id) => selectionMap.get(id) || false).length;
|
|
}
|
|
function clearColumnSelections(columnTaskIds) {
|
|
taskSelectionStore.update((map) => {
|
|
for (const id of columnTaskIds) {
|
|
map.delete(id);
|
|
}
|
|
return new Map(map);
|
|
});
|
|
}
|
|
|
|
// src/ui/selection/selection_mode_store.ts
|
|
var selectionModeStore = writable(/* @__PURE__ */ new Map());
|
|
function toggleSelectionMode(column) {
|
|
selectionModeStore.update((map) => {
|
|
const current = map.get(column) || false;
|
|
const newMode = !current;
|
|
map.set(column, newMode);
|
|
if (current && !newMode) {
|
|
taskSelectionStore.set(/* @__PURE__ */ new Map());
|
|
}
|
|
return new Map(map);
|
|
});
|
|
}
|
|
function isInSelectionMode(column, modeMap) {
|
|
return modeMap.get(column) || false;
|
|
}
|
|
|
|
// src/ui/components/column.svelte
|
|
var root_22 = from_html(`<div class="column-match-tags svelte-ncpvit"> </div>`);
|
|
var root_32 = from_html(`<div class="mode-toggle svelte-ncpvit" role="toolbar" aria-label="Column interaction mode"><button aria-label="Done mode: click tasks to mark complete">Done</button> <button aria-label="Select mode: click tasks to select for bulk actions">Select</button></div>`);
|
|
var root_52 = from_html(`<div class="selection-info svelte-ncpvit" aria-live="polite"> </div>`);
|
|
var root_62 = from_html(`<div class="divide svelte-ncpvit"></div>`);
|
|
var root_8 = from_html(`<div class="new-task-input svelte-ncpvit"><textarea placeholder="Task name..." class="svelte-ncpvit"></textarea></div>`);
|
|
var root_11 = from_html(`<span class="file-indicator-label svelte-ncpvit">(default)</span>`);
|
|
var root_10 = from_html(`<div class="file-indicator svelte-ncpvit"><span class="file-indicator-arrow svelte-ncpvit">\u2192</span> <span class="file-indicator-name svelte-ncpvit"> </span> <!></div>`);
|
|
var root_9 = from_html(`<div class="add-new-controls svelte-ncpvit"><button class="add-new-btn svelte-ncpvit"><span class="svelte-ncpvit"></span> Add new</button> <!></div> <!>`, 1);
|
|
var root_12 = from_html(`<div role="group"><div><div class="header svelte-ncpvit"><button class="collapse-btn svelte-ncpvit"> </button> <div class="column-title-group svelte-ncpvit"><h2 class="svelte-ncpvit"> </h2> <!></div> <span class="task-count svelte-ncpvit" aria-live="polite"> </span> <div class="header-menu svelte-ncpvit"><!> <!></div></div> <!></div> <!> <div class="tasks-wrapper svelte-ncpvit"><div class="tasks svelte-ncpvit"></div> <!> <!></div></div>`);
|
|
var $$css4 = {
|
|
hash: "svelte-ncpvit",
|
|
code: ".column.svelte-ncpvit {display:flex;flex-direction:column;align-self:flex-start;width:var(--column-width, 300px);flex-shrink:0;padding:var(--size-4-3);border-radius:var(--radius-m);border:var(--border-width) solid var(--background-modifier-border);background-color:var(--background-secondary);transition:width 250ms ease;overflow:hidden;}.column.collapsed.svelte-ncpvit {width:48px;cursor:pointer;}.column.collapsed.drop-hover.svelte-ncpvit {border-color:var(--color-base-70);}.column.collapsed.svelte-ncpvit .divide:where(.svelte-ncpvit),\n.column.collapsed.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) {display:none;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) {flex-direction:column;align-items:center;min-height:unset;gap:var(--size-4-2);}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) h2:where(.svelte-ncpvit) {writing-mode:vertical-rl;text-orientation:mixed;white-space:nowrap;overflow:visible;text-overflow:unset;order:2;flex:0 0 auto;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) .task-count:where(.svelte-ncpvit) {order:3;writing-mode:horizontal-tb;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) .header-menu:where(.svelte-ncpvit) {display:flex;margin-left:0;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) .mode-toggle:where(.svelte-ncpvit) {display:none;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) .header-menu button {width:20px;height:20px;}.column.collapsed.svelte-ncpvit .column-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) .collapse-btn:where(.svelte-ncpvit) {order:1;}.column.vertical-flow.vertical-collapsed.drop-hover.svelte-ncpvit {border-color:var(--color-base-70);}.column.vertical-flow.vertical-collapsed.svelte-ncpvit .divide:where(.svelte-ncpvit),\n.column.vertical-flow.vertical-collapsed.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) {display:none;}.column.vertical-flow.vertical-collapsed.svelte-ncpvit .column-header.row-header:where(.svelte-ncpvit) {margin-bottom:0;}.column.vertical-flow.vertical-collapsed.svelte-ncpvit .column-header.row-header:where(.svelte-ncpvit) .header-menu:where(.svelte-ncpvit) {display:flex;}.column.vertical-flow.vertical-collapsed.svelte-ncpvit .column-header.row-header:where(.svelte-ncpvit) .mode-toggle:where(.svelte-ncpvit) {display:none;}.column.vertical-flow.svelte-ncpvit {width:100%;}.column.vertical-flow.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) {width:100%;display:flex;flex-direction:column;gap:var(--size-4-2);}.column.vertical-flow.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .tasks:where(.svelte-ncpvit) {flex-direction:row;flex-wrap:wrap;align-items:flex-start;}.column.vertical-flow.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .tasks:where(.svelte-ncpvit) .task {width:min(var(--column-width, 300px), 100%);flex-shrink:0;}.column.svelte-ncpvit .column-header.row-header:where(.svelte-ncpvit) {display:flex;align-items:center;gap:var(--size-4-2);margin-bottom:var(--size-4-2);}.column.svelte-ncpvit .column-header.row-header:where(.svelte-ncpvit) .header:where(.svelte-ncpvit) {margin-right:0;}.column.drop-active.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .tasks:where(.svelte-ncpvit) {opacity:0.4;}.column.drop-active.drop-hover.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) {border-color:var(--color-base-70);}.column.svelte-ncpvit .header:where(.svelte-ncpvit) {display:flex;align-items:flex-start;min-height:24px;flex-shrink:0;gap:var(--size-2-2);}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .column-title-group:where(.svelte-ncpvit) {min-width:0;display:flex;flex-direction:column;gap:2px;}.column.svelte-ncpvit .header:where(.svelte-ncpvit) h2:where(.svelte-ncpvit) {font-size:var(--font-ui-larger);font-weight:var(--font-bold);margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .column-match-tags:where(.svelte-ncpvit) {font-size:var(--font-ui-smaller);color:var(--text-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .task-count:where(.svelte-ncpvit) {font-size:var(--font-ui-smaller);color:var(--text-muted);white-space:nowrap;align-self:flex-start;padding-top:1px;}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .header-menu:where(.svelte-ncpvit) {margin-left:auto;flex-shrink:0;display:flex;align-items:center;gap:var(--size-2-1);}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .collapse-btn:where(.svelte-ncpvit) {background:transparent;border:none;cursor:pointer;color:var(--text-muted);padding:0;width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-s);font-size:var(--font-ui-smaller);line-height:1;flex-shrink:0;transition:color 0.15s ease, background 0.15s ease;}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .collapse-btn:where(.svelte-ncpvit):hover {color:var(--text-normal);background:var(--background-modifier-hover);}.column.svelte-ncpvit .header:where(.svelte-ncpvit) .collapse-btn:where(.svelte-ncpvit):focus-visible {outline:2px solid var(--background-modifier-border-focus);outline-offset:2px;}.column.svelte-ncpvit .mode-toggle:where(.svelte-ncpvit) {display:flex;align-items:center;background:color-mix(in srgb, var(--column-color, var(--background-modifier-border)) 20%, var(--background-secondary));border-radius:var(--radius-s);padding:2px;gap:0;}.column.svelte-ncpvit .mode-toggle:where(.svelte-ncpvit) .mode-btn:where(.svelte-ncpvit) {font-size:var(--font-ui-smaller);padding:2px 7px;border:none;background:transparent;color:var(--text-muted);border-radius:calc(var(--radius-s) - 2px);cursor:pointer;transition:background 0.15s ease, color 0.15s ease;white-space:nowrap;box-shadow:none;line-height:1.4;}.column.svelte-ncpvit .mode-toggle:where(.svelte-ncpvit) .mode-btn:where(.svelte-ncpvit):hover {background:transparent;color:var(--text-normal);box-shadow:none;}.column.svelte-ncpvit .mode-toggle:where(.svelte-ncpvit) .mode-btn.active:where(.svelte-ncpvit) {background:color-mix(in srgb, var(--column-color, var(--background-modifier-border)) 60%, var(--background-secondary));color:var(--text-normal);font-weight:var(--font-medium);}.column.svelte-ncpvit .mode-toggle:where(.svelte-ncpvit) .mode-btn:where(.svelte-ncpvit):focus-visible {outline:2px solid var(--background-modifier-border-focus);outline-offset:1px;}.column.svelte-ncpvit .selection-info:where(.svelte-ncpvit) {font-size:var(--font-ui-smaller);color:var(--text-muted);margin-top:var(--size-2-1);}.column.svelte-ncpvit .divide:where(.svelte-ncpvit) {width:calc(100% + 2 * var(--size-4-3));border-bottom:var(--border-width) solid var(--column-color, var(--background-modifier-border));margin:var(--size-4-3) calc(-1 * var(--size-4-3));}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) {min-height:50px;border:var(--border-width) dashed transparent;border-radius:var(--radius-m);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .tasks:where(.svelte-ncpvit) {display:flex;flex-direction:column;gap:var(--size-4-2);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .new-task-input:where(.svelte-ncpvit) {margin-top:var(--size-4-2);background-color:var(--background-secondary-alt);border-radius:var(--radius-m);border:var(--border-width) solid var(--background-modifier-border);padding:var(--size-4-2);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .new-task-input:where(.svelte-ncpvit) textarea:where(.svelte-ncpvit) {cursor:text;background-color:var(--color-base-25);width:100%;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-btn:where(.svelte-ncpvit) {display:flex;align-items:center;align-self:flex-start;cursor:pointer;border:0;border-radius:0;box-shadow:none;margin:0;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-btn:where(.svelte-ncpvit) span:where(.svelte-ncpvit) {height:18px;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-controls:where(.svelte-ncpvit) {display:inline-flex;align-items:center;align-self:flex-start;margin-top:var(--size-4-2);border:var(--border-width) solid var(--background-modifier-border);border-radius:var(--radius-m);overflow:hidden;background-color:var(--interactive-normal);box-shadow:var(--input-shadow);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-picker-btn {flex-shrink:0;border:0;border-left:var(--border-width) solid var(--background-modifier-border);border-radius:0;box-shadow:none;margin:0;background-color:transparent;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-btn:where(.svelte-ncpvit),\n.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-picker-btn {background-color:transparent;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-btn:where(.svelte-ncpvit):hover:not(:disabled),\n.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-picker-btn:hover:not(:disabled) {background-color:var(--interactive-hover);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-btn:where(.svelte-ncpvit):active:not(:disabled),\n.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .add-new-picker-btn:active:not(:disabled) {background-color:var(--interactive-accent-hover);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .file-indicator:where(.svelte-ncpvit) {display:flex;align-items:center;gap:var(--size-2-1);font-size:var(--font-ui-smaller);color:var(--text-muted);margin-top:var(--size-2-1);}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .file-indicator:where(.svelte-ncpvit) .file-indicator-arrow:where(.svelte-ncpvit) {flex-shrink:0;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .file-indicator:where(.svelte-ncpvit) .file-indicator-name:where(.svelte-ncpvit) {overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.column.svelte-ncpvit .tasks-wrapper:where(.svelte-ncpvit) .file-indicator:where(.svelte-ncpvit) .file-indicator-label:where(.svelte-ncpvit) {white-space:nowrap;}"
|
|
};
|
|
function Column($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Column, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css4);
|
|
const $columnTagTableStore = () => store_get(columnTagTableStore(), "$columnTagTableStore", $$stores);
|
|
const $columnColourTableStore = () => store_get(columnColourTableStore(), "$columnColourTableStore", $$stores);
|
|
const $columnMatchTagTableStore = () => store_get(columnMatchTagTableStore(), "$columnMatchTagTableStore", $$stores);
|
|
const $selectionModeStore = () => store_get(selectionModeStore, "$selectionModeStore", $$stores);
|
|
const $taskSelectionStore = () => store_get(taskSelectionStore, "$taskSelectionStore", $$stores);
|
|
const $isDraggingStore = () => store_get(isDraggingStore, "$isDraggingStore", $$stores);
|
|
const [$$stores, $$cleanup] = setup_stores();
|
|
const columnTitle = mutable_source();
|
|
const columnColor = mutable_source();
|
|
const columnMatchTags = mutable_source();
|
|
const taskCountLabel = mutable_source();
|
|
const collapseIcon = mutable_source();
|
|
const isHorizontalCollapsed = mutable_source();
|
|
const isVerticalCollapsed = mutable_source();
|
|
const displayTaskCount = mutable_source();
|
|
const showColumnMatchTags = mutable_source();
|
|
const sortedTasks = mutable_source();
|
|
const isSelectMode = mutable_source();
|
|
const columnTaskIds = mutable_source();
|
|
const selectedCount = mutable_source();
|
|
const selectedIds = mutable_source();
|
|
const draggingData = mutable_source();
|
|
const canDrop = mutable_source();
|
|
const showContextMenu = mutable_source();
|
|
let app = prop($$props, "app", 12);
|
|
let column = prop($$props, "column", 12);
|
|
let hideOnEmpty = prop($$props, "hideOnEmpty", 12, false);
|
|
let tasks = prop($$props, "tasks", 12);
|
|
let taskActions = prop($$props, "taskActions", 12);
|
|
let columnTagTableStore = prop($$props, "columnTagTableStore", 12);
|
|
let columnColourTableStore = prop($$props, "columnColourTableStore", 12);
|
|
let columnMatchTagTableStore = prop($$props, "columnMatchTagTableStore", 12);
|
|
let showFilepath = prop($$props, "showFilepath", 12);
|
|
let consolidateTags = prop($$props, "consolidateTags", 12);
|
|
let isVerticalFlow = prop($$props, "isVerticalFlow", 12, false);
|
|
let targetTaskFile = prop($$props, "targetTaskFile", 12, null);
|
|
let targetFileIsDefault = prop($$props, "targetFileIsDefault", 12, false);
|
|
let isCollapsed = prop($$props, "isCollapsed", 12, false);
|
|
let onToggleCollapse = prop($$props, "onToggleCollapse", 12);
|
|
let uncategorizedColumnName = prop($$props, "uncategorizedColumnName", 12, void 0);
|
|
let doneColumnName = prop($$props, "doneColumnName", 12, void 0);
|
|
function getColumnTitle(column2, columnTagTable) {
|
|
switch (column2) {
|
|
case "done":
|
|
case "uncategorised":
|
|
return resolveDefaultColumnName(column2, uncategorizedColumnName(), doneColumnName());
|
|
default:
|
|
return columnTagTable[column2];
|
|
}
|
|
}
|
|
function showMenu(e) {
|
|
const menu = new import_obsidian5.Menu();
|
|
if (get(isSelectMode) && get(selectedCount) > 0) {
|
|
if (column() !== "done") {
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Move ${get(selectedCount)} selected to ${resolveDefaultColumnName("done", uncategorizedColumnName(), doneColumnName())}`).onClick(async () => {
|
|
for (const id of get(selectedIds)) {
|
|
await taskActions().markDone(id);
|
|
}
|
|
clearColumnSelections(get(columnTaskIds));
|
|
});
|
|
});
|
|
}
|
|
for (const [tag2, label] of Object.entries($columnTagTableStore())) {
|
|
const tagAsColumn = tag2;
|
|
if (tagAsColumn === column()) continue;
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Move ${get(selectedCount)} selected to ${label}`).onClick(async () => {
|
|
for (const id of get(selectedIds)) {
|
|
await taskActions().changeColumn(id, tagAsColumn);
|
|
}
|
|
clearColumnSelections(get(columnTaskIds));
|
|
});
|
|
});
|
|
}
|
|
menu.addSeparator();
|
|
const selectedTasks = get(selectedIds).map((id) => get(sortedTasks).find((t) => t.id === id)).filter(Boolean);
|
|
const allCancelled = selectedTasks.length > 0 && selectedTasks.every((t) => t.isCancelled);
|
|
if (allCancelled) {
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Restore ${get(selectedCount)} selected`).onClick(async () => {
|
|
await taskActions().restoreTasks(get(selectedIds));
|
|
clearColumnSelections(get(columnTaskIds));
|
|
});
|
|
});
|
|
} else {
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Cancel ${get(selectedCount)} selected`).onClick(async () => {
|
|
await taskActions().cancelTasks(get(selectedIds));
|
|
clearColumnSelections(get(columnTaskIds));
|
|
});
|
|
});
|
|
}
|
|
menu.addSeparator();
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Archive ${get(selectedCount)} selected`).onClick(async () => {
|
|
await taskActions().archiveTasks(get(selectedIds));
|
|
clearColumnSelections(get(columnTaskIds));
|
|
});
|
|
});
|
|
}
|
|
if (column() === "done") {
|
|
menu.addItem((i) => {
|
|
i.setTitle(`Archive all`).onClick(() => taskActions().archiveTasks(tasks().map(({ id }) => id)));
|
|
});
|
|
}
|
|
menu.showAtMouseEvent(e);
|
|
}
|
|
let isDraggedOver = mutable_source(false);
|
|
function handleDragOver(e) {
|
|
e.preventDefault();
|
|
if (!get(canDrop)) {
|
|
if (e.dataTransfer) {
|
|
e.dataTransfer.dropEffect = "none";
|
|
}
|
|
return;
|
|
}
|
|
set(isDraggedOver, true);
|
|
if (e.dataTransfer) {
|
|
e.dataTransfer.dropEffect = "move";
|
|
}
|
|
}
|
|
function handleDragLeave(e) {
|
|
set(isDraggedOver, false);
|
|
}
|
|
async function handleDrop(e) {
|
|
e.preventDefault();
|
|
set(isDraggedOver, false);
|
|
if (!get(canDrop) || !get(draggingData)) {
|
|
return;
|
|
}
|
|
const droppedIds = get(draggingData).draggedTaskIds.length > 0 ? get(draggingData).draggedTaskIds : (() => {
|
|
var _a5;
|
|
const id = (_a5 = e.dataTransfer) == null ? void 0 : _a5.getData("text/plain");
|
|
return id ? [id] : [];
|
|
})();
|
|
if (droppedIds.length === 0) return;
|
|
for (const id of droppedIds) {
|
|
switch (column()) {
|
|
case "uncategorised":
|
|
break;
|
|
case "done":
|
|
await taskActions().markDone(id);
|
|
break;
|
|
default:
|
|
await taskActions().changeColumn(id, column());
|
|
break;
|
|
}
|
|
}
|
|
clearColumnSelections(droppedIds);
|
|
}
|
|
let buttonEl = mutable_source();
|
|
let pendingNewTask = mutable_source(null);
|
|
let pendingCancelled = false;
|
|
let newTaskTextAreaEl = mutable_source();
|
|
async function handleNewTaskSave() {
|
|
var _a5, _b3;
|
|
if (pendingCancelled) {
|
|
pendingCancelled = false;
|
|
set(pendingNewTask, null);
|
|
return;
|
|
}
|
|
const content = (_b3 = (_a5 = get(newTaskTextAreaEl)) == null ? void 0 : _a5.value) == null ? void 0 : _b3.trim();
|
|
const file = get(pendingNewTask);
|
|
set(pendingNewTask, null);
|
|
if (!content || !file || !isColumnTag(column(), columnTagTableStore())) {
|
|
return;
|
|
}
|
|
await taskActions().createTask(file, content, column());
|
|
}
|
|
function handleNewTaskKeydown(e) {
|
|
var _a5, _b3;
|
|
if (e.key === "Escape") {
|
|
e.preventDefault();
|
|
pendingCancelled = true;
|
|
(_a5 = get(newTaskTextAreaEl)) == null ? void 0 : _a5.blur();
|
|
} else if (e.key === "Enter" && !e.shiftKey) {
|
|
e.preventDefault();
|
|
(_b3 = get(newTaskTextAreaEl)) == null ? void 0 : _b3.blur();
|
|
}
|
|
}
|
|
function handleAddNewClick(e) {
|
|
if (!isColumnTag(column(), columnTagTableStore())) {
|
|
return;
|
|
}
|
|
taskActions().pickFileForNewTask(column(), e, (file) => {
|
|
set(pendingNewTask, file);
|
|
});
|
|
}
|
|
function handleChooseTaskFileClick(e) {
|
|
if (!isColumnTag(column(), columnTagTableStore())) {
|
|
return;
|
|
}
|
|
taskActions().pickFileForNewTask(
|
|
column(),
|
|
e,
|
|
(file) => {
|
|
set(pendingNewTask, file);
|
|
},
|
|
true
|
|
);
|
|
}
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(uncategorizedColumnName()), deep_read_state(doneColumnName()), deep_read_state(column()), $columnTagTableStore()),
|
|
() => {
|
|
set(columnTitle, (() => {
|
|
void uncategorizedColumnName();
|
|
void doneColumnName();
|
|
return getColumnTitle(column(), $columnTagTableStore());
|
|
})());
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (isColumnTag, deep_read_state(column()), deep_read_state(columnTagTableStore()), $columnColourTableStore()),
|
|
() => {
|
|
set(columnColor, isColumnTag(column(), columnTagTableStore()) ? $columnColourTableStore()[column()] : void 0);
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (isColumnTag, deep_read_state(column()), deep_read_state(columnTagTableStore()), $columnMatchTagTableStore()),
|
|
() => {
|
|
var _a5;
|
|
set(columnMatchTags, isColumnTag(column(), columnTagTableStore()) ? (_a5 = $columnMatchTagTableStore()[column()]) != null ? _a5 : [] : []);
|
|
}
|
|
);
|
|
legacy_pre_effect(() => deep_read_state(tasks()), () => {
|
|
set(taskCountLabel, tasks().length === 1 ? "1 task" : `${tasks().length} tasks`);
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(isCollapsed()), () => {
|
|
set(collapseIcon, isCollapsed() ? "\u25B6" : "\u25BC");
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(isCollapsed()), deep_read_state(isVerticalFlow())),
|
|
() => {
|
|
set(isHorizontalCollapsed, isCollapsed() && !isVerticalFlow());
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(isCollapsed()), deep_read_state(isVerticalFlow())),
|
|
() => {
|
|
set(isVerticalCollapsed, isCollapsed() && isVerticalFlow());
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(isCollapsed()), deep_read_state(tasks()), get(taskCountLabel)),
|
|
() => {
|
|
set(displayTaskCount, isCollapsed() ? `${tasks().length}` : get(taskCountLabel));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (get(columnMatchTags), deep_read_state(isCollapsed())), () => {
|
|
set(showColumnMatchTags, get(columnMatchTags).length > 0 && !isCollapsed());
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(tasks()), () => {
|
|
set(sortedTasks, [...tasks()].sort((a, b) => {
|
|
if (a.path === b.path) {
|
|
return a.rowIndex - b.rowIndex;
|
|
} else {
|
|
return a.path.localeCompare(b.path);
|
|
}
|
|
}));
|
|
});
|
|
legacy_pre_effect(
|
|
() => (isInSelectionMode, deep_read_state(column()), $selectionModeStore()),
|
|
() => {
|
|
set(isSelectMode, isInSelectionMode(column(), $selectionModeStore()));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => get(sortedTasks), () => {
|
|
set(columnTaskIds, get(sortedTasks).map((t) => t.id));
|
|
});
|
|
legacy_pre_effect(
|
|
() => (getSelectedTaskCount, get(columnTaskIds), $taskSelectionStore()),
|
|
() => {
|
|
set(selectedCount, getSelectedTaskCount(get(columnTaskIds), $taskSelectionStore()));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (get(columnTaskIds), isTaskSelected, $taskSelectionStore()), () => {
|
|
set(selectedIds, get(columnTaskIds).filter((id) => isTaskSelected(id, $taskSelectionStore())));
|
|
});
|
|
legacy_pre_effect(() => $isDraggingStore(), () => {
|
|
set(draggingData, $isDraggingStore());
|
|
});
|
|
legacy_pre_effect(() => (get(draggingData), deep_read_state(column())), () => {
|
|
set(canDrop, !!get(draggingData) && get(draggingData).fromColumn !== column());
|
|
});
|
|
legacy_pre_effect(() => (get(buttonEl), import_obsidian5.setIcon), () => {
|
|
if (get(buttonEl)) {
|
|
(0, import_obsidian5.setIcon)(get(buttonEl), "lucide-plus");
|
|
}
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(column()), get(isSelectMode), get(selectedCount)),
|
|
() => {
|
|
set(showContextMenu, column() === "done" || get(isSelectMode) && get(selectedCount) > 0);
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (get(pendingNewTask), get(newTaskTextAreaEl)), () => {
|
|
if (get(pendingNewTask) && get(newTaskTextAreaEl)) {
|
|
get(newTaskTextAreaEl).focus();
|
|
}
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get app() {
|
|
return app();
|
|
},
|
|
set app($$value) {
|
|
app($$value);
|
|
flushSync();
|
|
},
|
|
get column() {
|
|
return column();
|
|
},
|
|
set column($$value) {
|
|
column($$value);
|
|
flushSync();
|
|
},
|
|
get hideOnEmpty() {
|
|
return hideOnEmpty();
|
|
},
|
|
set hideOnEmpty($$value) {
|
|
hideOnEmpty($$value);
|
|
flushSync();
|
|
},
|
|
get tasks() {
|
|
return tasks();
|
|
},
|
|
set tasks($$value) {
|
|
tasks($$value);
|
|
flushSync();
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
set taskActions($$value) {
|
|
taskActions($$value);
|
|
flushSync();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
set columnTagTableStore($$value) {
|
|
columnTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get columnColourTableStore() {
|
|
return columnColourTableStore();
|
|
},
|
|
set columnColourTableStore($$value) {
|
|
columnColourTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get columnMatchTagTableStore() {
|
|
return columnMatchTagTableStore();
|
|
},
|
|
set columnMatchTagTableStore($$value) {
|
|
columnMatchTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get showFilepath() {
|
|
return showFilepath();
|
|
},
|
|
set showFilepath($$value) {
|
|
showFilepath($$value);
|
|
flushSync();
|
|
},
|
|
get consolidateTags() {
|
|
return consolidateTags();
|
|
},
|
|
set consolidateTags($$value) {
|
|
consolidateTags($$value);
|
|
flushSync();
|
|
},
|
|
get isVerticalFlow() {
|
|
return isVerticalFlow();
|
|
},
|
|
set isVerticalFlow($$value) {
|
|
isVerticalFlow($$value);
|
|
flushSync();
|
|
},
|
|
get targetTaskFile() {
|
|
return targetTaskFile();
|
|
},
|
|
set targetTaskFile($$value) {
|
|
targetTaskFile($$value);
|
|
flushSync();
|
|
},
|
|
get targetFileIsDefault() {
|
|
return targetFileIsDefault();
|
|
},
|
|
set targetFileIsDefault($$value) {
|
|
targetFileIsDefault($$value);
|
|
flushSync();
|
|
},
|
|
get isCollapsed() {
|
|
return isCollapsed();
|
|
},
|
|
set isCollapsed($$value) {
|
|
isCollapsed($$value);
|
|
flushSync();
|
|
},
|
|
get onToggleCollapse() {
|
|
return onToggleCollapse();
|
|
},
|
|
set onToggleCollapse($$value) {
|
|
onToggleCollapse($$value);
|
|
flushSync();
|
|
},
|
|
get uncategorizedColumnName() {
|
|
return uncategorizedColumnName();
|
|
},
|
|
set uncategorizedColumnName($$value) {
|
|
uncategorizedColumnName($$value);
|
|
flushSync();
|
|
},
|
|
get doneColumnName() {
|
|
return doneColumnName();
|
|
},
|
|
set doneColumnName($$value) {
|
|
doneColumnName($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var fragment = comment();
|
|
var node = first_child(fragment);
|
|
{
|
|
var consequent_9 = ($$anchor2) => {
|
|
var div = root_12();
|
|
let classes;
|
|
let styles;
|
|
var div_1 = child(div);
|
|
let classes_1;
|
|
var div_2 = child(div_1);
|
|
var button = child(div_2);
|
|
var text2 = child(button, true);
|
|
reset(button);
|
|
var div_3 = sibling(button, 2);
|
|
var h2 = child(div_3);
|
|
var text_1 = child(h2, true);
|
|
reset(h2);
|
|
var node_1 = sibling(h2, 2);
|
|
{
|
|
var consequent = ($$anchor3) => {
|
|
var div_4 = root_22();
|
|
var text_2 = child(div_4, true);
|
|
reset(div_4);
|
|
template_effect(($0) => set_text(text_2, $0), [
|
|
() => (get(columnMatchTags), untrack(() => get(columnMatchTags).map((tag2) => `#${tag2}`).join(" ")))
|
|
]);
|
|
append($$anchor3, div_4);
|
|
};
|
|
if_block(node_1, ($$render) => {
|
|
if (get(showColumnMatchTags)) $$render(consequent);
|
|
});
|
|
}
|
|
reset(div_3);
|
|
var span = sibling(div_3, 2);
|
|
var text_3 = child(span, true);
|
|
reset(span);
|
|
var div_5 = sibling(span, 2);
|
|
var node_2 = child(div_5);
|
|
{
|
|
var consequent_1 = ($$anchor3) => {
|
|
var div_6 = root_32();
|
|
var button_1 = child(div_6);
|
|
let classes_2;
|
|
var button_2 = sibling(button_1, 2);
|
|
let classes_3;
|
|
reset(div_6);
|
|
template_effect(() => {
|
|
classes_2 = set_class(button_1, 1, "mode-btn svelte-ncpvit", null, classes_2, { active: !get(isSelectMode) });
|
|
set_attribute2(button_1, "aria-pressed", !get(isSelectMode));
|
|
classes_3 = set_class(button_2, 1, "mode-btn svelte-ncpvit", null, classes_3, { active: get(isSelectMode) });
|
|
set_attribute2(button_2, "aria-pressed", get(isSelectMode));
|
|
});
|
|
event("click", button_1, () => {
|
|
if (get(isSelectMode)) toggleSelectionMode(column());
|
|
});
|
|
event("click", button_2, () => {
|
|
if (!get(isSelectMode)) toggleSelectionMode(column());
|
|
});
|
|
append($$anchor3, div_6);
|
|
};
|
|
if_block(node_2, ($$render) => {
|
|
if (!isCollapsed()) $$render(consequent_1);
|
|
});
|
|
}
|
|
var node_3 = sibling(node_2, 2);
|
|
{
|
|
var consequent_2 = ($$anchor3) => {
|
|
Icon_button($$anchor3, {
|
|
icon: "lucide-more-vertical",
|
|
get "aria-label"() {
|
|
var _a5;
|
|
return `Column options for ${(_a5 = get(columnTitle)) != null ? _a5 : ""}`;
|
|
},
|
|
$$events: { click: showMenu }
|
|
});
|
|
};
|
|
if_block(node_3, ($$render) => {
|
|
if (get(showContextMenu)) $$render(consequent_2);
|
|
});
|
|
}
|
|
reset(div_5);
|
|
reset(div_2);
|
|
var node_4 = sibling(div_2, 2);
|
|
{
|
|
var consequent_3 = ($$anchor3) => {
|
|
var div_7 = root_52();
|
|
var text_4 = child(div_7);
|
|
reset(div_7);
|
|
template_effect(() => {
|
|
var _a5;
|
|
return set_text(text_4, `${(_a5 = get(selectedCount)) != null ? _a5 : ""} selected`);
|
|
});
|
|
append($$anchor3, div_7);
|
|
};
|
|
if_block(node_4, ($$render) => {
|
|
if (get(isSelectMode) && get(selectedCount) > 0) $$render(consequent_3);
|
|
});
|
|
}
|
|
reset(div_1);
|
|
var node_5 = sibling(div_1, 2);
|
|
{
|
|
var consequent_4 = ($$anchor3) => {
|
|
var div_8 = root_62();
|
|
append($$anchor3, div_8);
|
|
};
|
|
if_block(node_5, ($$render) => {
|
|
if (!isVerticalFlow()) $$render(consequent_4);
|
|
});
|
|
}
|
|
var div_9 = sibling(node_5, 2);
|
|
var div_10 = child(div_9);
|
|
each(div_10, 5, () => get(sortedTasks), index, ($$anchor3, task) => {
|
|
{
|
|
let $0 = derived_safe_equal(() => (deep_read_state(isTaskSelected), get(task), $taskSelectionStore(), untrack(() => isTaskSelected(get(task).id, $taskSelectionStore()))));
|
|
Task($$anchor3, {
|
|
get app() {
|
|
return app();
|
|
},
|
|
get task() {
|
|
return get(task);
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
get showFilepath() {
|
|
return showFilepath();
|
|
},
|
|
get consolidateTags() {
|
|
return consolidateTags();
|
|
},
|
|
get displayColumn() {
|
|
return column();
|
|
},
|
|
get isSelectionMode() {
|
|
return get(isSelectMode);
|
|
},
|
|
get isSelected() {
|
|
return get($0);
|
|
},
|
|
onToggleSelection: () => toggleTaskSelection(get(task).id),
|
|
get selectedTaskIds() {
|
|
return get(selectedIds);
|
|
},
|
|
get doneColumnName() {
|
|
return doneColumnName();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
reset(div_10);
|
|
var node_6 = sibling(div_10, 2);
|
|
{
|
|
var consequent_5 = ($$anchor3) => {
|
|
var div_11 = root_8();
|
|
var textarea = child(div_11);
|
|
bind_this(textarea, ($$value) => set(newTaskTextAreaEl, $$value), () => get(newTaskTextAreaEl));
|
|
reset(div_11);
|
|
event("blur", textarea, handleNewTaskSave);
|
|
event("keydown", textarea, handleNewTaskKeydown);
|
|
append($$anchor3, div_11);
|
|
};
|
|
if_block(node_6, ($$render) => {
|
|
if (get(pendingNewTask)) $$render(consequent_5);
|
|
});
|
|
}
|
|
var node_7 = sibling(node_6, 2);
|
|
{
|
|
var consequent_8 = ($$anchor3) => {
|
|
var fragment_3 = root_9();
|
|
var div_12 = first_child(fragment_3);
|
|
var button_3 = child(div_12);
|
|
var span_1 = child(button_3);
|
|
bind_this(span_1, ($$value) => set(buttonEl, $$value), () => get(buttonEl));
|
|
next();
|
|
reset(button_3);
|
|
var node_8 = sibling(button_3, 2);
|
|
{
|
|
let $0 = derived_safe_equal(() => !!get(pendingNewTask));
|
|
Icon_button(node_8, {
|
|
class: "add-new-picker-btn",
|
|
icon: "lucide-chevron-down",
|
|
get "aria-label"() {
|
|
var _a5;
|
|
return `Choose file for new task in ${(_a5 = get(columnTitle)) != null ? _a5 : ""}`;
|
|
},
|
|
get disabled() {
|
|
return get($0);
|
|
},
|
|
$$events: { click: handleChooseTaskFileClick }
|
|
});
|
|
}
|
|
reset(div_12);
|
|
var node_9 = sibling(div_12, 2);
|
|
{
|
|
var consequent_7 = ($$anchor4) => {
|
|
var div_13 = root_10();
|
|
var span_2 = sibling(child(div_13), 2);
|
|
var text_5 = child(span_2, true);
|
|
reset(span_2);
|
|
var node_10 = sibling(span_2, 2);
|
|
{
|
|
var consequent_6 = ($$anchor5) => {
|
|
var span_3 = root_11();
|
|
append($$anchor5, span_3);
|
|
};
|
|
if_block(node_10, ($$render) => {
|
|
if (targetFileIsDefault()) $$render(consequent_6);
|
|
});
|
|
}
|
|
reset(div_13);
|
|
template_effect(() => {
|
|
set_attribute2(span_2, "title", (deep_read_state(targetTaskFile()), untrack(() => targetTaskFile().path)));
|
|
set_text(text_5, (deep_read_state(targetTaskFile()), untrack(() => targetTaskFile().name)));
|
|
});
|
|
append($$anchor4, div_13);
|
|
};
|
|
if_block(node_9, ($$render) => {
|
|
if (targetTaskFile()) $$render(consequent_7);
|
|
});
|
|
}
|
|
template_effect(() => {
|
|
var _a5;
|
|
set_attribute2(button_3, "aria-label", `Add new task to ${(_a5 = get(columnTitle)) != null ? _a5 : ""}`);
|
|
button_3.disabled = !!get(pendingNewTask);
|
|
});
|
|
event("click", button_3, handleAddNewClick);
|
|
append($$anchor3, fragment_3);
|
|
};
|
|
var d = user_derived(() => (deep_read_state(isColumnTag), deep_read_state(column()), deep_read_state(columnTagTableStore()), untrack(() => isColumnTag(column(), columnTagTableStore()))));
|
|
if_block(node_7, ($$render) => {
|
|
if (get(d)) $$render(consequent_8);
|
|
});
|
|
}
|
|
reset(div_9);
|
|
reset(div);
|
|
template_effect(() => {
|
|
var _a5, _b3, _c2;
|
|
set_attribute2(div, "aria-labelledby", `column-title-${(_a5 = column()) != null ? _a5 : ""}`);
|
|
set_attribute2(div, "aria-label", (deep_read_state(isCollapsed()), get(columnTitle), deep_read_state(tasks()), untrack(() => isCollapsed() ? `${get(columnTitle)} column, collapsed, ${tasks().length} ${tasks().length === 1 ? "task" : "tasks"}` : void 0)));
|
|
classes = set_class(div, 1, "column svelte-ncpvit", null, classes, {
|
|
"drop-active": !!get(draggingData),
|
|
"drop-hover": get(isDraggedOver),
|
|
"vertical-flow": isVerticalFlow(),
|
|
collapsed: get(isHorizontalCollapsed),
|
|
"vertical-collapsed": get(isVerticalCollapsed)
|
|
});
|
|
styles = set_style(div, get(columnColor) ? `background-color: ${get(columnColor)};` : "", styles, { "--column-color": get(columnColor) });
|
|
classes_1 = set_class(div_1, 1, "column-header svelte-ncpvit", null, classes_1, { "row-header": isVerticalFlow() });
|
|
set_attribute2(button, "aria-expanded", !isCollapsed());
|
|
set_attribute2(button, "aria-label", `${isCollapsed() ? "Expand" : "Collapse"} ${(_b3 = get(columnTitle)) != null ? _b3 : ""} column`);
|
|
set_text(text2, get(collapseIcon));
|
|
set_attribute2(h2, "id", `column-title-${(_c2 = column()) != null ? _c2 : ""}`);
|
|
set_text(text_1, get(columnTitle));
|
|
set_attribute2(span, "aria-label", get(taskCountLabel));
|
|
set_text(text_3, get(displayTaskCount));
|
|
});
|
|
event("click", button, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onToggleCollapse()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
event("dragover", div, handleDragOver);
|
|
event("dragleave", div, handleDragLeave);
|
|
event("drop", div, handleDrop);
|
|
append($$anchor2, div);
|
|
};
|
|
if_block(node, ($$render) => {
|
|
if (deep_read_state(hideOnEmpty()), deep_read_state(tasks()), untrack(() => !hideOnEmpty() || tasks().length)) $$render(consequent_9);
|
|
});
|
|
}
|
|
append($$anchor, fragment);
|
|
var $$pop = pop($$exports);
|
|
$$cleanup();
|
|
return $$pop;
|
|
}
|
|
|
|
// node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
|
|
var min = Math.min;
|
|
var max = Math.max;
|
|
var round = Math.round;
|
|
var floor = Math.floor;
|
|
var createCoords = (v) => ({
|
|
x: v,
|
|
y: v
|
|
});
|
|
var oppositeSideMap = {
|
|
left: "right",
|
|
right: "left",
|
|
bottom: "top",
|
|
top: "bottom"
|
|
};
|
|
var oppositeAlignmentMap = {
|
|
start: "end",
|
|
end: "start"
|
|
};
|
|
function clamp(start, value, end) {
|
|
return max(start, min(value, end));
|
|
}
|
|
function evaluate(value, param) {
|
|
return typeof value === "function" ? value(param) : value;
|
|
}
|
|
function getSide(placement) {
|
|
return placement.split("-")[0];
|
|
}
|
|
function getAlignment(placement) {
|
|
return placement.split("-")[1];
|
|
}
|
|
function getOppositeAxis(axis) {
|
|
return axis === "x" ? "y" : "x";
|
|
}
|
|
function getAxisLength(axis) {
|
|
return axis === "y" ? "height" : "width";
|
|
}
|
|
function getSideAxis(placement) {
|
|
return ["top", "bottom"].includes(getSide(placement)) ? "y" : "x";
|
|
}
|
|
function getAlignmentAxis(placement) {
|
|
return getOppositeAxis(getSideAxis(placement));
|
|
}
|
|
function getAlignmentSides(placement, rects, rtl) {
|
|
if (rtl === void 0) {
|
|
rtl = false;
|
|
}
|
|
const alignment = getAlignment(placement);
|
|
const alignmentAxis = getAlignmentAxis(placement);
|
|
const length = getAxisLength(alignmentAxis);
|
|
let mainAlignmentSide = alignmentAxis === "x" ? alignment === (rtl ? "end" : "start") ? "right" : "left" : alignment === "start" ? "bottom" : "top";
|
|
if (rects.reference[length] > rects.floating[length]) {
|
|
mainAlignmentSide = getOppositePlacement(mainAlignmentSide);
|
|
}
|
|
return [mainAlignmentSide, getOppositePlacement(mainAlignmentSide)];
|
|
}
|
|
function getExpandedPlacements(placement) {
|
|
const oppositePlacement = getOppositePlacement(placement);
|
|
return [getOppositeAlignmentPlacement(placement), oppositePlacement, getOppositeAlignmentPlacement(oppositePlacement)];
|
|
}
|
|
function getOppositeAlignmentPlacement(placement) {
|
|
return placement.replace(/start|end/g, (alignment) => oppositeAlignmentMap[alignment]);
|
|
}
|
|
function getSideList(side, isStart, rtl) {
|
|
const lr = ["left", "right"];
|
|
const rl = ["right", "left"];
|
|
const tb = ["top", "bottom"];
|
|
const bt = ["bottom", "top"];
|
|
switch (side) {
|
|
case "top":
|
|
case "bottom":
|
|
if (rtl) return isStart ? rl : lr;
|
|
return isStart ? lr : rl;
|
|
case "left":
|
|
case "right":
|
|
return isStart ? tb : bt;
|
|
default:
|
|
return [];
|
|
}
|
|
}
|
|
function getOppositeAxisPlacements(placement, flipAlignment, direction, rtl) {
|
|
const alignment = getAlignment(placement);
|
|
let list = getSideList(getSide(placement), direction === "start", rtl);
|
|
if (alignment) {
|
|
list = list.map((side) => side + "-" + alignment);
|
|
if (flipAlignment) {
|
|
list = list.concat(list.map(getOppositeAlignmentPlacement));
|
|
}
|
|
}
|
|
return list;
|
|
}
|
|
function getOppositePlacement(placement) {
|
|
return placement.replace(/left|right|bottom|top/g, (side) => oppositeSideMap[side]);
|
|
}
|
|
function expandPaddingObject(padding) {
|
|
return {
|
|
top: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
left: 0,
|
|
...padding
|
|
};
|
|
}
|
|
function getPaddingObject(padding) {
|
|
return typeof padding !== "number" ? expandPaddingObject(padding) : {
|
|
top: padding,
|
|
right: padding,
|
|
bottom: padding,
|
|
left: padding
|
|
};
|
|
}
|
|
function rectToClientRect(rect) {
|
|
return {
|
|
...rect,
|
|
top: rect.y,
|
|
left: rect.x,
|
|
right: rect.x + rect.width,
|
|
bottom: rect.y + rect.height
|
|
};
|
|
}
|
|
|
|
// node_modules/@floating-ui/core/dist/floating-ui.core.mjs
|
|
function computeCoordsFromPlacement(_ref, placement, rtl) {
|
|
let {
|
|
reference,
|
|
floating
|
|
} = _ref;
|
|
const sideAxis = getSideAxis(placement);
|
|
const alignmentAxis = getAlignmentAxis(placement);
|
|
const alignLength = getAxisLength(alignmentAxis);
|
|
const side = getSide(placement);
|
|
const isVertical = sideAxis === "y";
|
|
const commonX = reference.x + reference.width / 2 - floating.width / 2;
|
|
const commonY = reference.y + reference.height / 2 - floating.height / 2;
|
|
const commonAlign = reference[alignLength] / 2 - floating[alignLength] / 2;
|
|
let coords;
|
|
switch (side) {
|
|
case "top":
|
|
coords = {
|
|
x: commonX,
|
|
y: reference.y - floating.height
|
|
};
|
|
break;
|
|
case "bottom":
|
|
coords = {
|
|
x: commonX,
|
|
y: reference.y + reference.height
|
|
};
|
|
break;
|
|
case "right":
|
|
coords = {
|
|
x: reference.x + reference.width,
|
|
y: commonY
|
|
};
|
|
break;
|
|
case "left":
|
|
coords = {
|
|
x: reference.x - floating.width,
|
|
y: commonY
|
|
};
|
|
break;
|
|
default:
|
|
coords = {
|
|
x: reference.x,
|
|
y: reference.y
|
|
};
|
|
}
|
|
switch (getAlignment(placement)) {
|
|
case "start":
|
|
coords[alignmentAxis] -= commonAlign * (rtl && isVertical ? -1 : 1);
|
|
break;
|
|
case "end":
|
|
coords[alignmentAxis] += commonAlign * (rtl && isVertical ? -1 : 1);
|
|
break;
|
|
}
|
|
return coords;
|
|
}
|
|
var computePosition = async (reference, floating, config) => {
|
|
const {
|
|
placement = "bottom",
|
|
strategy = "absolute",
|
|
middleware = [],
|
|
platform: platform2
|
|
} = config;
|
|
const validMiddleware = middleware.filter(Boolean);
|
|
const rtl = await (platform2.isRTL == null ? void 0 : platform2.isRTL(floating));
|
|
let rects = await platform2.getElementRects({
|
|
reference,
|
|
floating,
|
|
strategy
|
|
});
|
|
let {
|
|
x,
|
|
y
|
|
} = computeCoordsFromPlacement(rects, placement, rtl);
|
|
let statefulPlacement = placement;
|
|
let middlewareData = {};
|
|
let resetCount = 0;
|
|
for (let i = 0; i < validMiddleware.length; i++) {
|
|
const {
|
|
name,
|
|
fn
|
|
} = validMiddleware[i];
|
|
const {
|
|
x: nextX,
|
|
y: nextY,
|
|
data,
|
|
reset: reset2
|
|
} = await fn({
|
|
x,
|
|
y,
|
|
initialPlacement: placement,
|
|
placement: statefulPlacement,
|
|
strategy,
|
|
middlewareData,
|
|
rects,
|
|
platform: platform2,
|
|
elements: {
|
|
reference,
|
|
floating
|
|
}
|
|
});
|
|
x = nextX != null ? nextX : x;
|
|
y = nextY != null ? nextY : y;
|
|
middlewareData = {
|
|
...middlewareData,
|
|
[name]: {
|
|
...middlewareData[name],
|
|
...data
|
|
}
|
|
};
|
|
if (reset2 && resetCount <= 50) {
|
|
resetCount++;
|
|
if (typeof reset2 === "object") {
|
|
if (reset2.placement) {
|
|
statefulPlacement = reset2.placement;
|
|
}
|
|
if (reset2.rects) {
|
|
rects = reset2.rects === true ? await platform2.getElementRects({
|
|
reference,
|
|
floating,
|
|
strategy
|
|
}) : reset2.rects;
|
|
}
|
|
({
|
|
x,
|
|
y
|
|
} = computeCoordsFromPlacement(rects, statefulPlacement, rtl));
|
|
}
|
|
i = -1;
|
|
}
|
|
}
|
|
return {
|
|
x,
|
|
y,
|
|
placement: statefulPlacement,
|
|
strategy,
|
|
middlewareData
|
|
};
|
|
};
|
|
async function detectOverflow(state2, options) {
|
|
var _await$platform$isEle;
|
|
if (options === void 0) {
|
|
options = {};
|
|
}
|
|
const {
|
|
x,
|
|
y,
|
|
platform: platform2,
|
|
rects,
|
|
elements,
|
|
strategy
|
|
} = state2;
|
|
const {
|
|
boundary: boundary2 = "clippingAncestors",
|
|
rootBoundary = "viewport",
|
|
elementContext = "floating",
|
|
altBoundary = false,
|
|
padding = 0
|
|
} = evaluate(options, state2);
|
|
const paddingObject = getPaddingObject(padding);
|
|
const altContext = elementContext === "floating" ? "reference" : "floating";
|
|
const element2 = elements[altBoundary ? altContext : elementContext];
|
|
const clippingClientRect = rectToClientRect(await platform2.getClippingRect({
|
|
element: ((_await$platform$isEle = await (platform2.isElement == null ? void 0 : platform2.isElement(element2))) != null ? _await$platform$isEle : true) ? element2 : element2.contextElement || await (platform2.getDocumentElement == null ? void 0 : platform2.getDocumentElement(elements.floating)),
|
|
boundary: boundary2,
|
|
rootBoundary,
|
|
strategy
|
|
}));
|
|
const rect = elementContext === "floating" ? {
|
|
...rects.floating,
|
|
x,
|
|
y
|
|
} : rects.reference;
|
|
const offsetParent = await (platform2.getOffsetParent == null ? void 0 : platform2.getOffsetParent(elements.floating));
|
|
const offsetScale = await (platform2.isElement == null ? void 0 : platform2.isElement(offsetParent)) ? await (platform2.getScale == null ? void 0 : platform2.getScale(offsetParent)) || {
|
|
x: 1,
|
|
y: 1
|
|
} : {
|
|
x: 1,
|
|
y: 1
|
|
};
|
|
const elementClientRect = rectToClientRect(platform2.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform2.convertOffsetParentRelativeRectToViewportRelativeRect({
|
|
elements,
|
|
rect,
|
|
offsetParent,
|
|
strategy
|
|
}) : rect);
|
|
return {
|
|
top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,
|
|
bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,
|
|
left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,
|
|
right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x
|
|
};
|
|
}
|
|
var flip = function(options) {
|
|
if (options === void 0) {
|
|
options = {};
|
|
}
|
|
return {
|
|
name: "flip",
|
|
options,
|
|
async fn(state2) {
|
|
var _middlewareData$arrow, _middlewareData$flip;
|
|
const {
|
|
placement,
|
|
middlewareData,
|
|
rects,
|
|
initialPlacement,
|
|
platform: platform2,
|
|
elements
|
|
} = state2;
|
|
const {
|
|
mainAxis: checkMainAxis = true,
|
|
crossAxis: checkCrossAxis = true,
|
|
fallbackPlacements: specifiedFallbackPlacements,
|
|
fallbackStrategy = "bestFit",
|
|
fallbackAxisSideDirection = "none",
|
|
flipAlignment = true,
|
|
...detectOverflowOptions
|
|
} = evaluate(options, state2);
|
|
if ((_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {
|
|
return {};
|
|
}
|
|
const side = getSide(placement);
|
|
const isBasePlacement = getSide(initialPlacement) === initialPlacement;
|
|
const rtl = await (platform2.isRTL == null ? void 0 : platform2.isRTL(elements.floating));
|
|
const fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipAlignment ? [getOppositePlacement(initialPlacement)] : getExpandedPlacements(initialPlacement));
|
|
if (!specifiedFallbackPlacements && fallbackAxisSideDirection !== "none") {
|
|
fallbackPlacements.push(...getOppositeAxisPlacements(initialPlacement, flipAlignment, fallbackAxisSideDirection, rtl));
|
|
}
|
|
const placements2 = [initialPlacement, ...fallbackPlacements];
|
|
const overflow = await detectOverflow(state2, detectOverflowOptions);
|
|
const overflows = [];
|
|
let overflowsData = ((_middlewareData$flip = middlewareData.flip) == null ? void 0 : _middlewareData$flip.overflows) || [];
|
|
if (checkMainAxis) {
|
|
overflows.push(overflow[side]);
|
|
}
|
|
if (checkCrossAxis) {
|
|
const sides2 = getAlignmentSides(placement, rects, rtl);
|
|
overflows.push(overflow[sides2[0]], overflow[sides2[1]]);
|
|
}
|
|
overflowsData = [...overflowsData, {
|
|
placement,
|
|
overflows
|
|
}];
|
|
if (!overflows.every((side2) => side2 <= 0)) {
|
|
var _middlewareData$flip2, _overflowsData$filter;
|
|
const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;
|
|
const nextPlacement = placements2[nextIndex];
|
|
if (nextPlacement) {
|
|
return {
|
|
data: {
|
|
index: nextIndex,
|
|
overflows: overflowsData
|
|
},
|
|
reset: {
|
|
placement: nextPlacement
|
|
}
|
|
};
|
|
}
|
|
let resetPlacement = (_overflowsData$filter = overflowsData.filter((d) => d.overflows[0] <= 0).sort((a, b) => a.overflows[1] - b.overflows[1])[0]) == null ? void 0 : _overflowsData$filter.placement;
|
|
if (!resetPlacement) {
|
|
switch (fallbackStrategy) {
|
|
case "bestFit": {
|
|
var _overflowsData$map$so;
|
|
const placement2 = (_overflowsData$map$so = overflowsData.map((d) => [d.placement, d.overflows.filter((overflow2) => overflow2 > 0).reduce((acc, overflow2) => acc + overflow2, 0)]).sort((a, b) => a[1] - b[1])[0]) == null ? void 0 : _overflowsData$map$so[0];
|
|
if (placement2) {
|
|
resetPlacement = placement2;
|
|
}
|
|
break;
|
|
}
|
|
case "initialPlacement":
|
|
resetPlacement = initialPlacement;
|
|
break;
|
|
}
|
|
}
|
|
if (placement !== resetPlacement) {
|
|
return {
|
|
reset: {
|
|
placement: resetPlacement
|
|
}
|
|
};
|
|
}
|
|
}
|
|
return {};
|
|
}
|
|
};
|
|
};
|
|
async function convertValueToCoords(state2, options) {
|
|
const {
|
|
placement,
|
|
platform: platform2,
|
|
elements
|
|
} = state2;
|
|
const rtl = await (platform2.isRTL == null ? void 0 : platform2.isRTL(elements.floating));
|
|
const side = getSide(placement);
|
|
const alignment = getAlignment(placement);
|
|
const isVertical = getSideAxis(placement) === "y";
|
|
const mainAxisMulti = ["left", "top"].includes(side) ? -1 : 1;
|
|
const crossAxisMulti = rtl && isVertical ? -1 : 1;
|
|
const rawValue = evaluate(options, state2);
|
|
let {
|
|
mainAxis,
|
|
crossAxis,
|
|
alignmentAxis
|
|
} = typeof rawValue === "number" ? {
|
|
mainAxis: rawValue,
|
|
crossAxis: 0,
|
|
alignmentAxis: null
|
|
} : {
|
|
mainAxis: 0,
|
|
crossAxis: 0,
|
|
alignmentAxis: null,
|
|
...rawValue
|
|
};
|
|
if (alignment && typeof alignmentAxis === "number") {
|
|
crossAxis = alignment === "end" ? alignmentAxis * -1 : alignmentAxis;
|
|
}
|
|
return isVertical ? {
|
|
x: crossAxis * crossAxisMulti,
|
|
y: mainAxis * mainAxisMulti
|
|
} : {
|
|
x: mainAxis * mainAxisMulti,
|
|
y: crossAxis * crossAxisMulti
|
|
};
|
|
}
|
|
var offset = function(options) {
|
|
if (options === void 0) {
|
|
options = 0;
|
|
}
|
|
return {
|
|
name: "offset",
|
|
options,
|
|
async fn(state2) {
|
|
var _middlewareData$offse, _middlewareData$arrow;
|
|
const {
|
|
x,
|
|
y,
|
|
placement,
|
|
middlewareData
|
|
} = state2;
|
|
const diffCoords = await convertValueToCoords(state2, options);
|
|
if (placement === ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse.placement) && (_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {
|
|
return {};
|
|
}
|
|
return {
|
|
x: x + diffCoords.x,
|
|
y: y + diffCoords.y,
|
|
data: {
|
|
...diffCoords,
|
|
placement
|
|
}
|
|
};
|
|
}
|
|
};
|
|
};
|
|
var shift = function(options) {
|
|
if (options === void 0) {
|
|
options = {};
|
|
}
|
|
return {
|
|
name: "shift",
|
|
options,
|
|
async fn(state2) {
|
|
const {
|
|
x,
|
|
y,
|
|
placement
|
|
} = state2;
|
|
const {
|
|
mainAxis: checkMainAxis = true,
|
|
crossAxis: checkCrossAxis = false,
|
|
limiter = {
|
|
fn: (_ref) => {
|
|
let {
|
|
x: x2,
|
|
y: y2
|
|
} = _ref;
|
|
return {
|
|
x: x2,
|
|
y: y2
|
|
};
|
|
}
|
|
},
|
|
...detectOverflowOptions
|
|
} = evaluate(options, state2);
|
|
const coords = {
|
|
x,
|
|
y
|
|
};
|
|
const overflow = await detectOverflow(state2, detectOverflowOptions);
|
|
const crossAxis = getSideAxis(getSide(placement));
|
|
const mainAxis = getOppositeAxis(crossAxis);
|
|
let mainAxisCoord = coords[mainAxis];
|
|
let crossAxisCoord = coords[crossAxis];
|
|
if (checkMainAxis) {
|
|
const minSide = mainAxis === "y" ? "top" : "left";
|
|
const maxSide = mainAxis === "y" ? "bottom" : "right";
|
|
const min2 = mainAxisCoord + overflow[minSide];
|
|
const max2 = mainAxisCoord - overflow[maxSide];
|
|
mainAxisCoord = clamp(min2, mainAxisCoord, max2);
|
|
}
|
|
if (checkCrossAxis) {
|
|
const minSide = crossAxis === "y" ? "top" : "left";
|
|
const maxSide = crossAxis === "y" ? "bottom" : "right";
|
|
const min2 = crossAxisCoord + overflow[minSide];
|
|
const max2 = crossAxisCoord - overflow[maxSide];
|
|
crossAxisCoord = clamp(min2, crossAxisCoord, max2);
|
|
}
|
|
const limitedCoords = limiter.fn({
|
|
...state2,
|
|
[mainAxis]: mainAxisCoord,
|
|
[crossAxis]: crossAxisCoord
|
|
});
|
|
return {
|
|
...limitedCoords,
|
|
data: {
|
|
x: limitedCoords.x - x,
|
|
y: limitedCoords.y - y
|
|
}
|
|
};
|
|
}
|
|
};
|
|
};
|
|
|
|
// node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs
|
|
function getNodeName(node) {
|
|
if (isNode(node)) {
|
|
return (node.nodeName || "").toLowerCase();
|
|
}
|
|
return "#document";
|
|
}
|
|
function getWindow(node) {
|
|
var _node$ownerDocument;
|
|
return (node == null || (_node$ownerDocument = node.ownerDocument) == null ? void 0 : _node$ownerDocument.defaultView) || window;
|
|
}
|
|
function getDocumentElement(node) {
|
|
var _ref;
|
|
return (_ref = (isNode(node) ? node.ownerDocument : node.document) || window.document) == null ? void 0 : _ref.documentElement;
|
|
}
|
|
function isNode(value) {
|
|
return value instanceof Node || value instanceof getWindow(value).Node;
|
|
}
|
|
function isElement(value) {
|
|
return value instanceof Element || value instanceof getWindow(value).Element;
|
|
}
|
|
function isHTMLElement(value) {
|
|
return value instanceof HTMLElement || value instanceof getWindow(value).HTMLElement;
|
|
}
|
|
function isShadowRoot(value) {
|
|
if (typeof ShadowRoot === "undefined") {
|
|
return false;
|
|
}
|
|
return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;
|
|
}
|
|
function isOverflowElement(element2) {
|
|
const {
|
|
overflow,
|
|
overflowX,
|
|
overflowY,
|
|
display
|
|
} = getComputedStyle2(element2);
|
|
return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !["inline", "contents"].includes(display);
|
|
}
|
|
function isTableElement(element2) {
|
|
return ["table", "td", "th"].includes(getNodeName(element2));
|
|
}
|
|
function isContainingBlock(element2) {
|
|
const webkit = isWebKit();
|
|
const css = getComputedStyle2(element2);
|
|
return css.transform !== "none" || css.perspective !== "none" || (css.containerType ? css.containerType !== "normal" : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== "none" : false) || !webkit && (css.filter ? css.filter !== "none" : false) || ["transform", "perspective", "filter"].some((value) => (css.willChange || "").includes(value)) || ["paint", "layout", "strict", "content"].some((value) => (css.contain || "").includes(value));
|
|
}
|
|
function getContainingBlock(element2) {
|
|
let currentNode = getParentNode(element2);
|
|
while (isHTMLElement(currentNode) && !isLastTraversableNode(currentNode)) {
|
|
if (isContainingBlock(currentNode)) {
|
|
return currentNode;
|
|
} else {
|
|
currentNode = getParentNode(currentNode);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
function isWebKit() {
|
|
if (typeof CSS === "undefined" || !CSS.supports) return false;
|
|
return CSS.supports("-webkit-backdrop-filter", "none");
|
|
}
|
|
function isLastTraversableNode(node) {
|
|
return ["html", "body", "#document"].includes(getNodeName(node));
|
|
}
|
|
function getComputedStyle2(element2) {
|
|
return getWindow(element2).getComputedStyle(element2);
|
|
}
|
|
function getNodeScroll(element2) {
|
|
if (isElement(element2)) {
|
|
return {
|
|
scrollLeft: element2.scrollLeft,
|
|
scrollTop: element2.scrollTop
|
|
};
|
|
}
|
|
return {
|
|
scrollLeft: element2.pageXOffset,
|
|
scrollTop: element2.pageYOffset
|
|
};
|
|
}
|
|
function getParentNode(node) {
|
|
if (getNodeName(node) === "html") {
|
|
return node;
|
|
}
|
|
const result = (
|
|
// Step into the shadow DOM of the parent of a slotted node.
|
|
node.assignedSlot || // DOM Element detected.
|
|
node.parentNode || // ShadowRoot detected.
|
|
isShadowRoot(node) && node.host || // Fallback.
|
|
getDocumentElement(node)
|
|
);
|
|
return isShadowRoot(result) ? result.host : result;
|
|
}
|
|
function getNearestOverflowAncestor(node) {
|
|
const parentNode = getParentNode(node);
|
|
if (isLastTraversableNode(parentNode)) {
|
|
return node.ownerDocument ? node.ownerDocument.body : node.body;
|
|
}
|
|
if (isHTMLElement(parentNode) && isOverflowElement(parentNode)) {
|
|
return parentNode;
|
|
}
|
|
return getNearestOverflowAncestor(parentNode);
|
|
}
|
|
function getOverflowAncestors(node, list, traverseIframes) {
|
|
var _node$ownerDocument2;
|
|
if (list === void 0) {
|
|
list = [];
|
|
}
|
|
if (traverseIframes === void 0) {
|
|
traverseIframes = true;
|
|
}
|
|
const scrollableAncestor = getNearestOverflowAncestor(node);
|
|
const isBody = scrollableAncestor === ((_node$ownerDocument2 = node.ownerDocument) == null ? void 0 : _node$ownerDocument2.body);
|
|
const win = getWindow(scrollableAncestor);
|
|
if (isBody) {
|
|
return list.concat(win, win.visualViewport || [], isOverflowElement(scrollableAncestor) ? scrollableAncestor : [], win.frameElement && traverseIframes ? getOverflowAncestors(win.frameElement) : []);
|
|
}
|
|
return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));
|
|
}
|
|
|
|
// node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs
|
|
function getCssDimensions(element2) {
|
|
const css = getComputedStyle2(element2);
|
|
let width = parseFloat(css.width) || 0;
|
|
let height = parseFloat(css.height) || 0;
|
|
const hasOffset = isHTMLElement(element2);
|
|
const offsetWidth = hasOffset ? element2.offsetWidth : width;
|
|
const offsetHeight = hasOffset ? element2.offsetHeight : height;
|
|
const shouldFallback = round(width) !== offsetWidth || round(height) !== offsetHeight;
|
|
if (shouldFallback) {
|
|
width = offsetWidth;
|
|
height = offsetHeight;
|
|
}
|
|
return {
|
|
width,
|
|
height,
|
|
$: shouldFallback
|
|
};
|
|
}
|
|
function unwrapElement(element2) {
|
|
return !isElement(element2) ? element2.contextElement : element2;
|
|
}
|
|
function getScale(element2) {
|
|
const domElement = unwrapElement(element2);
|
|
if (!isHTMLElement(domElement)) {
|
|
return createCoords(1);
|
|
}
|
|
const rect = domElement.getBoundingClientRect();
|
|
const {
|
|
width,
|
|
height,
|
|
$
|
|
} = getCssDimensions(domElement);
|
|
let x = ($ ? round(rect.width) : rect.width) / width;
|
|
let y = ($ ? round(rect.height) : rect.height) / height;
|
|
if (!x || !Number.isFinite(x)) {
|
|
x = 1;
|
|
}
|
|
if (!y || !Number.isFinite(y)) {
|
|
y = 1;
|
|
}
|
|
return {
|
|
x,
|
|
y
|
|
};
|
|
}
|
|
var noOffsets = /* @__PURE__ */ createCoords(0);
|
|
function getVisualOffsets(element2) {
|
|
const win = getWindow(element2);
|
|
if (!isWebKit() || !win.visualViewport) {
|
|
return noOffsets;
|
|
}
|
|
return {
|
|
x: win.visualViewport.offsetLeft,
|
|
y: win.visualViewport.offsetTop
|
|
};
|
|
}
|
|
function shouldAddVisualOffsets(element2, isFixed, floatingOffsetParent) {
|
|
if (isFixed === void 0) {
|
|
isFixed = false;
|
|
}
|
|
if (!floatingOffsetParent || isFixed && floatingOffsetParent !== getWindow(element2)) {
|
|
return false;
|
|
}
|
|
return isFixed;
|
|
}
|
|
function getBoundingClientRect(element2, includeScale, isFixedStrategy, offsetParent) {
|
|
if (includeScale === void 0) {
|
|
includeScale = false;
|
|
}
|
|
if (isFixedStrategy === void 0) {
|
|
isFixedStrategy = false;
|
|
}
|
|
const clientRect = element2.getBoundingClientRect();
|
|
const domElement = unwrapElement(element2);
|
|
let scale = createCoords(1);
|
|
if (includeScale) {
|
|
if (offsetParent) {
|
|
if (isElement(offsetParent)) {
|
|
scale = getScale(offsetParent);
|
|
}
|
|
} else {
|
|
scale = getScale(element2);
|
|
}
|
|
}
|
|
const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);
|
|
let x = (clientRect.left + visualOffsets.x) / scale.x;
|
|
let y = (clientRect.top + visualOffsets.y) / scale.y;
|
|
let width = clientRect.width / scale.x;
|
|
let height = clientRect.height / scale.y;
|
|
if (domElement) {
|
|
const win = getWindow(domElement);
|
|
const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;
|
|
let currentWin = win;
|
|
let currentIFrame = currentWin.frameElement;
|
|
while (currentIFrame && offsetParent && offsetWin !== currentWin) {
|
|
const iframeScale = getScale(currentIFrame);
|
|
const iframeRect = currentIFrame.getBoundingClientRect();
|
|
const css = getComputedStyle2(currentIFrame);
|
|
const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;
|
|
const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;
|
|
x *= iframeScale.x;
|
|
y *= iframeScale.y;
|
|
width *= iframeScale.x;
|
|
height *= iframeScale.y;
|
|
x += left;
|
|
y += top;
|
|
currentWin = getWindow(currentIFrame);
|
|
currentIFrame = currentWin.frameElement;
|
|
}
|
|
}
|
|
return rectToClientRect({
|
|
width,
|
|
height,
|
|
x,
|
|
y
|
|
});
|
|
}
|
|
var topLayerSelectors = [":popover-open", ":modal"];
|
|
function isTopLayer(element2) {
|
|
return topLayerSelectors.some((selector) => {
|
|
try {
|
|
return element2.matches(selector);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
});
|
|
}
|
|
function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
|
|
let {
|
|
elements,
|
|
rect,
|
|
offsetParent,
|
|
strategy
|
|
} = _ref;
|
|
const isFixed = strategy === "fixed";
|
|
const documentElement = getDocumentElement(offsetParent);
|
|
const topLayer = elements ? isTopLayer(elements.floating) : false;
|
|
if (offsetParent === documentElement || topLayer && isFixed) {
|
|
return rect;
|
|
}
|
|
let scroll = {
|
|
scrollLeft: 0,
|
|
scrollTop: 0
|
|
};
|
|
let scale = createCoords(1);
|
|
const offsets = createCoords(0);
|
|
const isOffsetParentAnElement = isHTMLElement(offsetParent);
|
|
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
|
if (getNodeName(offsetParent) !== "body" || isOverflowElement(documentElement)) {
|
|
scroll = getNodeScroll(offsetParent);
|
|
}
|
|
if (isHTMLElement(offsetParent)) {
|
|
const offsetRect = getBoundingClientRect(offsetParent);
|
|
scale = getScale(offsetParent);
|
|
offsets.x = offsetRect.x + offsetParent.clientLeft;
|
|
offsets.y = offsetRect.y + offsetParent.clientTop;
|
|
}
|
|
}
|
|
return {
|
|
width: rect.width * scale.x,
|
|
height: rect.height * scale.y,
|
|
x: rect.x * scale.x - scroll.scrollLeft * scale.x + offsets.x,
|
|
y: rect.y * scale.y - scroll.scrollTop * scale.y + offsets.y
|
|
};
|
|
}
|
|
function getClientRects(element2) {
|
|
return Array.from(element2.getClientRects());
|
|
}
|
|
function getWindowScrollBarX(element2) {
|
|
return getBoundingClientRect(getDocumentElement(element2)).left + getNodeScroll(element2).scrollLeft;
|
|
}
|
|
function getDocumentRect(element2) {
|
|
const html2 = getDocumentElement(element2);
|
|
const scroll = getNodeScroll(element2);
|
|
const body = element2.ownerDocument.body;
|
|
const width = max(html2.scrollWidth, html2.clientWidth, body.scrollWidth, body.clientWidth);
|
|
const height = max(html2.scrollHeight, html2.clientHeight, body.scrollHeight, body.clientHeight);
|
|
let x = -scroll.scrollLeft + getWindowScrollBarX(element2);
|
|
const y = -scroll.scrollTop;
|
|
if (getComputedStyle2(body).direction === "rtl") {
|
|
x += max(html2.clientWidth, body.clientWidth) - width;
|
|
}
|
|
return {
|
|
width,
|
|
height,
|
|
x,
|
|
y
|
|
};
|
|
}
|
|
function getViewportRect(element2, strategy) {
|
|
const win = getWindow(element2);
|
|
const html2 = getDocumentElement(element2);
|
|
const visualViewport = win.visualViewport;
|
|
let width = html2.clientWidth;
|
|
let height = html2.clientHeight;
|
|
let x = 0;
|
|
let y = 0;
|
|
if (visualViewport) {
|
|
width = visualViewport.width;
|
|
height = visualViewport.height;
|
|
const visualViewportBased = isWebKit();
|
|
if (!visualViewportBased || visualViewportBased && strategy === "fixed") {
|
|
x = visualViewport.offsetLeft;
|
|
y = visualViewport.offsetTop;
|
|
}
|
|
}
|
|
return {
|
|
width,
|
|
height,
|
|
x,
|
|
y
|
|
};
|
|
}
|
|
function getInnerBoundingClientRect(element2, strategy) {
|
|
const clientRect = getBoundingClientRect(element2, true, strategy === "fixed");
|
|
const top = clientRect.top + element2.clientTop;
|
|
const left = clientRect.left + element2.clientLeft;
|
|
const scale = isHTMLElement(element2) ? getScale(element2) : createCoords(1);
|
|
const width = element2.clientWidth * scale.x;
|
|
const height = element2.clientHeight * scale.y;
|
|
const x = left * scale.x;
|
|
const y = top * scale.y;
|
|
return {
|
|
width,
|
|
height,
|
|
x,
|
|
y
|
|
};
|
|
}
|
|
function getClientRectFromClippingAncestor(element2, clippingAncestor, strategy) {
|
|
let rect;
|
|
if (clippingAncestor === "viewport") {
|
|
rect = getViewportRect(element2, strategy);
|
|
} else if (clippingAncestor === "document") {
|
|
rect = getDocumentRect(getDocumentElement(element2));
|
|
} else if (isElement(clippingAncestor)) {
|
|
rect = getInnerBoundingClientRect(clippingAncestor, strategy);
|
|
} else {
|
|
const visualOffsets = getVisualOffsets(element2);
|
|
rect = {
|
|
...clippingAncestor,
|
|
x: clippingAncestor.x - visualOffsets.x,
|
|
y: clippingAncestor.y - visualOffsets.y
|
|
};
|
|
}
|
|
return rectToClientRect(rect);
|
|
}
|
|
function hasFixedPositionAncestor(element2, stopNode) {
|
|
const parentNode = getParentNode(element2);
|
|
if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {
|
|
return false;
|
|
}
|
|
return getComputedStyle2(parentNode).position === "fixed" || hasFixedPositionAncestor(parentNode, stopNode);
|
|
}
|
|
function getClippingElementAncestors(element2, cache) {
|
|
const cachedResult = cache.get(element2);
|
|
if (cachedResult) {
|
|
return cachedResult;
|
|
}
|
|
let result = getOverflowAncestors(element2, [], false).filter((el) => isElement(el) && getNodeName(el) !== "body");
|
|
let currentContainingBlockComputedStyle = null;
|
|
const elementIsFixed = getComputedStyle2(element2).position === "fixed";
|
|
let currentNode = elementIsFixed ? getParentNode(element2) : element2;
|
|
while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {
|
|
const computedStyle = getComputedStyle2(currentNode);
|
|
const currentNodeIsContaining = isContainingBlock(currentNode);
|
|
if (!currentNodeIsContaining && computedStyle.position === "fixed") {
|
|
currentContainingBlockComputedStyle = null;
|
|
}
|
|
const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === "static" && !!currentContainingBlockComputedStyle && ["absolute", "fixed"].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element2, currentNode);
|
|
if (shouldDropCurrentNode) {
|
|
result = result.filter((ancestor) => ancestor !== currentNode);
|
|
} else {
|
|
currentContainingBlockComputedStyle = computedStyle;
|
|
}
|
|
currentNode = getParentNode(currentNode);
|
|
}
|
|
cache.set(element2, result);
|
|
return result;
|
|
}
|
|
function getClippingRect(_ref) {
|
|
let {
|
|
element: element2,
|
|
boundary: boundary2,
|
|
rootBoundary,
|
|
strategy
|
|
} = _ref;
|
|
const elementClippingAncestors = boundary2 === "clippingAncestors" ? isTopLayer(element2) ? [] : getClippingElementAncestors(element2, this._c) : [].concat(boundary2);
|
|
const clippingAncestors = [...elementClippingAncestors, rootBoundary];
|
|
const firstClippingAncestor = clippingAncestors[0];
|
|
const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {
|
|
const rect = getClientRectFromClippingAncestor(element2, clippingAncestor, strategy);
|
|
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;
|
|
}, getClientRectFromClippingAncestor(element2, firstClippingAncestor, strategy));
|
|
return {
|
|
width: clippingRect.right - clippingRect.left,
|
|
height: clippingRect.bottom - clippingRect.top,
|
|
x: clippingRect.left,
|
|
y: clippingRect.top
|
|
};
|
|
}
|
|
function getDimensions(element2) {
|
|
const {
|
|
width,
|
|
height
|
|
} = getCssDimensions(element2);
|
|
return {
|
|
width,
|
|
height
|
|
};
|
|
}
|
|
function getRectRelativeToOffsetParent(element2, offsetParent, strategy) {
|
|
const isOffsetParentAnElement = isHTMLElement(offsetParent);
|
|
const documentElement = getDocumentElement(offsetParent);
|
|
const isFixed = strategy === "fixed";
|
|
const rect = getBoundingClientRect(element2, true, isFixed, offsetParent);
|
|
let scroll = {
|
|
scrollLeft: 0,
|
|
scrollTop: 0
|
|
};
|
|
const offsets = createCoords(0);
|
|
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
|
if (getNodeName(offsetParent) !== "body" || isOverflowElement(documentElement)) {
|
|
scroll = getNodeScroll(offsetParent);
|
|
}
|
|
if (isOffsetParentAnElement) {
|
|
const offsetRect = getBoundingClientRect(offsetParent, true, isFixed, offsetParent);
|
|
offsets.x = offsetRect.x + offsetParent.clientLeft;
|
|
offsets.y = offsetRect.y + offsetParent.clientTop;
|
|
} else if (documentElement) {
|
|
offsets.x = getWindowScrollBarX(documentElement);
|
|
}
|
|
}
|
|
const x = rect.left + scroll.scrollLeft - offsets.x;
|
|
const y = rect.top + scroll.scrollTop - offsets.y;
|
|
return {
|
|
x,
|
|
y,
|
|
width: rect.width,
|
|
height: rect.height
|
|
};
|
|
}
|
|
function isStaticPositioned(element2) {
|
|
return getComputedStyle2(element2).position === "static";
|
|
}
|
|
function getTrueOffsetParent(element2, polyfill) {
|
|
if (!isHTMLElement(element2) || getComputedStyle2(element2).position === "fixed") {
|
|
return null;
|
|
}
|
|
if (polyfill) {
|
|
return polyfill(element2);
|
|
}
|
|
return element2.offsetParent;
|
|
}
|
|
function getOffsetParent(element2, polyfill) {
|
|
const win = getWindow(element2);
|
|
if (isTopLayer(element2)) {
|
|
return win;
|
|
}
|
|
if (!isHTMLElement(element2)) {
|
|
let svgOffsetParent = getParentNode(element2);
|
|
while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {
|
|
if (isElement(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {
|
|
return svgOffsetParent;
|
|
}
|
|
svgOffsetParent = getParentNode(svgOffsetParent);
|
|
}
|
|
return win;
|
|
}
|
|
let offsetParent = getTrueOffsetParent(element2, polyfill);
|
|
while (offsetParent && isTableElement(offsetParent) && isStaticPositioned(offsetParent)) {
|
|
offsetParent = getTrueOffsetParent(offsetParent, polyfill);
|
|
}
|
|
if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {
|
|
return win;
|
|
}
|
|
return offsetParent || getContainingBlock(element2) || win;
|
|
}
|
|
var getElementRects = async function(data) {
|
|
const getOffsetParentFn = this.getOffsetParent || getOffsetParent;
|
|
const getDimensionsFn = this.getDimensions;
|
|
const floatingDimensions = await getDimensionsFn(data.floating);
|
|
return {
|
|
reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),
|
|
floating: {
|
|
x: 0,
|
|
y: 0,
|
|
width: floatingDimensions.width,
|
|
height: floatingDimensions.height
|
|
}
|
|
};
|
|
};
|
|
function isRTL(element2) {
|
|
return getComputedStyle2(element2).direction === "rtl";
|
|
}
|
|
var platform = {
|
|
convertOffsetParentRelativeRectToViewportRelativeRect,
|
|
getDocumentElement,
|
|
getClippingRect,
|
|
getOffsetParent,
|
|
getElementRects,
|
|
getClientRects,
|
|
getDimensions,
|
|
getScale,
|
|
isElement,
|
|
isRTL
|
|
};
|
|
function observeMove(element2, onMove) {
|
|
let io = null;
|
|
let timeoutId;
|
|
const root12 = getDocumentElement(element2);
|
|
function cleanup() {
|
|
var _io;
|
|
clearTimeout(timeoutId);
|
|
(_io = io) == null || _io.disconnect();
|
|
io = null;
|
|
}
|
|
function refresh(skip, threshold) {
|
|
if (skip === void 0) {
|
|
skip = false;
|
|
}
|
|
if (threshold === void 0) {
|
|
threshold = 1;
|
|
}
|
|
cleanup();
|
|
const {
|
|
left,
|
|
top,
|
|
width,
|
|
height
|
|
} = element2.getBoundingClientRect();
|
|
if (!skip) {
|
|
onMove();
|
|
}
|
|
if (!width || !height) {
|
|
return;
|
|
}
|
|
const insetTop = floor(top);
|
|
const insetRight = floor(root12.clientWidth - (left + width));
|
|
const insetBottom = floor(root12.clientHeight - (top + height));
|
|
const insetLeft = floor(left);
|
|
const rootMargin = -insetTop + "px " + -insetRight + "px " + -insetBottom + "px " + -insetLeft + "px";
|
|
const options = {
|
|
rootMargin,
|
|
threshold: max(0, min(1, threshold)) || 1
|
|
};
|
|
let isFirstUpdate = true;
|
|
function handleObserve(entries) {
|
|
const ratio = entries[0].intersectionRatio;
|
|
if (ratio !== threshold) {
|
|
if (!isFirstUpdate) {
|
|
return refresh();
|
|
}
|
|
if (!ratio) {
|
|
timeoutId = setTimeout(() => {
|
|
refresh(false, 1e-7);
|
|
}, 1e3);
|
|
} else {
|
|
refresh(false, ratio);
|
|
}
|
|
}
|
|
isFirstUpdate = false;
|
|
}
|
|
try {
|
|
io = new IntersectionObserver(handleObserve, {
|
|
...options,
|
|
// Handle <iframe>s
|
|
root: root12.ownerDocument
|
|
});
|
|
} catch (e) {
|
|
io = new IntersectionObserver(handleObserve, options);
|
|
}
|
|
io.observe(element2);
|
|
}
|
|
refresh(true);
|
|
return cleanup;
|
|
}
|
|
function autoUpdate(reference, floating, update2, options) {
|
|
if (options === void 0) {
|
|
options = {};
|
|
}
|
|
const {
|
|
ancestorScroll = true,
|
|
ancestorResize = true,
|
|
elementResize = typeof ResizeObserver === "function",
|
|
layoutShift = typeof IntersectionObserver === "function",
|
|
animationFrame = false
|
|
} = options;
|
|
const referenceEl = unwrapElement(reference);
|
|
const ancestors = ancestorScroll || ancestorResize ? [...referenceEl ? getOverflowAncestors(referenceEl) : [], ...getOverflowAncestors(floating)] : [];
|
|
ancestors.forEach((ancestor) => {
|
|
ancestorScroll && ancestor.addEventListener("scroll", update2, {
|
|
passive: true
|
|
});
|
|
ancestorResize && ancestor.addEventListener("resize", update2);
|
|
});
|
|
const cleanupIo = referenceEl && layoutShift ? observeMove(referenceEl, update2) : null;
|
|
let reobserveFrame = -1;
|
|
let resizeObserver = null;
|
|
if (elementResize) {
|
|
resizeObserver = new ResizeObserver((_ref) => {
|
|
let [firstEntry] = _ref;
|
|
if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {
|
|
resizeObserver.unobserve(floating);
|
|
cancelAnimationFrame(reobserveFrame);
|
|
reobserveFrame = requestAnimationFrame(() => {
|
|
var _resizeObserver;
|
|
(_resizeObserver = resizeObserver) == null || _resizeObserver.observe(floating);
|
|
});
|
|
}
|
|
update2();
|
|
});
|
|
if (referenceEl && !animationFrame) {
|
|
resizeObserver.observe(referenceEl);
|
|
}
|
|
resizeObserver.observe(floating);
|
|
}
|
|
let frameId;
|
|
let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;
|
|
if (animationFrame) {
|
|
frameLoop();
|
|
}
|
|
function frameLoop() {
|
|
const nextRefRect = getBoundingClientRect(reference);
|
|
if (prevRefRect && (nextRefRect.x !== prevRefRect.x || nextRefRect.y !== prevRefRect.y || nextRefRect.width !== prevRefRect.width || nextRefRect.height !== prevRefRect.height)) {
|
|
update2();
|
|
}
|
|
prevRefRect = nextRefRect;
|
|
frameId = requestAnimationFrame(frameLoop);
|
|
}
|
|
update2();
|
|
return () => {
|
|
var _resizeObserver2;
|
|
ancestors.forEach((ancestor) => {
|
|
ancestorScroll && ancestor.removeEventListener("scroll", update2);
|
|
ancestorResize && ancestor.removeEventListener("resize", update2);
|
|
});
|
|
cleanupIo == null || cleanupIo();
|
|
(_resizeObserver2 = resizeObserver) == null || _resizeObserver2.disconnect();
|
|
resizeObserver = null;
|
|
if (animationFrame) {
|
|
cancelAnimationFrame(frameId);
|
|
}
|
|
};
|
|
}
|
|
var offset2 = offset;
|
|
var shift2 = shift;
|
|
var flip2 = flip;
|
|
var computePosition2 = (reference, floating, options) => {
|
|
const cache = /* @__PURE__ */ new Map();
|
|
const mergedOptions = {
|
|
platform,
|
|
...options
|
|
};
|
|
const platformWithCache = {
|
|
...mergedOptions.platform,
|
|
_c: cache
|
|
};
|
|
return computePosition(reference, floating, {
|
|
...mergedOptions,
|
|
platform: platformWithCache
|
|
});
|
|
};
|
|
|
|
// node_modules/svelte-floating-ui/index.js
|
|
function createFloatingActions(initOptions) {
|
|
let referenceElement;
|
|
let floatingElement;
|
|
const defaultOptions = {
|
|
autoUpdate: true
|
|
};
|
|
let options = initOptions;
|
|
const getOptions = (mixin) => {
|
|
return { ...defaultOptions, ...initOptions || {}, ...mixin || {} };
|
|
};
|
|
const updatePosition = (updateOptions) => {
|
|
if (referenceElement && floatingElement) {
|
|
options = getOptions(updateOptions);
|
|
computePosition2(referenceElement, floatingElement, options).then((v) => {
|
|
Object.assign(floatingElement.style, {
|
|
position: v.strategy,
|
|
left: `${v.x}px`,
|
|
top: `${v.y}px`
|
|
});
|
|
(options == null ? void 0 : options.onComputed) && options.onComputed(v);
|
|
});
|
|
}
|
|
};
|
|
const referenceAction = (node) => {
|
|
if ("subscribe" in node) {
|
|
setupVirtualElementObserver(node);
|
|
return {};
|
|
} else {
|
|
referenceElement = node;
|
|
updatePosition();
|
|
}
|
|
};
|
|
const contentAction = (node, contentOptions) => {
|
|
let autoUpdateDestroy;
|
|
floatingElement = node;
|
|
options = getOptions(contentOptions);
|
|
setTimeout(() => updatePosition(contentOptions), 0);
|
|
updatePosition(contentOptions);
|
|
const destroyAutoUpdate = () => {
|
|
if (autoUpdateDestroy) {
|
|
autoUpdateDestroy();
|
|
autoUpdateDestroy = void 0;
|
|
}
|
|
};
|
|
const initAutoUpdate = ({ autoUpdate: autoUpdate2 } = options || {}) => {
|
|
destroyAutoUpdate();
|
|
if (autoUpdate2 !== false) {
|
|
tick().then(() => {
|
|
return autoUpdate(referenceElement, floatingElement, () => updatePosition(options), autoUpdate2 === true ? {} : autoUpdate2);
|
|
});
|
|
}
|
|
return;
|
|
};
|
|
autoUpdateDestroy = initAutoUpdate();
|
|
return {
|
|
update(contentOptions2) {
|
|
updatePosition(contentOptions2);
|
|
autoUpdateDestroy = initAutoUpdate(contentOptions2);
|
|
},
|
|
destroy() {
|
|
destroyAutoUpdate();
|
|
}
|
|
};
|
|
};
|
|
const setupVirtualElementObserver = (node) => {
|
|
const unsubscribe = node.subscribe(($node) => {
|
|
if (referenceElement === void 0) {
|
|
referenceElement = $node;
|
|
updatePosition();
|
|
} else {
|
|
Object.assign(referenceElement, $node);
|
|
updatePosition();
|
|
}
|
|
});
|
|
onDestroy(unsubscribe);
|
|
};
|
|
return [
|
|
referenceAction,
|
|
contentAction,
|
|
updatePosition
|
|
];
|
|
}
|
|
|
|
// node_modules/svelte-select/filter.js
|
|
function filter({
|
|
loadOptions,
|
|
filterText,
|
|
items,
|
|
multiple,
|
|
value,
|
|
itemId,
|
|
groupBy,
|
|
filterSelectedItems,
|
|
itemFilter,
|
|
convertStringItemsToObjects,
|
|
filterGroupedItems,
|
|
label
|
|
}) {
|
|
if (items && loadOptions) return items;
|
|
if (!items) return [];
|
|
if (items && items.length > 0 && typeof items[0] !== "object") {
|
|
items = convertStringItemsToObjects(items);
|
|
}
|
|
let filterResults = items.filter((item) => {
|
|
let matchesFilter = itemFilter(item[label], filterText, item);
|
|
if (matchesFilter && multiple && (value == null ? void 0 : value.length)) {
|
|
matchesFilter = !value.some((x) => {
|
|
return filterSelectedItems ? x[itemId] === item[itemId] : false;
|
|
});
|
|
}
|
|
return matchesFilter;
|
|
});
|
|
if (groupBy) {
|
|
filterResults = filterGroupedItems(filterResults);
|
|
}
|
|
return filterResults;
|
|
}
|
|
|
|
// node_modules/svelte-select/get-items.js
|
|
async function getItems({ dispatch, loadOptions, convertStringItemsToObjects, filterText }) {
|
|
let res = await loadOptions(filterText).catch((err) => {
|
|
console.warn("svelte-select loadOptions error :>> ", err);
|
|
dispatch("error", { type: "loadOptions", details: err });
|
|
});
|
|
if (res && !res.cancelled) {
|
|
if (res) {
|
|
if (res && res.length > 0 && typeof res[0] !== "object") {
|
|
res = convertStringItemsToObjects(res);
|
|
}
|
|
dispatch("loaded", { items: res });
|
|
} else {
|
|
res = [];
|
|
}
|
|
return {
|
|
filteredItems: res,
|
|
loading: false,
|
|
focused: true,
|
|
listOpen: true
|
|
};
|
|
}
|
|
}
|
|
|
|
// node_modules/svelte-select/ChevronIcon.svelte
|
|
var root4 = from_svg(`<svg width="100%" height="100%" viewBox="0 0 20 20" focusable="false" aria-hidden="true" class="svelte-1kxu7be"><path fill="currentColor" d="M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747
|
|
3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0
|
|
1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502
|
|
0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0
|
|
0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"></path></svg>`);
|
|
var $$css5 = {
|
|
hash: "svelte-1kxu7be",
|
|
code: "svg.svelte-1kxu7be {width:var(--chevron-icon-width, 20px);height:var(--chevron-icon-width, 20px);color:var(--chevron-icon-colour, currentColor);}"
|
|
};
|
|
function ChevronIcon($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: ChevronIcon, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css5);
|
|
var $$exports = {
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
var svg = root4();
|
|
append($$anchor, svg);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// node_modules/svelte-select/ClearIcon.svelte
|
|
var root5 = from_svg(`<svg width="100%" height="100%" viewBox="-2 -2 50 50" focusable="false" aria-hidden="true" role="presentation" class="svelte-1hraxrc"><path fill="currentColor" d="M34.923,37.251L24,26.328L13.077,37.251L9.436,33.61l10.923-10.923L9.436,11.765l3.641-3.641L24,19.047L34.923,8.124
|
|
l3.641,3.641L27.641,22.688L38.564,33.61L34.923,37.251z"></path></svg>`);
|
|
var $$css6 = {
|
|
hash: "svelte-1hraxrc",
|
|
code: "svg.svelte-1hraxrc {width:var(--clear-icon-width, 20px);height:var(--clear-icon-width, 20px);color:var(--clear-icon-color, currentColor);}"
|
|
};
|
|
function ClearIcon($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: ClearIcon, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css6);
|
|
var $$exports = {
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
var svg = root5();
|
|
append($$anchor, svg);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// node_modules/svelte-select/LoadingIcon.svelte
|
|
var root6 = from_svg(`<svg class="loading svelte-y9fi5p" viewBox="25 25 50 50"><circle class="circle_path svelte-y9fi5p" cx="50" cy="50" r="20" fill="none" stroke="currentColor" stroke-width="5" stroke-miterlimit="10"></circle></svg>`);
|
|
var $$css7 = {
|
|
hash: "svelte-y9fi5p",
|
|
code: ".loading.svelte-y9fi5p {width:var(--spinner-width, 20px);height:var(--spinner-height, 20px);color:var(--spinner-color, var(--icons-color));\n animation: svelte-y9fi5p-rotate 0.75s linear infinite;transform-origin:center center;transform:none;}.circle_path.svelte-y9fi5p {stroke-dasharray:90;stroke-linecap:round;}\n\n @keyframes svelte-y9fi5p-rotate {\n 100% {\n transform: rotate(360deg);\n }\n }"
|
|
};
|
|
function LoadingIcon($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: LoadingIcon, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css7);
|
|
var $$exports = {
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
var svg = root6();
|
|
append($$anchor, svg);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// node_modules/svelte-select/Select.svelte
|
|
var root_53 = from_html(`<div class="list-item svelte-1ul7oo4" tabindex="-1" role="none"><div><!></div></div>`);
|
|
var root_82 = from_html(`<div class="empty svelte-1ul7oo4">No options</div>`);
|
|
var root_13 = from_html(`<div role="none"><!> <!> <!></div>`);
|
|
var root_102 = from_html(`<span id="aria-selection" class="svelte-1ul7oo4"> </span> <span id="aria-context" class="svelte-1ul7oo4"> </span>`, 1);
|
|
var root_15 = from_html(`<div class="multi-item-clear svelte-1ul7oo4"><!></div>`);
|
|
var root_132 = from_html(`<div role="none"><span class="multi-item-text svelte-1ul7oo4"><!></span> <!></div>`);
|
|
var root_17 = from_html(`<div><!></div>`);
|
|
var root_19 = from_html(`<div class="icon loading svelte-1ul7oo4" aria-hidden="true"><!></div>`);
|
|
var root_21 = from_html(`<button type="button" class="icon clear-select svelte-1ul7oo4"><!></button>`);
|
|
var root_23 = from_html(`<div class="icon chevron svelte-1ul7oo4" aria-hidden="true"><!></div>`);
|
|
var root_25 = from_html(`<input type="hidden" class="svelte-1ul7oo4"/>`);
|
|
var root_27 = from_html(`<select class="required svelte-1ul7oo4" required="" tabindex="-1" aria-hidden="true"></select>`);
|
|
var root7 = from_html(`<div role="none"><!> <span aria-live="polite" aria-atomic="false" aria-relevant="additions text" class="a11y-text svelte-1ul7oo4"><!></span> <div class="prepend svelte-1ul7oo4"><!></div> <div class="value-container svelte-1ul7oo4"><!> <input/></div> <div class="indicators svelte-1ul7oo4"><!> <!> <!></div> <!> <!></div>`);
|
|
var $$css8 = {
|
|
hash: "svelte-1ul7oo4",
|
|
code: ".svelte-select.svelte-1ul7oo4 {\n /* deprecating camelCase custom props in favour of kebab-case for v5 */--borderRadius: var(--border-radius);--clearSelectColor: var(--clear-select-color);--clearSelectWidth: var(--clear-select-width);--disabledBackground: var(--disabled-background);--disabledBorderColor: var(--disabled-border-color);--disabledColor: var(--disabled-color);--disabledPlaceholderColor: var(--disabled-placeholder-color);--disabledPlaceholderOpacity: var(--disabled-placeholder-opacity);--errorBackground: var(--error-background);--errorBorder: var(--error-border);--groupItemPaddingLeft: var(--group-item-padding-left);--groupTitleColor: var(--group-title-color);--groupTitleFontSize: var(--group-title-font-size);--groupTitleFontWeight: var(--group-title-font-weight);--groupTitlePadding: var(--group-title-padding);--groupTitleTextTransform: var(--group-title-text-transform);--groupTitleBorderColor: var(--group-title-border-color);--groupTitleBorderWidth: var(--group-title-border-width);--groupTitleBorderStyle: var(--group-title-border-style);--indicatorColor: var(--chevron-color);--indicatorHeight: var(--chevron-height);--indicatorWidth: var(--chevron-width);--inputColor: var(--input-color);--inputLeft: var(--input-left);--inputLetterSpacing: var(--input-letter-spacing);--inputMargin: var(--input-margin);--inputPadding: var(--input-padding);--itemActiveBackground: var(--item-active-background);--itemColor: var(--item-color);--itemFirstBorderRadius: var(--item-first-border-radius);--itemHoverBG: var(--item-hover-bg);--itemHoverColor: var(--item-hover-color);--itemIsActiveBG: var(--item-is-active-bg);--itemIsActiveColor: var(--item-is-active-color);--itemIsNotSelectableColor: var(--item-is-not-selectable-color);--itemPadding: var(--item-padding);--listBackground: var(--list-background);--listBorder: var(--list-border);--listBorderRadius: var(--list-border-radius);--listEmptyColor: var(--list-empty-color);--listEmptyPadding: var(--list-empty-padding);--listEmptyTextAlign: var(--list-empty-text-align);--listMaxHeight: var(--list-max-height);--listPosition: var(--list-position);--listShadow: var(--list-shadow);--listZIndex: var(--list-z-index);--multiItemBG: var(--multi-item-bg);--multiItemBorderRadius: var(--multi-item-border-radius);--multiItemDisabledHoverBg: var(--multi-item-disabled-hover-bg);--multiItemDisabledHoverColor: var(--multi-item-disabled-hover-color);--multiItemHeight: var(--multi-item-height);--multiItemMargin: var(--multi-item-margin);--multiItemPadding: var(--multi-item-padding);--multiSelectInputMargin: var(--multi-select-input-margin);--multiSelectInputPadding: var(--multi-select-input-padding);--multiSelectPadding: var(--multi-select-padding);--placeholderColor: var(--placeholder-color);--placeholderOpacity: var(--placeholder-opacity);--selectedItemPadding: var(--selected-item-padding);--spinnerColor: var(--spinner-color);--spinnerHeight: var(--spinner-height);--spinnerWidth: var(--spinner-width);--internal-padding: 0 0 0 16px;border:var(--border, 1px solid #d8dbdf);border-radius:var(--border-radius, 6px);min-height:var(--height, 42px);position:relative;display:flex;align-items:stretch;padding:var(--padding, var(--internal-padding));background:var(--background, #fff);margin:var(--margin, 0);width:var(--width, 100%);font-size:var(--font-size, 16px);max-height:var(--max-height);}.svelte-1ul7oo4 {box-sizing:var(--box-sizing, border-box);}.svelte-select.svelte-1ul7oo4:hover {border:var(--border-hover, 1px solid #b2b8bf);}.value-container.svelte-1ul7oo4 {display:flex;flex:1 1 0%;flex-wrap:wrap;align-items:center;gap:5px 10px;padding:var(--value-container-padding, 5px 0);position:relative;overflow:var(--value-container-overflow, hidden);align-self:stretch;}.prepend.svelte-1ul7oo4,\n .indicators.svelte-1ul7oo4 {display:flex;flex-shrink:0;align-items:center;}.indicators.svelte-1ul7oo4 {position:var(--indicators-position);top:var(--indicators-top);right:var(--indicators-right);bottom:var(--indicators-bottom);}input.svelte-1ul7oo4 {position:absolute;cursor:default;border:none;color:var(--input-color, var(--item-color));padding:var(--input-padding, 0);letter-spacing:var(--input-letter-spacing, inherit);margin:var(--input-margin, 0);min-width:10px;top:0;right:0;bottom:0;left:0;background:transparent;font-size:var(--font-size, 16px);}.svelte-1ul7oo4:not(.multi) > .value-container:where(.svelte-1ul7oo4) > input:where(.svelte-1ul7oo4) {width:100%;height:100%;}input.svelte-1ul7oo4::placeholder {color:var(--placeholder-color, #78848f);opacity:var(--placeholder-opacity, 1);}input.svelte-1ul7oo4:focus {outline:none;}.svelte-select.focused.svelte-1ul7oo4 {border:var(--border-focused, 1px solid #006fe8);border-radius:var(--border-radius-focused, var(--border-radius, 6px));}.disabled.svelte-1ul7oo4 {background:var(--disabled-background, #ebedef);border-color:var(--disabled-border-color, #ebedef);color:var(--disabled-color, #c1c6cc);}.disabled.svelte-1ul7oo4 input:where(.svelte-1ul7oo4)::placeholder {color:var(--disabled-placeholder-color, #c1c6cc);opacity:var(--disabled-placeholder-opacity, 1);}.selected-item.svelte-1ul7oo4 {position:relative;overflow:var(--selected-item-overflow, hidden);padding:var(--selected-item-padding, 0 20px 0 0);text-overflow:ellipsis;white-space:nowrap;color:var(--selected-item-color, inherit);font-size:var(--font-size, 16px);}.multi.svelte-1ul7oo4 .selected-item:where(.svelte-1ul7oo4) {position:absolute;line-height:var(--height, 42px);height:var(--height, 42px);}.selected-item.svelte-1ul7oo4:focus {outline:none;}.hide-selected-item.svelte-1ul7oo4 {opacity:0;}.icon.svelte-1ul7oo4 {display:flex;align-items:center;justify-content:center;}.clear-select.svelte-1ul7oo4 {all:unset;display:flex;align-items:center;justify-content:center;width:var(--clear-select-width, 40px);height:var(--clear-select-height, 100%);color:var(--clear-select-color, var(--icons-color));margin:var(--clear-select-margin, 0);pointer-events:all;flex-shrink:0;}.clear-select.svelte-1ul7oo4:focus {outline:var(--clear-select-focus-outline, 1px solid #006fe8);}.loading.svelte-1ul7oo4 {width:var(--loading-width, 40px);height:var(--loading-height);color:var(--loading-color, var(--icons-color));margin:var(--loading--margin, 0);flex-shrink:0;}.chevron.svelte-1ul7oo4 {width:var(--chevron-width, 40px);height:var(--chevron-height, 40px);background:var(--chevron-background, transparent);pointer-events:var(--chevron-pointer-events, none);color:var(--chevron-color, var(--icons-color));border:var(--chevron-border, 0 0 0 1px solid #d8dbdf);flex-shrink:0;}.multi.svelte-1ul7oo4 {padding:var(--multi-select-padding, var(--internal-padding));}.multi.svelte-1ul7oo4 input:where(.svelte-1ul7oo4) {padding:var(--multi-select-input-padding, 0);position:relative;margin:var(--multi-select-input-margin, 5px 0);flex:1 1 40px;}.svelte-select.error.svelte-1ul7oo4 {border:var(--error-border, 1px solid #ff2d55);background:var(--error-background, #fff);}.a11y-text.svelte-1ul7oo4 {z-index:9999;border:0px;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0px;white-space:nowrap;}.multi-item.svelte-1ul7oo4 {background:var(--multi-item-bg, #ebedef);margin:var(--multi-item-margin, 0);outline:var(--multi-item-outline, 1px solid #ddd);border-radius:var(--multi-item-border-radius, 4px);height:var(--multi-item-height, 25px);line-height:var(--multi-item-height, 25px);display:flex;cursor:default;padding:var(--multi-item-padding, 0 5px);overflow:hidden;gap:var(--multi-item-gap, 4px);outline-offset:-1px;max-width:var(--multi-max-width, none);color:var(--multi-item-color, var(--item-color));}.multi-item.disabled.svelte-1ul7oo4:hover {background:var(--multi-item-disabled-hover-bg, #ebedef);color:var(--multi-item-disabled-hover-color, #c1c6cc);}.multi-item-text.svelte-1ul7oo4 {overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.multi-item-clear.svelte-1ul7oo4 {display:flex;align-items:center;justify-content:center;--clear-icon-color: var(--multi-item-clear-icon-color, #000);}.multi-item.active.svelte-1ul7oo4 {outline:var(--multi-item-active-outline, 1px solid #006fe8);}.svelte-select-list.svelte-1ul7oo4 {box-shadow:var(--list-shadow, 0 2px 3px 0 rgba(44, 62, 80, 0.24));border-radius:var(--list-border-radius, 4px);max-height:var(--list-max-height, 252px);overflow-y:auto;background:var(--list-background, #fff);position:var(--list-position, absolute);z-index:var(--list-z-index, 2);border:var(--list-border);}.prefloat.svelte-1ul7oo4 {opacity:0;pointer-events:none;}.list-group-title.svelte-1ul7oo4 {color:var(--group-title-color, #8f8f8f);cursor:default;font-size:var(--group-title-font-size, 16px);font-weight:var(--group-title-font-weight, 600);height:var(--height, 42px);line-height:var(--height, 42px);padding:var(--group-title-padding, 0 20px);text-overflow:ellipsis;overflow-x:hidden;white-space:nowrap;text-transform:var(--group-title-text-transform, uppercase);border-width:var(--group-title-border-width, medium);border-style:var(--group-title-border-style, none);border-color:var(--group-title-border-color, color);}.empty.svelte-1ul7oo4 {text-align:var(--list-empty-text-align, center);padding:var(--list-empty-padding, 20px 0);color:var(--list-empty-color, #78848f);}.item.svelte-1ul7oo4 {cursor:default;height:var(--item-height, var(--height, 42px));line-height:var(--item-line-height, var(--height, 42px));padding:var(--item-padding, 0 20px);color:var(--item-color, inherit);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;transition:var(--item-transition, all 0.2s);align-items:center;width:100%;}.item.group-item.svelte-1ul7oo4 {padding-left:var(--group-item-padding-left, 40px);}.item.svelte-1ul7oo4:active {background:var(--item-active-background, #b9daff);}.item.active.svelte-1ul7oo4 {background:var(--item-is-active-bg, #007aff);color:var(--item-is-active-color, #fff);}.item.first.svelte-1ul7oo4 {border-radius:var(--item-first-border-radius, 4px 4px 0 0);}.item.hover.svelte-1ul7oo4:not(.active) {background:var(--item-hover-bg, #e7f2ff);color:var(--item-hover-color, inherit);}.item.not-selectable.svelte-1ul7oo4,\n .item.hover.item.not-selectable.svelte-1ul7oo4,\n .item.active.item.not-selectable.svelte-1ul7oo4,\n .item.not-selectable.svelte-1ul7oo4:active {color:var(--item-is-not-selectable-color, #999);background:transparent;}.required.svelte-1ul7oo4 {opacity:0;z-index:-1;position:absolute;top:0;left:0;bottom:0;right:0;}"
|
|
};
|
|
function Select($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Select, ...$$anchor });
|
|
const $$slots = sanitize_slots($$props);
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css8);
|
|
const hasValue = mutable_source();
|
|
const hideSelectedItem = mutable_source();
|
|
const showClear = mutable_source();
|
|
const placeholderText = mutable_source();
|
|
const ariaSelection = mutable_source();
|
|
const ariaContext = mutable_source();
|
|
const filteredItems = mutable_source();
|
|
const listDom = mutable_source();
|
|
const scrollToHoverItem = mutable_source();
|
|
const dispatch = createEventDispatcher();
|
|
let justValue = prop(
|
|
$$props,
|
|
"justValue",
|
|
12,
|
|
null
|
|
// read-only
|
|
);
|
|
let filter2 = prop($$props, "filter", 12, filter);
|
|
let getItems2 = prop($$props, "getItems", 12, getItems);
|
|
let id = prop($$props, "id", 12, null);
|
|
let name = prop($$props, "name", 12, null);
|
|
let container = prop($$props, "container", 12, void 0);
|
|
let input = prop($$props, "input", 12, void 0);
|
|
let multiple = prop($$props, "multiple", 12, false);
|
|
let multiFullItemClearable = prop($$props, "multiFullItemClearable", 12, false);
|
|
let disabled = prop($$props, "disabled", 12, false);
|
|
let focused = prop($$props, "focused", 12, false);
|
|
let value = prop($$props, "value", 12, null);
|
|
let filterText = prop($$props, "filterText", 12, "");
|
|
let placeholder = prop($$props, "placeholder", 12, "Please select");
|
|
let placeholderAlwaysShow = prop($$props, "placeholderAlwaysShow", 12, false);
|
|
let items = prop($$props, "items", 12, null);
|
|
let label = prop($$props, "label", 12, "label");
|
|
let itemFilter = prop($$props, "itemFilter", 12, (label2, filterText2, option) => `${label2}`.toLowerCase().includes(filterText2.toLowerCase()));
|
|
let groupBy = prop($$props, "groupBy", 12, void 0);
|
|
let groupFilter = prop($$props, "groupFilter", 12, (groups) => groups);
|
|
let groupHeaderSelectable = prop($$props, "groupHeaderSelectable", 12, false);
|
|
let itemId = prop($$props, "itemId", 12, "value");
|
|
let loadOptions = prop($$props, "loadOptions", 12, void 0);
|
|
let containerStyles = prop($$props, "containerStyles", 12, "");
|
|
let hasError = prop($$props, "hasError", 12, false);
|
|
let filterSelectedItems = prop($$props, "filterSelectedItems", 12, true);
|
|
let required = prop($$props, "required", 12, false);
|
|
let closeListOnChange = prop($$props, "closeListOnChange", 12, true);
|
|
let clearFilterTextOnBlur = prop($$props, "clearFilterTextOnBlur", 12, true);
|
|
let createGroupHeaderItem = prop($$props, "createGroupHeaderItem", 12, (groupValue, item) => {
|
|
return { value: groupValue, [label()]: groupValue };
|
|
});
|
|
const getFilteredItems = () => {
|
|
return get(filteredItems);
|
|
};
|
|
let searchable = prop($$props, "searchable", 12, true);
|
|
let inputStyles = prop($$props, "inputStyles", 12, "");
|
|
let clearable = prop($$props, "clearable", 12, true);
|
|
let loading = prop($$props, "loading", 12, false);
|
|
let listOpen = prop($$props, "listOpen", 12, false);
|
|
let timeout;
|
|
let debounce = prop($$props, "debounce", 12, (fn, wait2 = 1) => {
|
|
clearTimeout(timeout);
|
|
timeout = setTimeout(fn, wait2);
|
|
});
|
|
let debounceWait = prop($$props, "debounceWait", 12, 300);
|
|
let hideEmptyState = prop($$props, "hideEmptyState", 12, false);
|
|
let inputAttributes = prop($$props, "inputAttributes", 28, () => ({}));
|
|
let listAutoWidth = prop($$props, "listAutoWidth", 12, true);
|
|
let showChevron = prop($$props, "showChevron", 12, false);
|
|
let listOffset = prop($$props, "listOffset", 12, 5);
|
|
let hoverItemIndex = prop($$props, "hoverItemIndex", 12, 0);
|
|
let floatingConfig = prop($$props, "floatingConfig", 28, () => ({}));
|
|
let containerClasses = prop($$props, "class", 12, "");
|
|
let activeValue = mutable_source();
|
|
let prev_value = mutable_source();
|
|
let prev_filterText = mutable_source();
|
|
let prev_multiple = mutable_source();
|
|
function setValue() {
|
|
if (typeof value() === "string") {
|
|
let item = (items() || []).find((item2) => item2[itemId()] === value());
|
|
value(item || { [itemId()]: value(), label: value() });
|
|
} else if (multiple() && Array.isArray(value()) && value().length > 0) {
|
|
value(value().map((item) => typeof item === "string" ? { value: item, label: item } : item));
|
|
}
|
|
}
|
|
let _inputAttributes = mutable_source();
|
|
function assignInputAttributes() {
|
|
set(_inputAttributes, Object.assign(
|
|
{
|
|
autocapitalize: "none",
|
|
autocomplete: "off",
|
|
autocorrect: "off",
|
|
spellcheck: false,
|
|
tabindex: 0,
|
|
type: "text",
|
|
"aria-autocomplete": "list"
|
|
},
|
|
inputAttributes()
|
|
));
|
|
if (id()) {
|
|
mutate(_inputAttributes, get(_inputAttributes)["id"] = id());
|
|
}
|
|
if (!searchable()) {
|
|
mutate(_inputAttributes, get(_inputAttributes)["readonly"] = true);
|
|
}
|
|
}
|
|
function convertStringItemsToObjects(_items) {
|
|
return _items.map((item, index2) => {
|
|
return { index: index2, value: item, label: `${item}` };
|
|
});
|
|
}
|
|
function filterGroupedItems(_items) {
|
|
const groupValues = [];
|
|
const groups = {};
|
|
_items.forEach((item) => {
|
|
const groupValue = groupBy()(item);
|
|
if (!groupValues.includes(groupValue)) {
|
|
groupValues.push(groupValue);
|
|
groups[groupValue] = [];
|
|
if (groupValue) {
|
|
groups[groupValue].push(Object.assign(createGroupHeaderItem()(groupValue, item), {
|
|
id: groupValue,
|
|
groupHeader: true,
|
|
selectable: groupHeaderSelectable()
|
|
}));
|
|
}
|
|
}
|
|
groups[groupValue].push(Object.assign({ groupItem: !!groupValue }, item));
|
|
});
|
|
const sortedGroupedItems = [];
|
|
groupFilter()(groupValues).forEach((groupValue) => {
|
|
if (groups[groupValue]) sortedGroupedItems.push(...groups[groupValue]);
|
|
});
|
|
return sortedGroupedItems;
|
|
}
|
|
function dispatchSelectedItem() {
|
|
if (multiple()) {
|
|
if (JSON.stringify(value()) !== JSON.stringify(get(prev_value))) {
|
|
if (checkValueForDuplicates()) {
|
|
dispatch("input", value());
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
if (!get(prev_value) || JSON.stringify(value()[itemId()]) !== JSON.stringify(get(prev_value)[itemId()])) {
|
|
dispatch("input", value());
|
|
}
|
|
}
|
|
function setupMulti() {
|
|
if (value()) {
|
|
if (Array.isArray(value())) {
|
|
value([...value()]);
|
|
} else {
|
|
value([value()]);
|
|
}
|
|
}
|
|
}
|
|
function setupSingle() {
|
|
if (value()) value(null);
|
|
}
|
|
function setValueIndexAsHoverIndex() {
|
|
const valueIndex = get(filteredItems).findIndex((i) => {
|
|
return i[itemId()] === value()[itemId()];
|
|
});
|
|
checkHoverSelectable(valueIndex, true);
|
|
}
|
|
function dispatchHover(i) {
|
|
dispatch("hoverItem", i);
|
|
}
|
|
function checkHoverSelectable(startingIndex = 0, ignoreGroup) {
|
|
hoverItemIndex(startingIndex < 0 ? 0 : startingIndex);
|
|
if (!ignoreGroup && groupBy() && get(filteredItems)[hoverItemIndex()] && !get(filteredItems)[hoverItemIndex()].selectable) {
|
|
setHoverIndex(1);
|
|
}
|
|
}
|
|
function setupFilterText() {
|
|
if (!loadOptions() && filterText().length === 0) return;
|
|
if (loadOptions()) {
|
|
debounce()(
|
|
async function() {
|
|
loading(true);
|
|
let res = await getItems2()({
|
|
dispatch,
|
|
loadOptions: loadOptions(),
|
|
convertStringItemsToObjects,
|
|
filterText: filterText()
|
|
});
|
|
if (res) {
|
|
loading(res.loading);
|
|
listOpen(listOpen() ? res.listOpen : filterText().length > 0 ? true : false);
|
|
focused(listOpen() && res.focused);
|
|
items(groupBy() ? filterGroupedItems(res.filteredItems) : res.filteredItems);
|
|
} else {
|
|
loading(false);
|
|
focused(true);
|
|
listOpen(true);
|
|
}
|
|
},
|
|
debounceWait()
|
|
);
|
|
} else {
|
|
listOpen(true);
|
|
if (multiple()) {
|
|
set(activeValue, void 0);
|
|
}
|
|
}
|
|
}
|
|
function handleFilterEvent(items2) {
|
|
if (listOpen()) dispatch("filter", items2);
|
|
}
|
|
beforeUpdate(async () => {
|
|
set(prev_value, value());
|
|
set(prev_filterText, filterText());
|
|
set(prev_multiple, multiple());
|
|
});
|
|
function computeJustValue() {
|
|
if (multiple()) return value() ? value().map((item) => item[itemId()]) : null;
|
|
return value() ? value()[itemId()] : value();
|
|
}
|
|
function checkValueForDuplicates() {
|
|
let noDuplicates = true;
|
|
if (value()) {
|
|
const ids = [];
|
|
const uniqueValues = [];
|
|
value().forEach((val) => {
|
|
if (!ids.includes(val[itemId()])) {
|
|
ids.push(val[itemId()]);
|
|
uniqueValues.push(val);
|
|
} else {
|
|
noDuplicates = false;
|
|
}
|
|
});
|
|
if (!noDuplicates) value(uniqueValues);
|
|
}
|
|
return noDuplicates;
|
|
}
|
|
function findItem(selection) {
|
|
let matchTo = selection ? selection[itemId()] : value()[itemId()];
|
|
return items().find((item) => item[itemId()] === matchTo);
|
|
}
|
|
function updateValueDisplay(items2) {
|
|
if (!items2 || items2.length === 0 || items2.some((item) => typeof item !== "object")) return;
|
|
if (!value() || (multiple() ? value().some((selection) => !selection || !selection[itemId()]) : !value()[itemId()])) return;
|
|
if (Array.isArray(value())) {
|
|
value(value().map((selection) => findItem(selection) || selection));
|
|
} else {
|
|
value(findItem() || value());
|
|
}
|
|
}
|
|
async function handleMultiItemClear(i) {
|
|
const itemToRemove = value()[i];
|
|
if (value().length === 1) {
|
|
value(void 0);
|
|
} else {
|
|
value(value().filter((item) => {
|
|
return item !== itemToRemove;
|
|
}));
|
|
}
|
|
dispatch("clear", itemToRemove);
|
|
}
|
|
function handleKeyDown(e) {
|
|
if (!focused()) return;
|
|
e.stopPropagation();
|
|
switch (e.key) {
|
|
case "Escape":
|
|
e.preventDefault();
|
|
closeList();
|
|
break;
|
|
case "Enter":
|
|
e.preventDefault();
|
|
if (listOpen()) {
|
|
if (get(filteredItems).length === 0) break;
|
|
const hoverItem = get(filteredItems)[hoverItemIndex()];
|
|
if (value() && !multiple() && value()[itemId()] === hoverItem[itemId()]) {
|
|
closeList();
|
|
break;
|
|
} else {
|
|
handleSelect(get(filteredItems)[hoverItemIndex()]);
|
|
}
|
|
}
|
|
break;
|
|
case "ArrowDown":
|
|
e.preventDefault();
|
|
if (listOpen()) {
|
|
setHoverIndex(1);
|
|
} else {
|
|
listOpen(true);
|
|
set(activeValue, void 0);
|
|
}
|
|
break;
|
|
case "ArrowUp":
|
|
e.preventDefault();
|
|
if (listOpen()) {
|
|
setHoverIndex(-1);
|
|
} else {
|
|
listOpen(true);
|
|
set(activeValue, void 0);
|
|
}
|
|
break;
|
|
case "Tab":
|
|
if (listOpen() && focused()) {
|
|
if (get(filteredItems).length === 0 || value() && value()[itemId()] === get(filteredItems)[hoverItemIndex()][itemId()]) return closeList();
|
|
e.preventDefault();
|
|
handleSelect(get(filteredItems)[hoverItemIndex()]);
|
|
closeList();
|
|
}
|
|
break;
|
|
case "Backspace":
|
|
if (!multiple() || filterText().length > 0) return;
|
|
if (multiple() && value() && value().length > 0) {
|
|
handleMultiItemClear(get(activeValue) !== void 0 ? get(activeValue) : value().length - 1);
|
|
if (get(activeValue) === 0 || get(activeValue) === void 0) break;
|
|
set(activeValue, value().length > get(activeValue) ? get(activeValue) - 1 : void 0);
|
|
}
|
|
break;
|
|
case "ArrowLeft":
|
|
if (!value() || !multiple() || filterText().length > 0) return;
|
|
if (get(activeValue) === void 0) {
|
|
set(activeValue, value().length - 1);
|
|
} else if (value().length > get(activeValue) && get(activeValue) !== 0) {
|
|
set(activeValue, get(activeValue) - 1);
|
|
}
|
|
break;
|
|
case "ArrowRight":
|
|
if (!value() || !multiple() || filterText().length > 0 || get(activeValue) === void 0) return;
|
|
if (get(activeValue) === value().length - 1) {
|
|
set(activeValue, void 0);
|
|
} else if (get(activeValue) < value().length - 1) {
|
|
set(activeValue, get(activeValue) + 1);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
function handleFocus(e) {
|
|
var _a5;
|
|
if (focused() && input() === (document == null ? void 0 : document.activeElement)) return;
|
|
if (e) dispatch("focus", e);
|
|
(_a5 = input()) == null ? void 0 : _a5.focus();
|
|
focused(true);
|
|
}
|
|
async function handleBlur(e) {
|
|
var _a5;
|
|
if (isScrolling) return;
|
|
if (listOpen() || focused()) {
|
|
dispatch("blur", e);
|
|
closeList();
|
|
focused(false);
|
|
set(activeValue, void 0);
|
|
(_a5 = input()) == null ? void 0 : _a5.blur();
|
|
}
|
|
}
|
|
function handleClick() {
|
|
if (disabled()) return;
|
|
if (filterText().length > 0) return listOpen(true);
|
|
listOpen(!listOpen());
|
|
}
|
|
function handleClear() {
|
|
dispatch("clear", value());
|
|
value(void 0);
|
|
closeList();
|
|
handleFocus();
|
|
}
|
|
onMount(() => {
|
|
if (listOpen()) focused(true);
|
|
if (focused() && input()) input().focus();
|
|
});
|
|
function itemSelected(selection) {
|
|
if (selection) {
|
|
filterText("");
|
|
const item = Object.assign({}, selection);
|
|
if (item.groupHeader && !item.selectable) return;
|
|
value(multiple() ? value() ? value().concat([item]) : [item] : value(item));
|
|
setTimeout(() => {
|
|
if (closeListOnChange()) closeList();
|
|
set(activeValue, void 0);
|
|
dispatch("change", value());
|
|
dispatch("select", selection);
|
|
});
|
|
}
|
|
}
|
|
function closeList() {
|
|
if (clearFilterTextOnBlur()) {
|
|
filterText("");
|
|
}
|
|
listOpen(false);
|
|
}
|
|
let ariaValues = prop($$props, "ariaValues", 12, (values) => {
|
|
return `Option ${values}, selected.`;
|
|
});
|
|
let ariaListOpen = prop($$props, "ariaListOpen", 12, (label2, count) => {
|
|
return `You are currently focused on option ${label2}. There are ${count} results available.`;
|
|
});
|
|
let ariaFocused = prop($$props, "ariaFocused", 12, () => {
|
|
return `Select is focused, type to refine list, press down to open the menu.`;
|
|
});
|
|
function handleAriaSelection(_multiple) {
|
|
let selected = void 0;
|
|
if (_multiple && value().length > 0) {
|
|
selected = value().map((v) => v[label()]).join(", ");
|
|
} else {
|
|
selected = value()[label()];
|
|
}
|
|
return ariaValues()(selected);
|
|
}
|
|
function handleAriaContent() {
|
|
if (!get(filteredItems) || get(filteredItems).length === 0) return "";
|
|
let _item = get(filteredItems)[hoverItemIndex()];
|
|
if (listOpen() && _item) {
|
|
let count = get(filteredItems) ? get(filteredItems).length : 0;
|
|
return ariaListOpen()(_item[label()], count);
|
|
} else {
|
|
return ariaFocused()();
|
|
}
|
|
}
|
|
let list = mutable_source(null);
|
|
let isScrollingTimer;
|
|
function handleListScroll() {
|
|
clearTimeout(isScrollingTimer);
|
|
isScrollingTimer = setTimeout(
|
|
() => {
|
|
isScrolling = false;
|
|
},
|
|
100
|
|
);
|
|
}
|
|
function handleClickOutside(event2) {
|
|
var _a5;
|
|
if (!listOpen() && !focused() && container() && !container().contains(event2.target) && !((_a5 = get(list)) == null ? void 0 : _a5.contains(event2.target))) {
|
|
handleBlur();
|
|
}
|
|
}
|
|
onDestroy(() => {
|
|
var _a5;
|
|
(_a5 = get(list)) == null ? void 0 : _a5.remove();
|
|
});
|
|
let isScrolling = false;
|
|
function handleSelect(item) {
|
|
if (!item || item.selectable === false) return;
|
|
itemSelected(item);
|
|
}
|
|
function handleHover(i) {
|
|
if (isScrolling) return;
|
|
hoverItemIndex(i);
|
|
}
|
|
function handleItemClick(args) {
|
|
const { item, i } = args;
|
|
if ((item == null ? void 0 : item.selectable) === false) return;
|
|
if (value() && !multiple() && value()[itemId()] === item[itemId()]) return closeList();
|
|
if (isItemSelectable(item)) {
|
|
hoverItemIndex(i);
|
|
handleSelect(item);
|
|
}
|
|
}
|
|
function setHoverIndex(increment2) {
|
|
let selectableFilteredItems = get(filteredItems).filter((item) => !Object.hasOwn(item, "selectable") || item.selectable === true);
|
|
if (selectableFilteredItems.length === 0) {
|
|
return hoverItemIndex(0);
|
|
}
|
|
if (increment2 > 0 && hoverItemIndex() === get(filteredItems).length - 1) {
|
|
hoverItemIndex(0);
|
|
} else if (increment2 < 0 && hoverItemIndex() === 0) {
|
|
hoverItemIndex(get(filteredItems).length - 1);
|
|
} else {
|
|
hoverItemIndex(hoverItemIndex() + increment2);
|
|
}
|
|
const hover = get(filteredItems)[hoverItemIndex()];
|
|
if (hover && hover.selectable === false) {
|
|
if (increment2 === 1 || increment2 === -1) setHoverIndex(increment2);
|
|
return;
|
|
}
|
|
}
|
|
function isItemActive(item, value2, itemId2) {
|
|
if (multiple()) return;
|
|
return value2 && value2[itemId2] === item[itemId2];
|
|
}
|
|
function isItemFirst(itemIndex) {
|
|
return itemIndex === 0;
|
|
}
|
|
function isItemSelectable(item) {
|
|
return item.groupHeader && item.selectable || item.selectable || !item.hasOwnProperty("selectable");
|
|
}
|
|
const activeScroll = scrollAction;
|
|
const hoverScroll = scrollAction;
|
|
function scrollAction(node) {
|
|
return {
|
|
update(args) {
|
|
if (args.scroll) {
|
|
handleListScroll();
|
|
node.scrollIntoView({ behavior: "auto", block: "nearest" });
|
|
}
|
|
}
|
|
};
|
|
}
|
|
function setListWidth() {
|
|
const { width } = container().getBoundingClientRect();
|
|
mutate(list, get(list).style.width = listAutoWidth() ? width + "px" : "auto");
|
|
}
|
|
let _floatingConfig = mutable_source({
|
|
strategy: "absolute",
|
|
placement: "bottom-start",
|
|
middleware: [offset2(listOffset()), flip2(), shift2()],
|
|
autoUpdate: false
|
|
});
|
|
const [floatingRef, floatingContent, floatingUpdate] = createFloatingActions(get(_floatingConfig));
|
|
let prefloat = mutable_source(true);
|
|
function listMounted(list2, listOpen2) {
|
|
if (!list2 || !listOpen2) return set(prefloat, true);
|
|
setTimeout(
|
|
() => {
|
|
set(prefloat, false);
|
|
},
|
|
0
|
|
);
|
|
}
|
|
legacy_pre_effect(() => (deep_read_state(items()), deep_read_state(value())), () => {
|
|
if (items(), value()) setValue();
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(inputAttributes()), deep_read_state(searchable())),
|
|
() => {
|
|
if (inputAttributes() || !searchable()) assignInputAttributes();
|
|
}
|
|
);
|
|
legacy_pre_effect(() => deep_read_state(multiple()), () => {
|
|
if (multiple()) setupMulti();
|
|
});
|
|
legacy_pre_effect(() => (get(prev_multiple), deep_read_state(multiple())), () => {
|
|
if (get(prev_multiple) && !multiple()) setupSingle();
|
|
});
|
|
legacy_pre_effect(() => (deep_read_state(multiple()), deep_read_state(value())), () => {
|
|
if (multiple() && value() && value().length > 1) checkValueForDuplicates();
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(value()), () => {
|
|
if (value()) dispatchSelectedItem();
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(value()), deep_read_state(multiple()), get(prev_value)),
|
|
() => {
|
|
if (!value() && multiple() && get(prev_value)) dispatch("input", value());
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (deep_read_state(focused()), deep_read_state(input())), () => {
|
|
if (!focused() && input()) closeList();
|
|
});
|
|
legacy_pre_effect(() => (deep_read_state(filterText()), get(prev_filterText)), () => {
|
|
if (filterText() !== get(prev_filterText)) setupFilterText();
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(filter2()), deep_read_state(loadOptions()), deep_read_state(filterText()), deep_read_state(items()), deep_read_state(multiple()), deep_read_state(value()), deep_read_state(itemId()), deep_read_state(groupBy()), deep_read_state(label()), deep_read_state(filterSelectedItems()), deep_read_state(itemFilter())),
|
|
() => {
|
|
set(filteredItems, filter2()({
|
|
loadOptions: loadOptions(),
|
|
filterText: filterText(),
|
|
items: items(),
|
|
multiple: multiple(),
|
|
value: value(),
|
|
itemId: itemId(),
|
|
groupBy: groupBy(),
|
|
label: label(),
|
|
filterSelectedItems: filterSelectedItems(),
|
|
itemFilter: itemFilter(),
|
|
convertStringItemsToObjects,
|
|
filterGroupedItems
|
|
}));
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(multiple()), deep_read_state(listOpen()), deep_read_state(value()), get(filteredItems)),
|
|
() => {
|
|
if (!multiple() && listOpen() && value() && get(filteredItems)) setValueIndexAsHoverIndex();
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (deep_read_state(listOpen()), deep_read_state(multiple())), () => {
|
|
if (listOpen() && multiple()) hoverItemIndex(0);
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(filterText()), () => {
|
|
if (filterText()) hoverItemIndex(0);
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(hoverItemIndex()), () => {
|
|
dispatchHover(hoverItemIndex());
|
|
});
|
|
legacy_pre_effect(() => (deep_read_state(multiple()), deep_read_state(value())), () => {
|
|
set(hasValue, multiple() ? value() && value().length > 0 : value());
|
|
});
|
|
legacy_pre_effect(() => (get(hasValue), deep_read_state(filterText())), () => {
|
|
set(hideSelectedItem, get(hasValue) && filterText().length > 0);
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(hasValue), deep_read_state(clearable()), deep_read_state(disabled()), deep_read_state(loading())),
|
|
() => {
|
|
set(showClear, get(hasValue) && clearable() && !disabled() && !loading());
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(placeholderAlwaysShow()), deep_read_state(multiple()), deep_read_state(placeholder()), deep_read_state(value())),
|
|
() => {
|
|
var _a5;
|
|
set(placeholderText, placeholderAlwaysShow() && multiple() ? placeholder() : multiple() && ((_a5 = value()) == null ? void 0 : _a5.length) === 0 ? placeholder() : value() ? "" : placeholder());
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (deep_read_state(value()), deep_read_state(multiple())), () => {
|
|
set(ariaSelection, value() ? handleAriaSelection(multiple()) : "");
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(filteredItems), deep_read_state(hoverItemIndex()), deep_read_state(focused()), deep_read_state(listOpen())),
|
|
() => {
|
|
set(ariaContext, handleAriaContent({
|
|
filteredItems: get(filteredItems),
|
|
hoverItemIndex: hoverItemIndex(),
|
|
focused: focused(),
|
|
listOpen: listOpen()
|
|
}));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => deep_read_state(items()), () => {
|
|
updateValueDisplay(items());
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(multiple()), deep_read_state(value()), deep_read_state(itemId())),
|
|
() => {
|
|
justValue(computeJustValue(multiple(), value(), itemId()));
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(multiple()), get(prev_value), deep_read_state(value())),
|
|
() => {
|
|
if (!multiple() && get(prev_value) && !value()) dispatch("input", value());
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(listOpen()), get(filteredItems), deep_read_state(multiple()), deep_read_state(value())),
|
|
() => {
|
|
if (listOpen() && get(filteredItems) && !multiple() && !value()) checkHoverSelectable();
|
|
}
|
|
);
|
|
legacy_pre_effect(() => get(filteredItems), () => {
|
|
handleFilterEvent(get(filteredItems));
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(container()), deep_read_state(floatingConfig()), get(_floatingConfig)),
|
|
() => {
|
|
if (container() && floatingConfig()) floatingUpdate(Object.assign(get(_floatingConfig), floatingConfig()));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => get(list), () => {
|
|
set(listDom, !!get(list));
|
|
});
|
|
legacy_pre_effect(() => (get(list), deep_read_state(listOpen())), () => {
|
|
listMounted(get(list), listOpen());
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(listOpen()), deep_read_state(container()), get(list)),
|
|
() => {
|
|
if (listOpen() && container() && get(list)) setListWidth();
|
|
}
|
|
);
|
|
legacy_pre_effect(() => deep_read_state(hoverItemIndex()), () => {
|
|
set(scrollToHoverItem, hoverItemIndex());
|
|
});
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(input()), deep_read_state(listOpen()), deep_read_state(focused())),
|
|
() => {
|
|
if (input() && listOpen() && !focused()) handleFocus();
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (deep_read_state(container()), deep_read_state(floatingConfig())),
|
|
() => {
|
|
var _a5;
|
|
if (container() && ((_a5 = floatingConfig()) == null ? void 0 : _a5.autoUpdate) === void 0) {
|
|
mutate(_floatingConfig, get(_floatingConfig).autoUpdate = true);
|
|
}
|
|
}
|
|
);
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
getFilteredItems,
|
|
handleClear,
|
|
get justValue() {
|
|
return justValue();
|
|
},
|
|
set justValue($$value) {
|
|
justValue($$value);
|
|
flushSync();
|
|
},
|
|
get filter() {
|
|
return filter2();
|
|
},
|
|
set filter($$value) {
|
|
filter2($$value);
|
|
flushSync();
|
|
},
|
|
get getItems() {
|
|
return getItems2();
|
|
},
|
|
set getItems($$value) {
|
|
getItems2($$value);
|
|
flushSync();
|
|
},
|
|
get id() {
|
|
return id();
|
|
},
|
|
set id($$value) {
|
|
id($$value);
|
|
flushSync();
|
|
},
|
|
get name() {
|
|
return name();
|
|
},
|
|
set name($$value) {
|
|
name($$value);
|
|
flushSync();
|
|
},
|
|
get container() {
|
|
return container();
|
|
},
|
|
set container($$value) {
|
|
container($$value);
|
|
flushSync();
|
|
},
|
|
get input() {
|
|
return input();
|
|
},
|
|
set input($$value) {
|
|
input($$value);
|
|
flushSync();
|
|
},
|
|
get multiple() {
|
|
return multiple();
|
|
},
|
|
set multiple($$value) {
|
|
multiple($$value);
|
|
flushSync();
|
|
},
|
|
get multiFullItemClearable() {
|
|
return multiFullItemClearable();
|
|
},
|
|
set multiFullItemClearable($$value) {
|
|
multiFullItemClearable($$value);
|
|
flushSync();
|
|
},
|
|
get disabled() {
|
|
return disabled();
|
|
},
|
|
set disabled($$value) {
|
|
disabled($$value);
|
|
flushSync();
|
|
},
|
|
get focused() {
|
|
return focused();
|
|
},
|
|
set focused($$value) {
|
|
focused($$value);
|
|
flushSync();
|
|
},
|
|
get value() {
|
|
return value();
|
|
},
|
|
set value($$value) {
|
|
value($$value);
|
|
flushSync();
|
|
},
|
|
get filterText() {
|
|
return filterText();
|
|
},
|
|
set filterText($$value) {
|
|
filterText($$value);
|
|
flushSync();
|
|
},
|
|
get placeholder() {
|
|
return placeholder();
|
|
},
|
|
set placeholder($$value) {
|
|
placeholder($$value);
|
|
flushSync();
|
|
},
|
|
get placeholderAlwaysShow() {
|
|
return placeholderAlwaysShow();
|
|
},
|
|
set placeholderAlwaysShow($$value) {
|
|
placeholderAlwaysShow($$value);
|
|
flushSync();
|
|
},
|
|
get items() {
|
|
return items();
|
|
},
|
|
set items($$value) {
|
|
items($$value);
|
|
flushSync();
|
|
},
|
|
get label() {
|
|
return label();
|
|
},
|
|
set label($$value) {
|
|
label($$value);
|
|
flushSync();
|
|
},
|
|
get itemFilter() {
|
|
return itemFilter();
|
|
},
|
|
set itemFilter($$value) {
|
|
itemFilter($$value);
|
|
flushSync();
|
|
},
|
|
get groupBy() {
|
|
return groupBy();
|
|
},
|
|
set groupBy($$value) {
|
|
groupBy($$value);
|
|
flushSync();
|
|
},
|
|
get groupFilter() {
|
|
return groupFilter();
|
|
},
|
|
set groupFilter($$value) {
|
|
groupFilter($$value);
|
|
flushSync();
|
|
},
|
|
get groupHeaderSelectable() {
|
|
return groupHeaderSelectable();
|
|
},
|
|
set groupHeaderSelectable($$value) {
|
|
groupHeaderSelectable($$value);
|
|
flushSync();
|
|
},
|
|
get itemId() {
|
|
return itemId();
|
|
},
|
|
set itemId($$value) {
|
|
itemId($$value);
|
|
flushSync();
|
|
},
|
|
get loadOptions() {
|
|
return loadOptions();
|
|
},
|
|
set loadOptions($$value) {
|
|
loadOptions($$value);
|
|
flushSync();
|
|
},
|
|
get containerStyles() {
|
|
return containerStyles();
|
|
},
|
|
set containerStyles($$value) {
|
|
containerStyles($$value);
|
|
flushSync();
|
|
},
|
|
get hasError() {
|
|
return hasError();
|
|
},
|
|
set hasError($$value) {
|
|
hasError($$value);
|
|
flushSync();
|
|
},
|
|
get filterSelectedItems() {
|
|
return filterSelectedItems();
|
|
},
|
|
set filterSelectedItems($$value) {
|
|
filterSelectedItems($$value);
|
|
flushSync();
|
|
},
|
|
get required() {
|
|
return required();
|
|
},
|
|
set required($$value) {
|
|
required($$value);
|
|
flushSync();
|
|
},
|
|
get closeListOnChange() {
|
|
return closeListOnChange();
|
|
},
|
|
set closeListOnChange($$value) {
|
|
closeListOnChange($$value);
|
|
flushSync();
|
|
},
|
|
get clearFilterTextOnBlur() {
|
|
return clearFilterTextOnBlur();
|
|
},
|
|
set clearFilterTextOnBlur($$value) {
|
|
clearFilterTextOnBlur($$value);
|
|
flushSync();
|
|
},
|
|
get createGroupHeaderItem() {
|
|
return createGroupHeaderItem();
|
|
},
|
|
set createGroupHeaderItem($$value) {
|
|
createGroupHeaderItem($$value);
|
|
flushSync();
|
|
},
|
|
get searchable() {
|
|
return searchable();
|
|
},
|
|
set searchable($$value) {
|
|
searchable($$value);
|
|
flushSync();
|
|
},
|
|
get inputStyles() {
|
|
return inputStyles();
|
|
},
|
|
set inputStyles($$value) {
|
|
inputStyles($$value);
|
|
flushSync();
|
|
},
|
|
get clearable() {
|
|
return clearable();
|
|
},
|
|
set clearable($$value) {
|
|
clearable($$value);
|
|
flushSync();
|
|
},
|
|
get loading() {
|
|
return loading();
|
|
},
|
|
set loading($$value) {
|
|
loading($$value);
|
|
flushSync();
|
|
},
|
|
get listOpen() {
|
|
return listOpen();
|
|
},
|
|
set listOpen($$value) {
|
|
listOpen($$value);
|
|
flushSync();
|
|
},
|
|
get debounce() {
|
|
return debounce();
|
|
},
|
|
set debounce($$value) {
|
|
debounce($$value);
|
|
flushSync();
|
|
},
|
|
get debounceWait() {
|
|
return debounceWait();
|
|
},
|
|
set debounceWait($$value) {
|
|
debounceWait($$value);
|
|
flushSync();
|
|
},
|
|
get hideEmptyState() {
|
|
return hideEmptyState();
|
|
},
|
|
set hideEmptyState($$value) {
|
|
hideEmptyState($$value);
|
|
flushSync();
|
|
},
|
|
get inputAttributes() {
|
|
return inputAttributes();
|
|
},
|
|
set inputAttributes($$value) {
|
|
inputAttributes($$value);
|
|
flushSync();
|
|
},
|
|
get listAutoWidth() {
|
|
return listAutoWidth();
|
|
},
|
|
set listAutoWidth($$value) {
|
|
listAutoWidth($$value);
|
|
flushSync();
|
|
},
|
|
get showChevron() {
|
|
return showChevron();
|
|
},
|
|
set showChevron($$value) {
|
|
showChevron($$value);
|
|
flushSync();
|
|
},
|
|
get listOffset() {
|
|
return listOffset();
|
|
},
|
|
set listOffset($$value) {
|
|
listOffset($$value);
|
|
flushSync();
|
|
},
|
|
get hoverItemIndex() {
|
|
return hoverItemIndex();
|
|
},
|
|
set hoverItemIndex($$value) {
|
|
hoverItemIndex($$value);
|
|
flushSync();
|
|
},
|
|
get floatingConfig() {
|
|
return floatingConfig();
|
|
},
|
|
set floatingConfig($$value) {
|
|
floatingConfig($$value);
|
|
flushSync();
|
|
},
|
|
get class() {
|
|
return containerClasses();
|
|
},
|
|
set class($$value) {
|
|
containerClasses($$value);
|
|
flushSync();
|
|
},
|
|
get ariaValues() {
|
|
return ariaValues();
|
|
},
|
|
set ariaValues($$value) {
|
|
ariaValues($$value);
|
|
flushSync();
|
|
},
|
|
get ariaListOpen() {
|
|
return ariaListOpen();
|
|
},
|
|
set ariaListOpen($$value) {
|
|
ariaListOpen($$value);
|
|
flushSync();
|
|
},
|
|
get ariaFocused() {
|
|
return ariaFocused();
|
|
},
|
|
set ariaFocused($$value) {
|
|
ariaFocused($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var div = root7();
|
|
event("click", $window, handleClickOutside);
|
|
event("keydown", $window, handleKeyDown);
|
|
let classes;
|
|
var node_1 = child(div);
|
|
{
|
|
var consequent_5 = ($$anchor2) => {
|
|
var div_1 = root_13();
|
|
let classes_1;
|
|
var node_2 = child(div_1);
|
|
{
|
|
var consequent = ($$anchor3) => {
|
|
var fragment = comment();
|
|
var node_3 = first_child(fragment);
|
|
slot(node_3, $$props, "list-prepend", {}, null);
|
|
append($$anchor3, fragment);
|
|
};
|
|
if_block(node_2, ($$render) => {
|
|
if (untrack(() => $$slots["list-prepend"])) $$render(consequent);
|
|
});
|
|
}
|
|
var node_4 = sibling(node_2, 2);
|
|
{
|
|
var consequent_1 = ($$anchor3) => {
|
|
var fragment_1 = comment();
|
|
var node_5 = first_child(fragment_1);
|
|
slot(
|
|
node_5,
|
|
$$props,
|
|
"list",
|
|
{
|
|
get filteredItems() {
|
|
return get(filteredItems);
|
|
}
|
|
},
|
|
null
|
|
);
|
|
append($$anchor3, fragment_1);
|
|
};
|
|
var consequent_2 = ($$anchor3) => {
|
|
var fragment_2 = comment();
|
|
var node_6 = first_child(fragment_2);
|
|
each(node_6, 1, () => get(filteredItems), index, ($$anchor4, item, i) => {
|
|
var div_2 = root_53();
|
|
var div_3 = child(div_2);
|
|
let classes_2;
|
|
var node_7 = child(div_3);
|
|
slot(
|
|
node_7,
|
|
$$props,
|
|
"item",
|
|
{
|
|
get item() {
|
|
return get(item);
|
|
},
|
|
index: i
|
|
},
|
|
($$anchor5) => {
|
|
var text2 = text();
|
|
template_effect(() => set_text(text2, (get(item), deep_read_state(label()), untrack(() => {
|
|
var _a5;
|
|
return (_a5 = get(item)) == null ? void 0 : _a5[label()];
|
|
}))));
|
|
append($$anchor5, text2);
|
|
}
|
|
);
|
|
reset(div_3);
|
|
action(div_3, ($$node, $$action_arg) => activeScroll == null ? void 0 : activeScroll($$node, $$action_arg), () => ({
|
|
scroll: isItemActive(get(item), value(), itemId()),
|
|
listDom: get(listDom)
|
|
}));
|
|
action(div_3, ($$node, $$action_arg) => hoverScroll == null ? void 0 : hoverScroll($$node, $$action_arg), () => ({
|
|
scroll: get(scrollToHoverItem) === i,
|
|
listDom: get(listDom)
|
|
}));
|
|
reset(div_2);
|
|
template_effect(($0) => classes_2 = set_class(div_3, 1, "item svelte-1ul7oo4", null, classes_2, $0), [
|
|
() => {
|
|
var _a5;
|
|
return {
|
|
"list-group-title": get(item).groupHeader,
|
|
active: isItemActive(get(item), value(), itemId()),
|
|
first: isItemFirst(i),
|
|
hover: hoverItemIndex() === i,
|
|
"group-item": get(item).groupItem,
|
|
"not-selectable": ((_a5 = get(item)) == null ? void 0 : _a5.selectable) === false
|
|
};
|
|
}
|
|
]);
|
|
event("mouseover", div_2, () => handleHover(i));
|
|
event("focus", div_2, () => handleHover(i));
|
|
event("click", div_2, stopPropagation(() => handleItemClick({ item: get(item), i })));
|
|
event("keydown", div_2, preventDefault(stopPropagation(function($$arg) {
|
|
bubble_event.call(this, $$props, $$arg);
|
|
})));
|
|
append($$anchor4, div_2);
|
|
});
|
|
append($$anchor3, fragment_2);
|
|
};
|
|
var consequent_3 = ($$anchor3) => {
|
|
var fragment_4 = comment();
|
|
var node_8 = first_child(fragment_4);
|
|
slot(node_8, $$props, "empty", {}, ($$anchor4) => {
|
|
var div_4 = root_82();
|
|
append($$anchor4, div_4);
|
|
});
|
|
append($$anchor3, fragment_4);
|
|
};
|
|
if_block(node_4, ($$render) => {
|
|
if (untrack(() => $$slots.list)) $$render(consequent_1);
|
|
else if (get(filteredItems), untrack(() => get(filteredItems).length > 0)) $$render(consequent_2, 1);
|
|
else if (!hideEmptyState()) $$render(consequent_3, 2);
|
|
});
|
|
}
|
|
var node_9 = sibling(node_4, 2);
|
|
{
|
|
var consequent_4 = ($$anchor3) => {
|
|
var fragment_5 = comment();
|
|
var node_10 = first_child(fragment_5);
|
|
slot(node_10, $$props, "list-append", {}, null);
|
|
append($$anchor3, fragment_5);
|
|
};
|
|
if_block(node_9, ($$render) => {
|
|
if (untrack(() => $$slots["list-append"])) $$render(consequent_4);
|
|
});
|
|
}
|
|
reset(div_1);
|
|
action(div_1, ($$node) => floatingContent == null ? void 0 : floatingContent($$node));
|
|
bind_this(div_1, ($$value) => set(list, $$value), () => get(list));
|
|
effect(() => event("scroll", div_1, handleListScroll));
|
|
effect(() => event("pointerup", div_1, preventDefault(stopPropagation(function($$arg) {
|
|
bubble_event.call(this, $$props, $$arg);
|
|
}))));
|
|
effect(() => event("mousedown", div_1, preventDefault(stopPropagation(function($$arg) {
|
|
bubble_event.call(this, $$props, $$arg);
|
|
}))));
|
|
template_effect(() => classes_1 = set_class(div_1, 1, "svelte-select-list svelte-1ul7oo4", null, classes_1, { prefloat: get(prefloat) }));
|
|
append($$anchor2, div_1);
|
|
};
|
|
if_block(node_1, ($$render) => {
|
|
if (listOpen()) $$render(consequent_5);
|
|
});
|
|
}
|
|
var span = sibling(node_1, 2);
|
|
var node_11 = child(span);
|
|
{
|
|
var consequent_6 = ($$anchor2) => {
|
|
var fragment_6 = root_102();
|
|
var span_1 = first_child(fragment_6);
|
|
var text_1 = child(span_1, true);
|
|
reset(span_1);
|
|
var span_2 = sibling(span_1, 2);
|
|
var text_2 = child(span_2, true);
|
|
reset(span_2);
|
|
template_effect(() => {
|
|
set_text(text_1, get(ariaSelection));
|
|
set_text(text_2, get(ariaContext));
|
|
});
|
|
append($$anchor2, fragment_6);
|
|
};
|
|
if_block(node_11, ($$render) => {
|
|
if (focused()) $$render(consequent_6);
|
|
});
|
|
}
|
|
reset(span);
|
|
var div_5 = sibling(span, 2);
|
|
var node_12 = child(div_5);
|
|
slot(node_12, $$props, "prepend", {}, null);
|
|
reset(div_5);
|
|
var div_6 = sibling(div_5, 2);
|
|
var node_13 = child(div_6);
|
|
{
|
|
var consequent_9 = ($$anchor2) => {
|
|
var fragment_7 = comment();
|
|
var node_14 = first_child(fragment_7);
|
|
{
|
|
var consequent_8 = ($$anchor3) => {
|
|
var fragment_8 = comment();
|
|
var node_15 = first_child(fragment_8);
|
|
each(node_15, 1, value, index, ($$anchor4, item, i) => {
|
|
var div_7 = root_132();
|
|
let classes_3;
|
|
var span_3 = child(div_7);
|
|
var node_16 = child(span_3);
|
|
slot(
|
|
node_16,
|
|
$$props,
|
|
"selection",
|
|
{
|
|
get selection() {
|
|
return get(item);
|
|
},
|
|
index: i
|
|
},
|
|
($$anchor5) => {
|
|
var text_3 = text();
|
|
template_effect(() => set_text(text_3, (get(item), deep_read_state(label()), untrack(() => get(item)[label()]))));
|
|
append($$anchor5, text_3);
|
|
}
|
|
);
|
|
reset(span_3);
|
|
var node_17 = sibling(span_3, 2);
|
|
{
|
|
var consequent_7 = ($$anchor5) => {
|
|
var div_8 = root_15();
|
|
var node_18 = child(div_8);
|
|
slot(node_18, $$props, "multi-clear-icon", {}, ($$anchor6) => {
|
|
ClearIcon($$anchor6, {});
|
|
});
|
|
reset(div_8);
|
|
event("pointerup", div_8, preventDefault(stopPropagation(() => handleMultiItemClear(i))));
|
|
append($$anchor5, div_8);
|
|
};
|
|
if_block(node_17, ($$render) => {
|
|
if (!disabled() && !multiFullItemClearable() && ClearIcon) $$render(consequent_7);
|
|
});
|
|
}
|
|
reset(div_7);
|
|
template_effect(() => classes_3 = set_class(div_7, 1, "multi-item svelte-1ul7oo4", null, classes_3, { active: get(activeValue) === i, disabled: disabled() }));
|
|
event("click", div_7, preventDefault(() => multiFullItemClearable() ? handleMultiItemClear(i) : {}));
|
|
event("keydown", div_7, preventDefault(stopPropagation(function($$arg) {
|
|
bubble_event.call(this, $$props, $$arg);
|
|
})));
|
|
append($$anchor4, div_7);
|
|
});
|
|
append($$anchor3, fragment_8);
|
|
};
|
|
var alternate = ($$anchor3) => {
|
|
var div_9 = root_17();
|
|
let classes_4;
|
|
var node_19 = child(div_9);
|
|
slot(
|
|
node_19,
|
|
$$props,
|
|
"selection",
|
|
{
|
|
get selection() {
|
|
return value();
|
|
}
|
|
},
|
|
($$anchor4) => {
|
|
var text_4 = text();
|
|
template_effect(() => set_text(text_4, (deep_read_state(value()), deep_read_state(label()), untrack(() => value()[label()]))));
|
|
append($$anchor4, text_4);
|
|
}
|
|
);
|
|
reset(div_9);
|
|
template_effect(() => classes_4 = set_class(div_9, 1, "selected-item svelte-1ul7oo4", null, classes_4, { "hide-selected-item": get(hideSelectedItem) }));
|
|
append($$anchor3, div_9);
|
|
};
|
|
if_block(node_14, ($$render) => {
|
|
if (multiple()) $$render(consequent_8);
|
|
else $$render(alternate, -1);
|
|
});
|
|
}
|
|
append($$anchor2, fragment_7);
|
|
};
|
|
if_block(node_13, ($$render) => {
|
|
if (get(hasValue)) $$render(consequent_9);
|
|
});
|
|
}
|
|
var input_1 = sibling(node_13, 2);
|
|
attribute_effect(
|
|
input_1,
|
|
() => ({
|
|
readOnly: !searchable(),
|
|
...get(_inputAttributes),
|
|
placeholder: get(placeholderText),
|
|
style: inputStyles(),
|
|
disabled: disabled()
|
|
}),
|
|
void 0,
|
|
void 0,
|
|
void 0,
|
|
"svelte-1ul7oo4",
|
|
true
|
|
);
|
|
bind_this(input_1, ($$value) => input($$value), () => input());
|
|
reset(div_6);
|
|
var div_10 = sibling(div_6, 2);
|
|
var node_20 = child(div_10);
|
|
{
|
|
var consequent_10 = ($$anchor2) => {
|
|
var div_11 = root_19();
|
|
var node_21 = child(div_11);
|
|
slot(node_21, $$props, "loading-icon", {}, ($$anchor3) => {
|
|
LoadingIcon($$anchor3, {});
|
|
});
|
|
reset(div_11);
|
|
append($$anchor2, div_11);
|
|
};
|
|
if_block(node_20, ($$render) => {
|
|
if (loading()) $$render(consequent_10);
|
|
});
|
|
}
|
|
var node_22 = sibling(node_20, 2);
|
|
{
|
|
var consequent_11 = ($$anchor2) => {
|
|
var button = root_21();
|
|
var node_23 = child(button);
|
|
slot(node_23, $$props, "clear-icon", {}, ($$anchor3) => {
|
|
ClearIcon($$anchor3, {});
|
|
});
|
|
reset(button);
|
|
event("click", button, handleClear);
|
|
append($$anchor2, button);
|
|
};
|
|
if_block(node_22, ($$render) => {
|
|
if (get(showClear)) $$render(consequent_11);
|
|
});
|
|
}
|
|
var node_24 = sibling(node_22, 2);
|
|
{
|
|
var consequent_12 = ($$anchor2) => {
|
|
var div_12 = root_23();
|
|
var node_25 = child(div_12);
|
|
slot(
|
|
node_25,
|
|
$$props,
|
|
"chevron-icon",
|
|
{
|
|
get listOpen() {
|
|
return listOpen();
|
|
}
|
|
},
|
|
($$anchor3) => {
|
|
ChevronIcon($$anchor3, {});
|
|
}
|
|
);
|
|
reset(div_12);
|
|
append($$anchor2, div_12);
|
|
};
|
|
if_block(node_24, ($$render) => {
|
|
if (showChevron()) $$render(consequent_12);
|
|
});
|
|
}
|
|
reset(div_10);
|
|
var node_26 = sibling(div_10, 2);
|
|
slot(
|
|
node_26,
|
|
$$props,
|
|
"input-hidden",
|
|
{
|
|
get value() {
|
|
return value();
|
|
}
|
|
},
|
|
($$anchor2) => {
|
|
var input_2 = root_25();
|
|
remove_input_defaults(input_2);
|
|
template_effect(
|
|
($0) => {
|
|
set_attribute2(input_2, "name", name());
|
|
set_value(input_2, $0);
|
|
},
|
|
[
|
|
() => (deep_read_state(value()), untrack(() => value() ? JSON.stringify(value()) : null))
|
|
]
|
|
);
|
|
append($$anchor2, input_2);
|
|
}
|
|
);
|
|
var node_27 = sibling(node_26, 2);
|
|
{
|
|
var consequent_13 = ($$anchor2) => {
|
|
var fragment_15 = comment();
|
|
var node_28 = first_child(fragment_15);
|
|
slot(
|
|
node_28,
|
|
$$props,
|
|
"required",
|
|
{
|
|
get value() {
|
|
return value();
|
|
}
|
|
},
|
|
($$anchor3) => {
|
|
var select = root_27();
|
|
append($$anchor3, select);
|
|
}
|
|
);
|
|
append($$anchor2, fragment_15);
|
|
};
|
|
if_block(node_27, ($$render) => {
|
|
if (deep_read_state(required()), deep_read_state(value()), untrack(() => required() && (!value() || value().length === 0))) $$render(consequent_13);
|
|
});
|
|
}
|
|
reset(div);
|
|
effect(() => event("pointerup", div, preventDefault(handleClick)));
|
|
bind_this(div, ($$value) => container($$value), () => container());
|
|
action(div, ($$node) => floatingRef == null ? void 0 : floatingRef($$node));
|
|
template_effect(() => {
|
|
var _a5;
|
|
classes = set_class(div, 1, `svelte-select ${(_a5 = containerClasses()) != null ? _a5 : ""}`, "svelte-1ul7oo4", classes, {
|
|
multi: multiple(),
|
|
disabled: disabled(),
|
|
focused: focused(),
|
|
"list-open": listOpen(),
|
|
"show-chevron": showChevron(),
|
|
error: hasError()
|
|
});
|
|
set_style(div, containerStyles());
|
|
});
|
|
event("keydown", input_1, handleKeyDown);
|
|
event("blur", input_1, handleBlur);
|
|
event("focus", input_1, handleFocus);
|
|
bind_value(input_1, filterText);
|
|
append($$anchor, div);
|
|
bind_prop($$props, "getFilteredItems", getFilteredItems);
|
|
bind_prop($$props, "handleClear", handleClear);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/components/select/selection.ts
|
|
function toValidSelectedOptions(selected, availableValues) {
|
|
if (!Array.isArray(selected)) {
|
|
return [];
|
|
}
|
|
const validSelections = [];
|
|
for (const entry of selected) {
|
|
if (typeof entry === "object" && entry !== null && "label" in entry && "value" in entry) {
|
|
const label = entry.label;
|
|
const value = entry.value;
|
|
if (typeof label === "string" && typeof value === "string" && availableValues.has(value)) {
|
|
validSelections.push(entry);
|
|
}
|
|
}
|
|
}
|
|
return validSelections;
|
|
}
|
|
|
|
// src/ui/components/select/base_select.svelte
|
|
var root_24 = from_html(`<button class="delete-btn svelte-vdzxvu">\xD7</button>`);
|
|
var root_14 = from_html(`<li class="svelte-vdzxvu"><!> <button> </button></li>`);
|
|
var root8 = from_html(`<div><label class="svelte-vdzxvu"> </label> <div class="saved-filters svelte-vdzxvu"><details class="svelte-vdzxvu"><summary class="svelte-vdzxvu">Saved filters</summary> <ul role="list" class="svelte-vdzxvu"></ul></details></div> <div class="select-wrapper"><svelte-css-wrapper style="display: contents"><!></svelte-css-wrapper></div> <div class="filter-actions svelte-vdzxvu"><button class="filter-action-btn save-btn svelte-vdzxvu" aria-label="Save filter">Save</button> <button class="filter-action-btn clear-btn svelte-vdzxvu" aria-label="Clear filter">Clear</button></div></div>`);
|
|
var $$css9 = {
|
|
hash: "svelte-vdzxvu",
|
|
code: "label.svelte-vdzxvu {display:inline-block;margin-bottom:var(--size-4-1);font-weight:600;}.saved-filters.svelte-vdzxvu {margin-top:var(--size-4-1);font-size:var(--font-ui-small);align-self:flex-start;}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) summary:where(.svelte-vdzxvu) {cursor:pointer;color:var(--text-muted);padding:var(--size-2-1) 0;user-select:none;transition:color 0.15s ease;}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) summary:where(.svelte-vdzxvu):hover {color:var(--text-normal);}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) {margin:0;padding:0;list-style:none;}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) {margin:0;display:flex;align-items:center;gap:var(--size-2-1);}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) button:where(.svelte-vdzxvu) {text-align:left;padding:var(--size-2-1) var(--size-2-2);background:transparent;border:none;cursor:pointer;color:var(--text-normal);border-radius:var(--radius-s);white-space:nowrap;transition:background 0.15s ease, color 0.15s ease;}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) button:where(.svelte-vdzxvu):hover {background:var(--background-modifier-hover);}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) button.active:where(.svelte-vdzxvu) {font-weight:700;color:var(--interactive-accent);}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) button.delete-btn:where(.svelte-vdzxvu) {padding:0;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:18px;line-height:1;color:var(--text-muted);}.saved-filters.svelte-vdzxvu details:where(.svelte-vdzxvu) ul:where(.svelte-vdzxvu) li:where(.svelte-vdzxvu) button.delete-btn:where(.svelte-vdzxvu):hover {color:var(--color-red);background:var(--background-modifier-error-hover);}.filter-actions.svelte-vdzxvu {display:flex;gap:var(--size-4-2);margin-top:var(--size-4-2);}.filter-action-btn.svelte-vdzxvu {padding:var(--size-2-2) var(--size-4-3);border-radius:var(--radius-s);cursor:pointer;font-size:var(--font-ui-small);transition:background 150ms ease, opacity 150ms ease;}.filter-action-btn.save-btn.svelte-vdzxvu {background:var(--interactive-accent);color:var(--text-on-accent);border:none;}.filter-action-btn.save-btn.svelte-vdzxvu:hover:not(:disabled) {background:var(--interactive-accent-hover);}.filter-action-btn.clear-btn.svelte-vdzxvu {background:transparent;color:var(--text-muted);border:1px solid var(--background-modifier-border);}.filter-action-btn.clear-btn.svelte-vdzxvu:hover:not(:disabled) {background:var(--background-modifier-hover);}.filter-action-btn.svelte-vdzxvu:disabled {opacity:0.5;cursor:not-allowed;}.svelte-select button > svg,\n.svelte-select .multi-item-clear > svg {cursor:pointer;}.svelte-select .multi-item {border:var(--border-width) solid var(--pill-border-color) !important;outline:none !important;}.svelte-select .svelte-select-list {z-index:5;}.svelte-select .clear-select {display:none !important;}.svelte-select.focused {transition:box-shadow 150ms ease;}.svelte-select input:focus-visible {outline:none;}"
|
|
};
|
|
function Base_select($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Base_select, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css9);
|
|
const fieldName = mutable_source();
|
|
const availableValues = mutable_source();
|
|
const selectedItemsFromValue = mutable_source();
|
|
const savedFilterOptions = mutable_source();
|
|
let label = prop($$props, "label", 12);
|
|
let items = prop($$props, "items", 12);
|
|
let value = prop($$props, "value", 12);
|
|
let savedFilters = prop($$props, "savedFilters", 28, () => []);
|
|
let loadSavedFilter = prop($$props, "loadSavedFilter", 12, void 0);
|
|
let addButtonDisabled = prop($$props, "addButtonDisabled", 12, false);
|
|
let onAddClick = prop($$props, "onAddClick", 12, void 0);
|
|
let clearButtonDisabled = prop($$props, "clearButtonDisabled", 12, false);
|
|
let onClearClick = prop($$props, "onClearClick", 12, void 0);
|
|
let activeFilterId = prop($$props, "activeFilterId", 12, void 0);
|
|
let onDeleteClick = prop($$props, "onDeleteClick", 12, void 0);
|
|
let selectedItems = mutable_source(items().filter((item) => value().includes(item.value)));
|
|
function clearSelection() {
|
|
set(selectedItems, []);
|
|
value([]);
|
|
}
|
|
async function handleSavedFilterSelect(option) {
|
|
if (loadSavedFilter()) {
|
|
loadSavedFilter()(option.filter);
|
|
await tick();
|
|
set(selectedItems, items().filter((item) => value().includes(item.value)));
|
|
}
|
|
}
|
|
function handleSelectInput(event2) {
|
|
set(selectedItems, toValidSelectedOptions(event2.detail, get(availableValues)));
|
|
value(get(selectedItems).map((option) => option.value));
|
|
}
|
|
legacy_pre_effect(() => deep_read_state(label()), () => {
|
|
set(fieldName, `field=${label()}`);
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(items()), () => {
|
|
set(availableValues, new Set(items().map((item) => item.value)));
|
|
});
|
|
legacy_pre_effect(() => (deep_read_state(items()), deep_read_state(value())), () => {
|
|
set(selectedItemsFromValue, items().filter((item) => value().includes(item.value)));
|
|
});
|
|
legacy_pre_effect(() => (get(selectedItems), get(selectedItemsFromValue)), () => {
|
|
const currentValues = get(selectedItems).map((item) => item.value).sort().join(",");
|
|
const nextValues = get(selectedItemsFromValue).map((item) => item.value).sort().join(",");
|
|
if (currentValues !== nextValues) {
|
|
set(selectedItems, get(selectedItemsFromValue));
|
|
}
|
|
});
|
|
legacy_pre_effect(() => deep_read_state(savedFilters()), () => {
|
|
set(savedFilterOptions, savedFilters().map((filter2) => {
|
|
const displayText = filter2.tag ? filter2.tag.tags.join(", ") : "";
|
|
return { filter: filter2, displayText };
|
|
}));
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
clearSelection,
|
|
get label() {
|
|
return label();
|
|
},
|
|
set label($$value) {
|
|
label($$value);
|
|
flushSync();
|
|
},
|
|
get items() {
|
|
return items();
|
|
},
|
|
set items($$value) {
|
|
items($$value);
|
|
flushSync();
|
|
},
|
|
get value() {
|
|
return value();
|
|
},
|
|
set value($$value) {
|
|
value($$value);
|
|
flushSync();
|
|
},
|
|
get savedFilters() {
|
|
return savedFilters();
|
|
},
|
|
set savedFilters($$value) {
|
|
savedFilters($$value);
|
|
flushSync();
|
|
},
|
|
get loadSavedFilter() {
|
|
return loadSavedFilter();
|
|
},
|
|
set loadSavedFilter($$value) {
|
|
loadSavedFilter($$value);
|
|
flushSync();
|
|
},
|
|
get addButtonDisabled() {
|
|
return addButtonDisabled();
|
|
},
|
|
set addButtonDisabled($$value) {
|
|
addButtonDisabled($$value);
|
|
flushSync();
|
|
},
|
|
get onAddClick() {
|
|
return onAddClick();
|
|
},
|
|
set onAddClick($$value) {
|
|
onAddClick($$value);
|
|
flushSync();
|
|
},
|
|
get clearButtonDisabled() {
|
|
return clearButtonDisabled();
|
|
},
|
|
set clearButtonDisabled($$value) {
|
|
clearButtonDisabled($$value);
|
|
flushSync();
|
|
},
|
|
get onClearClick() {
|
|
return onClearClick();
|
|
},
|
|
set onClearClick($$value) {
|
|
onClearClick($$value);
|
|
flushSync();
|
|
},
|
|
get activeFilterId() {
|
|
return activeFilterId();
|
|
},
|
|
set activeFilterId($$value) {
|
|
activeFilterId($$value);
|
|
flushSync();
|
|
},
|
|
get onDeleteClick() {
|
|
return onDeleteClick();
|
|
},
|
|
set onDeleteClick($$value) {
|
|
onDeleteClick($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var div = root8();
|
|
var label_1 = child(div);
|
|
var text2 = child(label_1);
|
|
reset(label_1);
|
|
var div_1 = sibling(label_1, 2);
|
|
var details = child(div_1);
|
|
var ul = sibling(child(details), 2);
|
|
each(ul, 5, () => get(savedFilterOptions), index, ($$anchor2, option) => {
|
|
var li = root_14();
|
|
var node = child(li);
|
|
{
|
|
var consequent = ($$anchor3) => {
|
|
var button = root_24();
|
|
template_effect(() => {
|
|
var _a5;
|
|
return set_attribute2(button, "aria-label", `Delete filter: ${(_a5 = (get(option), untrack(() => get(option).displayText))) != null ? _a5 : ""}`);
|
|
});
|
|
event("click", button, () => {
|
|
var _a5;
|
|
return (_a5 = onDeleteClick()) == null ? void 0 : _a5(get(option).filter.id, get(option).displayText);
|
|
});
|
|
append($$anchor3, button);
|
|
};
|
|
if_block(node, ($$render) => {
|
|
if (onDeleteClick()) $$render(consequent);
|
|
});
|
|
}
|
|
var button_1 = sibling(node, 2);
|
|
let classes;
|
|
var text_1 = child(button_1, true);
|
|
reset(button_1);
|
|
reset(li);
|
|
template_effect(() => {
|
|
var _a5;
|
|
set_attribute2(button_1, "aria-label", `Load saved filter: ${(_a5 = (get(option), untrack(() => get(option).displayText))) != null ? _a5 : ""}`);
|
|
set_attribute2(button_1, "aria-pressed", (get(option), deep_read_state(activeFilterId()), untrack(() => get(option).filter.id === activeFilterId())));
|
|
classes = set_class(button_1, 1, "svelte-vdzxvu", null, classes, { active: get(option).filter.id === activeFilterId() });
|
|
set_text(text_1, (get(option), untrack(() => get(option).displayText)));
|
|
});
|
|
event("click", button_1, () => handleSavedFilterSelect(get(option)));
|
|
append($$anchor2, li);
|
|
});
|
|
reset(ul);
|
|
reset(details);
|
|
reset(div_1);
|
|
var div_2 = sibling(div_1, 2);
|
|
var node_1 = child(div_2);
|
|
{
|
|
css_props(node_1, () => ({
|
|
"--background": "var(--background-primary)",
|
|
"--border": "var(--border-width) solid var(--background-modifier-border)",
|
|
"--border-focused": "var(--border-width) solid var(--background-modifier-border-focus)",
|
|
"--border-hover": "var(--border-width) solid var(--background-modifier-border-hover)",
|
|
"--border-radius": "var(--input-radius)",
|
|
"--item-hover-bg": "var(--background-modifier-hover)",
|
|
"--list-background": "var(--background-primary)",
|
|
"--list-border": "var(--border-width) solid var(--background-modifier-border)",
|
|
"--multi-item-bg": "var(--pill-background)",
|
|
"--multi-item-clear-icon-color": "var(--pill-color)",
|
|
"--multi-item-color": "var(--pill-color)",
|
|
"--multi-item-height": "auto",
|
|
"--multi-item-outline": "var(--border-width) solid var(--pill-border-color)",
|
|
"--multi-item-padding": "var(--pill-padding-y) var(--pill-padding-x)",
|
|
"--multi-select-input-padding": "var(--size-4-2)",
|
|
"--multi-select-input-margin": "var(--size-2-2) var(--size-4-4) var(--size-2-2) var(--size-2-2)",
|
|
"--input-color": "var(--text-normal)",
|
|
"--placeholder-color": "var(--text-muted)"
|
|
}));
|
|
Select(node_1.lastChild, {
|
|
get name() {
|
|
return get(fieldName);
|
|
},
|
|
multiple: true,
|
|
closeListOnChange: false,
|
|
listAutoWidth: true,
|
|
placeholder: "",
|
|
get items() {
|
|
return items();
|
|
},
|
|
get value() {
|
|
return get(selectedItems);
|
|
},
|
|
$$events: { input: handleSelectInput }
|
|
});
|
|
reset(node_1);
|
|
}
|
|
reset(div_2);
|
|
var div_3 = sibling(div_2, 2);
|
|
var button_2 = child(div_3);
|
|
var button_3 = sibling(button_2, 2);
|
|
reset(div_3);
|
|
reset(div);
|
|
template_effect(() => {
|
|
var _a5;
|
|
set_attribute2(label_1, "for", get(fieldName));
|
|
set_text(text2, `${(_a5 = label()) != null ? _a5 : ""}:`);
|
|
button_2.disabled = addButtonDisabled();
|
|
button_3.disabled = clearButtonDisabled();
|
|
});
|
|
event("click", button_2, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onAddClick()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
event("click", button_3, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onClearClick()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
append($$anchor, div);
|
|
bind_prop($$props, "clearSelection", clearSelection);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/components/select/select_tag.svelte
|
|
function Select_tag($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Select_tag, ...$$anchor });
|
|
push($$props, false);
|
|
let tags = prop($$props, "tags", 12);
|
|
let value = prop($$props, "value", 12);
|
|
let savedFilters = prop($$props, "savedFilters", 28, () => []);
|
|
let onLoadFilter = prop($$props, "onLoadFilter", 12, void 0);
|
|
let addButtonDisabled = prop($$props, "addButtonDisabled", 12, false);
|
|
let onAddClick = prop($$props, "onAddClick", 12, void 0);
|
|
let clearButtonDisabled = prop($$props, "clearButtonDisabled", 12, false);
|
|
let onClearClick = prop($$props, "onClearClick", 12, void 0);
|
|
let activeFilterId = prop($$props, "activeFilterId", 12, void 0);
|
|
let onDeleteClick = prop($$props, "onDeleteClick", 12, void 0);
|
|
let baseSelectRef = mutable_source();
|
|
function loadSavedFilter(filter2) {
|
|
var _a5, _b3;
|
|
if (filter2.tag) {
|
|
if (activeFilterId() === filter2.id) {
|
|
(_a5 = get(baseSelectRef)) == null ? void 0 : _a5.clearSelection();
|
|
} else {
|
|
value([...filter2.tag.tags]);
|
|
}
|
|
(_b3 = onLoadFilter()) == null ? void 0 : _b3(filter2.id);
|
|
}
|
|
}
|
|
function handleClear() {
|
|
var _a5, _b3;
|
|
(_a5 = get(baseSelectRef)) == null ? void 0 : _a5.clearSelection();
|
|
(_b3 = onClearClick()) == null ? void 0 : _b3();
|
|
}
|
|
var $$exports = {
|
|
get tags() {
|
|
return tags();
|
|
},
|
|
set tags($$value) {
|
|
tags($$value);
|
|
flushSync();
|
|
},
|
|
get value() {
|
|
return value();
|
|
},
|
|
set value($$value) {
|
|
value($$value);
|
|
flushSync();
|
|
},
|
|
get savedFilters() {
|
|
return savedFilters();
|
|
},
|
|
set savedFilters($$value) {
|
|
savedFilters($$value);
|
|
flushSync();
|
|
},
|
|
get onLoadFilter() {
|
|
return onLoadFilter();
|
|
},
|
|
set onLoadFilter($$value) {
|
|
onLoadFilter($$value);
|
|
flushSync();
|
|
},
|
|
get addButtonDisabled() {
|
|
return addButtonDisabled();
|
|
},
|
|
set addButtonDisabled($$value) {
|
|
addButtonDisabled($$value);
|
|
flushSync();
|
|
},
|
|
get onAddClick() {
|
|
return onAddClick();
|
|
},
|
|
set onAddClick($$value) {
|
|
onAddClick($$value);
|
|
flushSync();
|
|
},
|
|
get clearButtonDisabled() {
|
|
return clearButtonDisabled();
|
|
},
|
|
set clearButtonDisabled($$value) {
|
|
clearButtonDisabled($$value);
|
|
flushSync();
|
|
},
|
|
get onClearClick() {
|
|
return onClearClick();
|
|
},
|
|
set onClearClick($$value) {
|
|
onClearClick($$value);
|
|
flushSync();
|
|
},
|
|
get activeFilterId() {
|
|
return activeFilterId();
|
|
},
|
|
set activeFilterId($$value) {
|
|
activeFilterId($$value);
|
|
flushSync();
|
|
},
|
|
get onDeleteClick() {
|
|
return onDeleteClick();
|
|
},
|
|
set onDeleteClick($$value) {
|
|
onDeleteClick($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
{
|
|
let $0 = derived_safe_equal(() => (deep_read_state(tags()), untrack(() => tags().map((tag2) => ({ label: tag2, value: tag2 })))));
|
|
bind_this(
|
|
Base_select($$anchor, {
|
|
get items() {
|
|
return get($0);
|
|
},
|
|
label: "Filter by tag",
|
|
get savedFilters() {
|
|
return savedFilters();
|
|
},
|
|
loadSavedFilter,
|
|
get addButtonDisabled() {
|
|
return addButtonDisabled();
|
|
},
|
|
get onAddClick() {
|
|
return onAddClick();
|
|
},
|
|
get clearButtonDisabled() {
|
|
return clearButtonDisabled();
|
|
},
|
|
onClearClick: handleClear,
|
|
get activeFilterId() {
|
|
return activeFilterId();
|
|
},
|
|
get onDeleteClick() {
|
|
return onDeleteClick();
|
|
},
|
|
get value() {
|
|
return value();
|
|
},
|
|
set value($$value) {
|
|
value($$value);
|
|
},
|
|
$$legacy: true
|
|
}),
|
|
($$value) => set(baseSelectRef, $$value),
|
|
() => get(baseSelectRef)
|
|
);
|
|
}
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/components/delete_filter_modal.svelte
|
|
var root9 = from_html(`<div class="modal-backdrop svelte-z61jvf" role="presentation"><div class="modal svelte-z61jvf" role="dialog" aria-modal="true" aria-labelledby="modal-title"><h3 id="modal-title" class="svelte-z61jvf">Delete saved filter?</h3> <div class="filter-preview svelte-z61jvf"> </div> <div class="modal-actions svelte-z61jvf"><button class="cancel-btn svelte-z61jvf">Cancel</button> <button class="delete-btn svelte-z61jvf">Delete</button></div></div></div>`);
|
|
var $$css10 = {
|
|
hash: "svelte-z61jvf",
|
|
code: ".modal-backdrop.svelte-z61jvf {position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0, 0, 0, 0.5);display:flex;align-items:flex-start;justify-content:center;padding-top:20vh;z-index:1000;}.modal.svelte-z61jvf {background:var(--background-primary);border:1px solid var(--background-modifier-border);border-radius:var(--radius-m);padding:var(--size-4-4);min-width:300px;max-width:500px;box-shadow:var(--shadow-l);pointer-events:auto;}h3.svelte-z61jvf {margin:0 0 var(--size-4-3) 0;font-size:var(--font-ui-medium);font-weight:var(--font-semibold);}.filter-preview.svelte-z61jvf {padding:var(--size-4-2);background:var(--background-secondary);border-radius:var(--radius-s);margin-bottom:var(--size-4-4);font-family:var(--font-monospace);font-size:var(--font-ui-small);}.modal-actions.svelte-z61jvf {display:flex;gap:var(--size-4-2);justify-content:flex-end;}button.svelte-z61jvf {padding:var(--size-4-1) var(--size-4-3);border-radius:var(--radius-s);cursor:pointer;font-size:var(--font-ui-small);transition:background 100ms linear;}.cancel-btn.svelte-z61jvf {background:var(--background-secondary);border:1px solid var(--background-modifier-border);color:var(--text-normal);}.cancel-btn.svelte-z61jvf:hover {background:var(--background-secondary-alt);}.delete-btn.svelte-z61jvf {background:var(--color-red);border:none;color:white;}.delete-btn.svelte-z61jvf:hover {background:var(--color-red);opacity:0.8;}"
|
|
};
|
|
function Delete_filter_modal($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Delete_filter_modal, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css10);
|
|
let filterText = prop($$props, "filterText", 12);
|
|
let onConfirm = prop($$props, "onConfirm", 12);
|
|
let onCancel = prop($$props, "onCancel", 12);
|
|
let modalElement = mutable_source();
|
|
let deleteButton = mutable_source();
|
|
function handleKeydown(event2) {
|
|
if (event2.key === "Escape") {
|
|
onCancel()();
|
|
}
|
|
}
|
|
onMount(() => {
|
|
var _a5;
|
|
(_a5 = get(deleteButton)) == null ? void 0 : _a5.focus();
|
|
const focusableElements = get(modalElement).querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
|
|
const firstElement = focusableElements[0];
|
|
const lastElement = focusableElements[focusableElements.length - 1];
|
|
const handleTabKey = (e) => {
|
|
if (e.key === "Tab") {
|
|
if (e.shiftKey && document.activeElement === firstElement) {
|
|
e.preventDefault();
|
|
lastElement == null ? void 0 : lastElement.focus();
|
|
} else if (!e.shiftKey && document.activeElement === lastElement) {
|
|
e.preventDefault();
|
|
firstElement == null ? void 0 : firstElement.focus();
|
|
}
|
|
}
|
|
};
|
|
get(modalElement).addEventListener("keydown", handleTabKey);
|
|
return () => get(modalElement).removeEventListener("keydown", handleTabKey);
|
|
});
|
|
var $$exports = {
|
|
get filterText() {
|
|
return filterText();
|
|
},
|
|
set filterText($$value) {
|
|
filterText($$value);
|
|
flushSync();
|
|
},
|
|
get onConfirm() {
|
|
return onConfirm();
|
|
},
|
|
set onConfirm($$value) {
|
|
onConfirm($$value);
|
|
flushSync();
|
|
},
|
|
get onCancel() {
|
|
return onCancel();
|
|
},
|
|
set onCancel($$value) {
|
|
onCancel($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var div = root9();
|
|
event("keydown", $window, handleKeydown);
|
|
var div_1 = child(div);
|
|
var div_2 = sibling(child(div_1), 2);
|
|
var text2 = child(div_2, true);
|
|
reset(div_2);
|
|
var div_3 = sibling(div_2, 2);
|
|
var button = child(div_3);
|
|
var button_1 = sibling(button, 2);
|
|
bind_this(button_1, ($$value) => set(deleteButton, $$value), () => get(deleteButton));
|
|
reset(div_3);
|
|
reset(div_1);
|
|
bind_this(div_1, ($$value) => set(modalElement, $$value), () => get(modalElement));
|
|
reset(div);
|
|
template_effect(() => set_text(text2, filterText()));
|
|
event("click", button, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onCancel()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
event("click", button_1, function(...$$args) {
|
|
var _a5;
|
|
(_a5 = onConfirm()) == null ? void 0 : _a5.apply(this, $$args);
|
|
});
|
|
event("click", div, (e) => e.target === e.currentTarget && onCancel()());
|
|
append($$anchor, div);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// node_modules/zod/lib/index.mjs
|
|
var util;
|
|
(function(util2) {
|
|
util2.assertEqual = (val) => val;
|
|
function assertIs(_arg) {
|
|
}
|
|
util2.assertIs = assertIs;
|
|
function assertNever(_x) {
|
|
throw new Error();
|
|
}
|
|
util2.assertNever = assertNever;
|
|
util2.arrayToEnum = (items) => {
|
|
const obj = {};
|
|
for (const item of items) {
|
|
obj[item] = item;
|
|
}
|
|
return obj;
|
|
};
|
|
util2.getValidEnumValues = (obj) => {
|
|
const validKeys = util2.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== "number");
|
|
const filtered = {};
|
|
for (const k of validKeys) {
|
|
filtered[k] = obj[k];
|
|
}
|
|
return util2.objectValues(filtered);
|
|
};
|
|
util2.objectValues = (obj) => {
|
|
return util2.objectKeys(obj).map(function(e) {
|
|
return obj[e];
|
|
});
|
|
};
|
|
util2.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object) => {
|
|
const keys = [];
|
|
for (const key2 in object) {
|
|
if (Object.prototype.hasOwnProperty.call(object, key2)) {
|
|
keys.push(key2);
|
|
}
|
|
}
|
|
return keys;
|
|
};
|
|
util2.find = (arr, checker) => {
|
|
for (const item of arr) {
|
|
if (checker(item))
|
|
return item;
|
|
}
|
|
return void 0;
|
|
};
|
|
util2.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && isFinite(val) && Math.floor(val) === val;
|
|
function joinValues(array, separator = " | ") {
|
|
return array.map((val) => typeof val === "string" ? `'${val}'` : val).join(separator);
|
|
}
|
|
util2.joinValues = joinValues;
|
|
util2.jsonStringifyReplacer = (_, value) => {
|
|
if (typeof value === "bigint") {
|
|
return value.toString();
|
|
}
|
|
return value;
|
|
};
|
|
})(util || (util = {}));
|
|
var objectUtil;
|
|
(function(objectUtil2) {
|
|
objectUtil2.mergeShapes = (first, second) => {
|
|
return {
|
|
...first,
|
|
...second
|
|
// second overwrites first
|
|
};
|
|
};
|
|
})(objectUtil || (objectUtil = {}));
|
|
var ZodParsedType = util.arrayToEnum([
|
|
"string",
|
|
"nan",
|
|
"number",
|
|
"integer",
|
|
"float",
|
|
"boolean",
|
|
"date",
|
|
"bigint",
|
|
"symbol",
|
|
"function",
|
|
"undefined",
|
|
"null",
|
|
"array",
|
|
"object",
|
|
"unknown",
|
|
"promise",
|
|
"void",
|
|
"never",
|
|
"map",
|
|
"set"
|
|
]);
|
|
var getParsedType = (data) => {
|
|
const t = typeof data;
|
|
switch (t) {
|
|
case "undefined":
|
|
return ZodParsedType.undefined;
|
|
case "string":
|
|
return ZodParsedType.string;
|
|
case "number":
|
|
return isNaN(data) ? ZodParsedType.nan : ZodParsedType.number;
|
|
case "boolean":
|
|
return ZodParsedType.boolean;
|
|
case "function":
|
|
return ZodParsedType.function;
|
|
case "bigint":
|
|
return ZodParsedType.bigint;
|
|
case "symbol":
|
|
return ZodParsedType.symbol;
|
|
case "object":
|
|
if (Array.isArray(data)) {
|
|
return ZodParsedType.array;
|
|
}
|
|
if (data === null) {
|
|
return ZodParsedType.null;
|
|
}
|
|
if (data.then && typeof data.then === "function" && data.catch && typeof data.catch === "function") {
|
|
return ZodParsedType.promise;
|
|
}
|
|
if (typeof Map !== "undefined" && data instanceof Map) {
|
|
return ZodParsedType.map;
|
|
}
|
|
if (typeof Set !== "undefined" && data instanceof Set) {
|
|
return ZodParsedType.set;
|
|
}
|
|
if (typeof Date !== "undefined" && data instanceof Date) {
|
|
return ZodParsedType.date;
|
|
}
|
|
return ZodParsedType.object;
|
|
default:
|
|
return ZodParsedType.unknown;
|
|
}
|
|
};
|
|
var ZodIssueCode = util.arrayToEnum([
|
|
"invalid_type",
|
|
"invalid_literal",
|
|
"custom",
|
|
"invalid_union",
|
|
"invalid_union_discriminator",
|
|
"invalid_enum_value",
|
|
"unrecognized_keys",
|
|
"invalid_arguments",
|
|
"invalid_return_type",
|
|
"invalid_date",
|
|
"invalid_string",
|
|
"too_small",
|
|
"too_big",
|
|
"invalid_intersection_types",
|
|
"not_multiple_of",
|
|
"not_finite"
|
|
]);
|
|
var quotelessJson = (obj) => {
|
|
const json = JSON.stringify(obj, null, 2);
|
|
return json.replace(/"([^"]+)":/g, "$1:");
|
|
};
|
|
var ZodError = class _ZodError extends Error {
|
|
constructor(issues) {
|
|
super();
|
|
this.issues = [];
|
|
this.addIssue = (sub) => {
|
|
this.issues = [...this.issues, sub];
|
|
};
|
|
this.addIssues = (subs = []) => {
|
|
this.issues = [...this.issues, ...subs];
|
|
};
|
|
const actualProto = new.target.prototype;
|
|
if (Object.setPrototypeOf) {
|
|
Object.setPrototypeOf(this, actualProto);
|
|
} else {
|
|
this.__proto__ = actualProto;
|
|
}
|
|
this.name = "ZodError";
|
|
this.issues = issues;
|
|
}
|
|
get errors() {
|
|
return this.issues;
|
|
}
|
|
format(_mapper) {
|
|
const mapper = _mapper || function(issue) {
|
|
return issue.message;
|
|
};
|
|
const fieldErrors = { _errors: [] };
|
|
const processError = (error) => {
|
|
for (const issue of error.issues) {
|
|
if (issue.code === "invalid_union") {
|
|
issue.unionErrors.map(processError);
|
|
} else if (issue.code === "invalid_return_type") {
|
|
processError(issue.returnTypeError);
|
|
} else if (issue.code === "invalid_arguments") {
|
|
processError(issue.argumentsError);
|
|
} else if (issue.path.length === 0) {
|
|
fieldErrors._errors.push(mapper(issue));
|
|
} else {
|
|
let curr = fieldErrors;
|
|
let i = 0;
|
|
while (i < issue.path.length) {
|
|
const el = issue.path[i];
|
|
const terminal = i === issue.path.length - 1;
|
|
if (!terminal) {
|
|
curr[el] = curr[el] || { _errors: [] };
|
|
} else {
|
|
curr[el] = curr[el] || { _errors: [] };
|
|
curr[el]._errors.push(mapper(issue));
|
|
}
|
|
curr = curr[el];
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
processError(this);
|
|
return fieldErrors;
|
|
}
|
|
static assert(value) {
|
|
if (!(value instanceof _ZodError)) {
|
|
throw new Error(`Not a ZodError: ${value}`);
|
|
}
|
|
}
|
|
toString() {
|
|
return this.message;
|
|
}
|
|
get message() {
|
|
return JSON.stringify(this.issues, util.jsonStringifyReplacer, 2);
|
|
}
|
|
get isEmpty() {
|
|
return this.issues.length === 0;
|
|
}
|
|
flatten(mapper = (issue) => issue.message) {
|
|
const fieldErrors = {};
|
|
const formErrors = [];
|
|
for (const sub of this.issues) {
|
|
if (sub.path.length > 0) {
|
|
fieldErrors[sub.path[0]] = fieldErrors[sub.path[0]] || [];
|
|
fieldErrors[sub.path[0]].push(mapper(sub));
|
|
} else {
|
|
formErrors.push(mapper(sub));
|
|
}
|
|
}
|
|
return { formErrors, fieldErrors };
|
|
}
|
|
get formErrors() {
|
|
return this.flatten();
|
|
}
|
|
};
|
|
ZodError.create = (issues) => {
|
|
const error = new ZodError(issues);
|
|
return error;
|
|
};
|
|
var errorMap = (issue, _ctx) => {
|
|
let message;
|
|
switch (issue.code) {
|
|
case ZodIssueCode.invalid_type:
|
|
if (issue.received === ZodParsedType.undefined) {
|
|
message = "Required";
|
|
} else {
|
|
message = `Expected ${issue.expected}, received ${issue.received}`;
|
|
}
|
|
break;
|
|
case ZodIssueCode.invalid_literal:
|
|
message = `Invalid literal value, expected ${JSON.stringify(issue.expected, util.jsonStringifyReplacer)}`;
|
|
break;
|
|
case ZodIssueCode.unrecognized_keys:
|
|
message = `Unrecognized key(s) in object: ${util.joinValues(issue.keys, ", ")}`;
|
|
break;
|
|
case ZodIssueCode.invalid_union:
|
|
message = `Invalid input`;
|
|
break;
|
|
case ZodIssueCode.invalid_union_discriminator:
|
|
message = `Invalid discriminator value. Expected ${util.joinValues(issue.options)}`;
|
|
break;
|
|
case ZodIssueCode.invalid_enum_value:
|
|
message = `Invalid enum value. Expected ${util.joinValues(issue.options)}, received '${issue.received}'`;
|
|
break;
|
|
case ZodIssueCode.invalid_arguments:
|
|
message = `Invalid function arguments`;
|
|
break;
|
|
case ZodIssueCode.invalid_return_type:
|
|
message = `Invalid function return type`;
|
|
break;
|
|
case ZodIssueCode.invalid_date:
|
|
message = `Invalid date`;
|
|
break;
|
|
case ZodIssueCode.invalid_string:
|
|
if (typeof issue.validation === "object") {
|
|
if ("includes" in issue.validation) {
|
|
message = `Invalid input: must include "${issue.validation.includes}"`;
|
|
if (typeof issue.validation.position === "number") {
|
|
message = `${message} at one or more positions greater than or equal to ${issue.validation.position}`;
|
|
}
|
|
} else if ("startsWith" in issue.validation) {
|
|
message = `Invalid input: must start with "${issue.validation.startsWith}"`;
|
|
} else if ("endsWith" in issue.validation) {
|
|
message = `Invalid input: must end with "${issue.validation.endsWith}"`;
|
|
} else {
|
|
util.assertNever(issue.validation);
|
|
}
|
|
} else if (issue.validation !== "regex") {
|
|
message = `Invalid ${issue.validation}`;
|
|
} else {
|
|
message = "Invalid";
|
|
}
|
|
break;
|
|
case ZodIssueCode.too_small:
|
|
if (issue.type === "array")
|
|
message = `Array must contain ${issue.exact ? "exactly" : issue.inclusive ? `at least` : `more than`} ${issue.minimum} element(s)`;
|
|
else if (issue.type === "string")
|
|
message = `String must contain ${issue.exact ? "exactly" : issue.inclusive ? `at least` : `over`} ${issue.minimum} character(s)`;
|
|
else if (issue.type === "number")
|
|
message = `Number must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${issue.minimum}`;
|
|
else if (issue.type === "date")
|
|
message = `Date must be ${issue.exact ? `exactly equal to ` : issue.inclusive ? `greater than or equal to ` : `greater than `}${new Date(Number(issue.minimum))}`;
|
|
else
|
|
message = "Invalid input";
|
|
break;
|
|
case ZodIssueCode.too_big:
|
|
if (issue.type === "array")
|
|
message = `Array must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `less than`} ${issue.maximum} element(s)`;
|
|
else if (issue.type === "string")
|
|
message = `String must contain ${issue.exact ? `exactly` : issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;
|
|
else if (issue.type === "number")
|
|
message = `Number must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;
|
|
else if (issue.type === "bigint")
|
|
message = `BigInt must be ${issue.exact ? `exactly` : issue.inclusive ? `less than or equal to` : `less than`} ${issue.maximum}`;
|
|
else if (issue.type === "date")
|
|
message = `Date must be ${issue.exact ? `exactly` : issue.inclusive ? `smaller than or equal to` : `smaller than`} ${new Date(Number(issue.maximum))}`;
|
|
else
|
|
message = "Invalid input";
|
|
break;
|
|
case ZodIssueCode.custom:
|
|
message = `Invalid input`;
|
|
break;
|
|
case ZodIssueCode.invalid_intersection_types:
|
|
message = `Intersection results could not be merged`;
|
|
break;
|
|
case ZodIssueCode.not_multiple_of:
|
|
message = `Number must be a multiple of ${issue.multipleOf}`;
|
|
break;
|
|
case ZodIssueCode.not_finite:
|
|
message = "Number must be finite";
|
|
break;
|
|
default:
|
|
message = _ctx.defaultError;
|
|
util.assertNever(issue);
|
|
}
|
|
return { message };
|
|
};
|
|
var overrideErrorMap = errorMap;
|
|
function setErrorMap(map) {
|
|
overrideErrorMap = map;
|
|
}
|
|
function getErrorMap() {
|
|
return overrideErrorMap;
|
|
}
|
|
var makeIssue = (params) => {
|
|
const { data, path, errorMaps, issueData } = params;
|
|
const fullPath = [...path, ...issueData.path || []];
|
|
const fullIssue = {
|
|
...issueData,
|
|
path: fullPath
|
|
};
|
|
if (issueData.message !== void 0) {
|
|
return {
|
|
...issueData,
|
|
path: fullPath,
|
|
message: issueData.message
|
|
};
|
|
}
|
|
let errorMessage = "";
|
|
const maps = errorMaps.filter((m) => !!m).slice().reverse();
|
|
for (const map of maps) {
|
|
errorMessage = map(fullIssue, { data, defaultError: errorMessage }).message;
|
|
}
|
|
return {
|
|
...issueData,
|
|
path: fullPath,
|
|
message: errorMessage
|
|
};
|
|
};
|
|
var EMPTY_PATH = [];
|
|
function addIssueToContext(ctx, issueData) {
|
|
const overrideMap = getErrorMap();
|
|
const issue = makeIssue({
|
|
issueData,
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
errorMaps: [
|
|
ctx.common.contextualErrorMap,
|
|
ctx.schemaErrorMap,
|
|
overrideMap,
|
|
overrideMap === errorMap ? void 0 : errorMap
|
|
// then global default map
|
|
].filter((x) => !!x)
|
|
});
|
|
ctx.common.issues.push(issue);
|
|
}
|
|
var ParseStatus = class _ParseStatus {
|
|
constructor() {
|
|
this.value = "valid";
|
|
}
|
|
dirty() {
|
|
if (this.value === "valid")
|
|
this.value = "dirty";
|
|
}
|
|
abort() {
|
|
if (this.value !== "aborted")
|
|
this.value = "aborted";
|
|
}
|
|
static mergeArray(status, results) {
|
|
const arrayValue = [];
|
|
for (const s of results) {
|
|
if (s.status === "aborted")
|
|
return INVALID;
|
|
if (s.status === "dirty")
|
|
status.dirty();
|
|
arrayValue.push(s.value);
|
|
}
|
|
return { status: status.value, value: arrayValue };
|
|
}
|
|
static async mergeObjectAsync(status, pairs) {
|
|
const syncPairs = [];
|
|
for (const pair of pairs) {
|
|
const key2 = await pair.key;
|
|
const value = await pair.value;
|
|
syncPairs.push({
|
|
key: key2,
|
|
value
|
|
});
|
|
}
|
|
return _ParseStatus.mergeObjectSync(status, syncPairs);
|
|
}
|
|
static mergeObjectSync(status, pairs) {
|
|
const finalObject = {};
|
|
for (const pair of pairs) {
|
|
const { key: key2, value } = pair;
|
|
if (key2.status === "aborted")
|
|
return INVALID;
|
|
if (value.status === "aborted")
|
|
return INVALID;
|
|
if (key2.status === "dirty")
|
|
status.dirty();
|
|
if (value.status === "dirty")
|
|
status.dirty();
|
|
if (key2.value !== "__proto__" && (typeof value.value !== "undefined" || pair.alwaysSet)) {
|
|
finalObject[key2.value] = value.value;
|
|
}
|
|
}
|
|
return { status: status.value, value: finalObject };
|
|
}
|
|
};
|
|
var INVALID = Object.freeze({
|
|
status: "aborted"
|
|
});
|
|
var DIRTY2 = (value) => ({ status: "dirty", value });
|
|
var OK = (value) => ({ status: "valid", value });
|
|
var isAborted = (x) => x.status === "aborted";
|
|
var isDirty = (x) => x.status === "dirty";
|
|
var isValid = (x) => x.status === "valid";
|
|
var isAsync = (x) => typeof Promise !== "undefined" && x instanceof Promise;
|
|
function __classPrivateFieldGet(receiver, state2, kind, f) {
|
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
if (typeof state2 === "function" ? receiver !== state2 || !f : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state2.get(receiver);
|
|
}
|
|
function __classPrivateFieldSet(receiver, state2, value, kind, f) {
|
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
if (typeof state2 === "function" ? receiver !== state2 || !f : !state2.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state2.set(receiver, value), value;
|
|
}
|
|
var errorUtil;
|
|
(function(errorUtil2) {
|
|
errorUtil2.errToObj = (message) => typeof message === "string" ? { message } : message || {};
|
|
errorUtil2.toString = (message) => typeof message === "string" ? message : message === null || message === void 0 ? void 0 : message.message;
|
|
})(errorUtil || (errorUtil = {}));
|
|
var _ZodEnum_cache;
|
|
var _ZodNativeEnum_cache;
|
|
var ParseInputLazyPath = class {
|
|
constructor(parent, value, path, key2) {
|
|
this._cachedPath = [];
|
|
this.parent = parent;
|
|
this.data = value;
|
|
this._path = path;
|
|
this._key = key2;
|
|
}
|
|
get path() {
|
|
if (!this._cachedPath.length) {
|
|
if (this._key instanceof Array) {
|
|
this._cachedPath.push(...this._path, ...this._key);
|
|
} else {
|
|
this._cachedPath.push(...this._path, this._key);
|
|
}
|
|
}
|
|
return this._cachedPath;
|
|
}
|
|
};
|
|
var handleResult = (ctx, result) => {
|
|
if (isValid(result)) {
|
|
return { success: true, data: result.value };
|
|
} else {
|
|
if (!ctx.common.issues.length) {
|
|
throw new Error("Validation failed but no issues detected.");
|
|
}
|
|
return {
|
|
success: false,
|
|
get error() {
|
|
if (this._error)
|
|
return this._error;
|
|
const error = new ZodError(ctx.common.issues);
|
|
this._error = error;
|
|
return this._error;
|
|
}
|
|
};
|
|
}
|
|
};
|
|
function processCreateParams(params) {
|
|
if (!params)
|
|
return {};
|
|
const { errorMap: errorMap2, invalid_type_error, required_error, description } = params;
|
|
if (errorMap2 && (invalid_type_error || required_error)) {
|
|
throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
|
|
}
|
|
if (errorMap2)
|
|
return { errorMap: errorMap2, description };
|
|
const customMap = (iss, ctx) => {
|
|
var _a5, _b3;
|
|
const { message } = params;
|
|
if (iss.code === "invalid_enum_value") {
|
|
return { message: message !== null && message !== void 0 ? message : ctx.defaultError };
|
|
}
|
|
if (typeof ctx.data === "undefined") {
|
|
return { message: (_a5 = message !== null && message !== void 0 ? message : required_error) !== null && _a5 !== void 0 ? _a5 : ctx.defaultError };
|
|
}
|
|
if (iss.code !== "invalid_type")
|
|
return { message: ctx.defaultError };
|
|
return { message: (_b3 = message !== null && message !== void 0 ? message : invalid_type_error) !== null && _b3 !== void 0 ? _b3 : ctx.defaultError };
|
|
};
|
|
return { errorMap: customMap, description };
|
|
}
|
|
var ZodType = class {
|
|
constructor(def) {
|
|
this.spa = this.safeParseAsync;
|
|
this._def = def;
|
|
this.parse = this.parse.bind(this);
|
|
this.safeParse = this.safeParse.bind(this);
|
|
this.parseAsync = this.parseAsync.bind(this);
|
|
this.safeParseAsync = this.safeParseAsync.bind(this);
|
|
this.spa = this.spa.bind(this);
|
|
this.refine = this.refine.bind(this);
|
|
this.refinement = this.refinement.bind(this);
|
|
this.superRefine = this.superRefine.bind(this);
|
|
this.optional = this.optional.bind(this);
|
|
this.nullable = this.nullable.bind(this);
|
|
this.nullish = this.nullish.bind(this);
|
|
this.array = this.array.bind(this);
|
|
this.promise = this.promise.bind(this);
|
|
this.or = this.or.bind(this);
|
|
this.and = this.and.bind(this);
|
|
this.transform = this.transform.bind(this);
|
|
this.brand = this.brand.bind(this);
|
|
this.default = this.default.bind(this);
|
|
this.catch = this.catch.bind(this);
|
|
this.describe = this.describe.bind(this);
|
|
this.pipe = this.pipe.bind(this);
|
|
this.readonly = this.readonly.bind(this);
|
|
this.isNullable = this.isNullable.bind(this);
|
|
this.isOptional = this.isOptional.bind(this);
|
|
}
|
|
get description() {
|
|
return this._def.description;
|
|
}
|
|
_getType(input) {
|
|
return getParsedType(input.data);
|
|
}
|
|
_getOrReturnCtx(input, ctx) {
|
|
return ctx || {
|
|
common: input.parent.common,
|
|
data: input.data,
|
|
parsedType: getParsedType(input.data),
|
|
schemaErrorMap: this._def.errorMap,
|
|
path: input.path,
|
|
parent: input.parent
|
|
};
|
|
}
|
|
_processInputParams(input) {
|
|
return {
|
|
status: new ParseStatus(),
|
|
ctx: {
|
|
common: input.parent.common,
|
|
data: input.data,
|
|
parsedType: getParsedType(input.data),
|
|
schemaErrorMap: this._def.errorMap,
|
|
path: input.path,
|
|
parent: input.parent
|
|
}
|
|
};
|
|
}
|
|
_parseSync(input) {
|
|
const result = this._parse(input);
|
|
if (isAsync(result)) {
|
|
throw new Error("Synchronous parse encountered promise.");
|
|
}
|
|
return result;
|
|
}
|
|
_parseAsync(input) {
|
|
const result = this._parse(input);
|
|
return Promise.resolve(result);
|
|
}
|
|
parse(data, params) {
|
|
const result = this.safeParse(data, params);
|
|
if (result.success)
|
|
return result.data;
|
|
throw result.error;
|
|
}
|
|
safeParse(data, params) {
|
|
var _a5;
|
|
const ctx = {
|
|
common: {
|
|
issues: [],
|
|
async: (_a5 = params === null || params === void 0 ? void 0 : params.async) !== null && _a5 !== void 0 ? _a5 : false,
|
|
contextualErrorMap: params === null || params === void 0 ? void 0 : params.errorMap
|
|
},
|
|
path: (params === null || params === void 0 ? void 0 : params.path) || [],
|
|
schemaErrorMap: this._def.errorMap,
|
|
parent: null,
|
|
data,
|
|
parsedType: getParsedType(data)
|
|
};
|
|
const result = this._parseSync({ data, path: ctx.path, parent: ctx });
|
|
return handleResult(ctx, result);
|
|
}
|
|
async parseAsync(data, params) {
|
|
const result = await this.safeParseAsync(data, params);
|
|
if (result.success)
|
|
return result.data;
|
|
throw result.error;
|
|
}
|
|
async safeParseAsync(data, params) {
|
|
const ctx = {
|
|
common: {
|
|
issues: [],
|
|
contextualErrorMap: params === null || params === void 0 ? void 0 : params.errorMap,
|
|
async: true
|
|
},
|
|
path: (params === null || params === void 0 ? void 0 : params.path) || [],
|
|
schemaErrorMap: this._def.errorMap,
|
|
parent: null,
|
|
data,
|
|
parsedType: getParsedType(data)
|
|
};
|
|
const maybeAsyncResult = this._parse({ data, path: ctx.path, parent: ctx });
|
|
const result = await (isAsync(maybeAsyncResult) ? maybeAsyncResult : Promise.resolve(maybeAsyncResult));
|
|
return handleResult(ctx, result);
|
|
}
|
|
refine(check, message) {
|
|
const getIssueProperties = (val) => {
|
|
if (typeof message === "string" || typeof message === "undefined") {
|
|
return { message };
|
|
} else if (typeof message === "function") {
|
|
return message(val);
|
|
} else {
|
|
return message;
|
|
}
|
|
};
|
|
return this._refinement((val, ctx) => {
|
|
const result = check(val);
|
|
const setError = () => ctx.addIssue({
|
|
code: ZodIssueCode.custom,
|
|
...getIssueProperties(val)
|
|
});
|
|
if (typeof Promise !== "undefined" && result instanceof Promise) {
|
|
return result.then((data) => {
|
|
if (!data) {
|
|
setError();
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
if (!result) {
|
|
setError();
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
refinement(check, refinementData) {
|
|
return this._refinement((val, ctx) => {
|
|
if (!check(val)) {
|
|
ctx.addIssue(typeof refinementData === "function" ? refinementData(val, ctx) : refinementData);
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
_refinement(refinement) {
|
|
return new ZodEffects({
|
|
schema: this,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect: { type: "refinement", refinement }
|
|
});
|
|
}
|
|
superRefine(refinement) {
|
|
return this._refinement(refinement);
|
|
}
|
|
optional() {
|
|
return ZodOptional.create(this, this._def);
|
|
}
|
|
nullable() {
|
|
return ZodNullable.create(this, this._def);
|
|
}
|
|
nullish() {
|
|
return this.nullable().optional();
|
|
}
|
|
array() {
|
|
return ZodArray.create(this, this._def);
|
|
}
|
|
promise() {
|
|
return ZodPromise.create(this, this._def);
|
|
}
|
|
or(option) {
|
|
return ZodUnion.create([this, option], this._def);
|
|
}
|
|
and(incoming) {
|
|
return ZodIntersection.create(this, incoming, this._def);
|
|
}
|
|
transform(transform) {
|
|
return new ZodEffects({
|
|
...processCreateParams(this._def),
|
|
schema: this,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect: { type: "transform", transform }
|
|
});
|
|
}
|
|
default(def) {
|
|
const defaultValueFunc = typeof def === "function" ? def : () => def;
|
|
return new ZodDefault({
|
|
...processCreateParams(this._def),
|
|
innerType: this,
|
|
defaultValue: defaultValueFunc,
|
|
typeName: ZodFirstPartyTypeKind.ZodDefault
|
|
});
|
|
}
|
|
brand() {
|
|
return new ZodBranded({
|
|
typeName: ZodFirstPartyTypeKind.ZodBranded,
|
|
type: this,
|
|
...processCreateParams(this._def)
|
|
});
|
|
}
|
|
catch(def) {
|
|
const catchValueFunc = typeof def === "function" ? def : () => def;
|
|
return new ZodCatch({
|
|
...processCreateParams(this._def),
|
|
innerType: this,
|
|
catchValue: catchValueFunc,
|
|
typeName: ZodFirstPartyTypeKind.ZodCatch
|
|
});
|
|
}
|
|
describe(description) {
|
|
const This = this.constructor;
|
|
return new This({
|
|
...this._def,
|
|
description
|
|
});
|
|
}
|
|
pipe(target) {
|
|
return ZodPipeline.create(this, target);
|
|
}
|
|
readonly() {
|
|
return ZodReadonly.create(this);
|
|
}
|
|
isOptional() {
|
|
return this.safeParse(void 0).success;
|
|
}
|
|
isNullable() {
|
|
return this.safeParse(null).success;
|
|
}
|
|
};
|
|
var cuidRegex = /^c[^\s-]{8,}$/i;
|
|
var cuid2Regex = /^[0-9a-z]+$/;
|
|
var ulidRegex = /^[0-9A-HJKMNP-TV-Z]{26}$/;
|
|
var uuidRegex = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i;
|
|
var nanoidRegex = /^[a-z0-9_-]{21}$/i;
|
|
var durationRegex = /^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/;
|
|
var emailRegex = /^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i;
|
|
var _emojiRegex = `^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$`;
|
|
var emojiRegex;
|
|
var ipv4Regex = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/;
|
|
var ipv6Regex = /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/;
|
|
var base64Regex = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;
|
|
var dateRegexSource = `((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))`;
|
|
var dateRegex = new RegExp(`^${dateRegexSource}$`);
|
|
function timeRegexSource(args) {
|
|
let regex = `([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d`;
|
|
if (args.precision) {
|
|
regex = `${regex}\\.\\d{${args.precision}}`;
|
|
} else if (args.precision == null) {
|
|
regex = `${regex}(\\.\\d+)?`;
|
|
}
|
|
return regex;
|
|
}
|
|
function timeRegex(args) {
|
|
return new RegExp(`^${timeRegexSource(args)}$`);
|
|
}
|
|
function datetimeRegex(args) {
|
|
let regex = `${dateRegexSource}T${timeRegexSource(args)}`;
|
|
const opts = [];
|
|
opts.push(args.local ? `Z?` : `Z`);
|
|
if (args.offset)
|
|
opts.push(`([+-]\\d{2}:?\\d{2})`);
|
|
regex = `${regex}(${opts.join("|")})`;
|
|
return new RegExp(`^${regex}$`);
|
|
}
|
|
function isValidIP(ip, version) {
|
|
if ((version === "v4" || !version) && ipv4Regex.test(ip)) {
|
|
return true;
|
|
}
|
|
if ((version === "v6" || !version) && ipv6Regex.test(ip)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
var ZodString = class _ZodString extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = String(input.data);
|
|
}
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.string) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.string,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const status = new ParseStatus();
|
|
let ctx = void 0;
|
|
for (const check of this._def.checks) {
|
|
if (check.kind === "min") {
|
|
if (input.data.length < check.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "max") {
|
|
if (input.data.length > check.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "length") {
|
|
const tooBig = input.data.length > check.value;
|
|
const tooSmall = input.data.length < check.value;
|
|
if (tooBig || tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
if (tooBig) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: check.message
|
|
});
|
|
} else if (tooSmall) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check.value,
|
|
type: "string",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: check.message
|
|
});
|
|
}
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "email") {
|
|
if (!emailRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "email",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "emoji") {
|
|
if (!emojiRegex) {
|
|
emojiRegex = new RegExp(_emojiRegex, "u");
|
|
}
|
|
if (!emojiRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "emoji",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "uuid") {
|
|
if (!uuidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "uuid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "nanoid") {
|
|
if (!nanoidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "nanoid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "cuid") {
|
|
if (!cuidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "cuid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "cuid2") {
|
|
if (!cuid2Regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "cuid2",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "ulid") {
|
|
if (!ulidRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "ulid",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "url") {
|
|
try {
|
|
new URL(input.data);
|
|
} catch (_a5) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "url",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "regex") {
|
|
check.regex.lastIndex = 0;
|
|
const testResult = check.regex.test(input.data);
|
|
if (!testResult) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "regex",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "trim") {
|
|
input.data = input.data.trim();
|
|
} else if (check.kind === "includes") {
|
|
if (!input.data.includes(check.value, check.position)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { includes: check.value, position: check.position },
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "toLowerCase") {
|
|
input.data = input.data.toLowerCase();
|
|
} else if (check.kind === "toUpperCase") {
|
|
input.data = input.data.toUpperCase();
|
|
} else if (check.kind === "startsWith") {
|
|
if (!input.data.startsWith(check.value)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { startsWith: check.value },
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "endsWith") {
|
|
if (!input.data.endsWith(check.value)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: { endsWith: check.value },
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "datetime") {
|
|
const regex = datetimeRegex(check);
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "datetime",
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "date") {
|
|
const regex = dateRegex;
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "date",
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "time") {
|
|
const regex = timeRegex(check);
|
|
if (!regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_string,
|
|
validation: "time",
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "duration") {
|
|
if (!durationRegex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "duration",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "ip") {
|
|
if (!isValidIP(input.data, check.version)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "ip",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "base64") {
|
|
if (!base64Regex.test(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
validation: "base64",
|
|
code: ZodIssueCode.invalid_string,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
_regex(regex, validation, message) {
|
|
return this.refinement((data) => regex.test(data), {
|
|
validation,
|
|
code: ZodIssueCode.invalid_string,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
_addCheck(check) {
|
|
return new _ZodString({
|
|
...this._def,
|
|
checks: [...this._def.checks, check]
|
|
});
|
|
}
|
|
email(message) {
|
|
return this._addCheck({ kind: "email", ...errorUtil.errToObj(message) });
|
|
}
|
|
url(message) {
|
|
return this._addCheck({ kind: "url", ...errorUtil.errToObj(message) });
|
|
}
|
|
emoji(message) {
|
|
return this._addCheck({ kind: "emoji", ...errorUtil.errToObj(message) });
|
|
}
|
|
uuid(message) {
|
|
return this._addCheck({ kind: "uuid", ...errorUtil.errToObj(message) });
|
|
}
|
|
nanoid(message) {
|
|
return this._addCheck({ kind: "nanoid", ...errorUtil.errToObj(message) });
|
|
}
|
|
cuid(message) {
|
|
return this._addCheck({ kind: "cuid", ...errorUtil.errToObj(message) });
|
|
}
|
|
cuid2(message) {
|
|
return this._addCheck({ kind: "cuid2", ...errorUtil.errToObj(message) });
|
|
}
|
|
ulid(message) {
|
|
return this._addCheck({ kind: "ulid", ...errorUtil.errToObj(message) });
|
|
}
|
|
base64(message) {
|
|
return this._addCheck({ kind: "base64", ...errorUtil.errToObj(message) });
|
|
}
|
|
ip(options) {
|
|
return this._addCheck({ kind: "ip", ...errorUtil.errToObj(options) });
|
|
}
|
|
datetime(options) {
|
|
var _a5, _b3;
|
|
if (typeof options === "string") {
|
|
return this._addCheck({
|
|
kind: "datetime",
|
|
precision: null,
|
|
offset: false,
|
|
local: false,
|
|
message: options
|
|
});
|
|
}
|
|
return this._addCheck({
|
|
kind: "datetime",
|
|
precision: typeof (options === null || options === void 0 ? void 0 : options.precision) === "undefined" ? null : options === null || options === void 0 ? void 0 : options.precision,
|
|
offset: (_a5 = options === null || options === void 0 ? void 0 : options.offset) !== null && _a5 !== void 0 ? _a5 : false,
|
|
local: (_b3 = options === null || options === void 0 ? void 0 : options.local) !== null && _b3 !== void 0 ? _b3 : false,
|
|
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
|
});
|
|
}
|
|
date(message) {
|
|
return this._addCheck({ kind: "date", message });
|
|
}
|
|
time(options) {
|
|
if (typeof options === "string") {
|
|
return this._addCheck({
|
|
kind: "time",
|
|
precision: null,
|
|
message: options
|
|
});
|
|
}
|
|
return this._addCheck({
|
|
kind: "time",
|
|
precision: typeof (options === null || options === void 0 ? void 0 : options.precision) === "undefined" ? null : options === null || options === void 0 ? void 0 : options.precision,
|
|
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
|
});
|
|
}
|
|
duration(message) {
|
|
return this._addCheck({ kind: "duration", ...errorUtil.errToObj(message) });
|
|
}
|
|
regex(regex, message) {
|
|
return this._addCheck({
|
|
kind: "regex",
|
|
regex,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
includes(value, options) {
|
|
return this._addCheck({
|
|
kind: "includes",
|
|
value,
|
|
position: options === null || options === void 0 ? void 0 : options.position,
|
|
...errorUtil.errToObj(options === null || options === void 0 ? void 0 : options.message)
|
|
});
|
|
}
|
|
startsWith(value, message) {
|
|
return this._addCheck({
|
|
kind: "startsWith",
|
|
value,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
endsWith(value, message) {
|
|
return this._addCheck({
|
|
kind: "endsWith",
|
|
value,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
min(minLength, message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: minLength,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
max(maxLength, message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: maxLength,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
length(len, message) {
|
|
return this._addCheck({
|
|
kind: "length",
|
|
value: len,
|
|
...errorUtil.errToObj(message)
|
|
});
|
|
}
|
|
/**
|
|
* @deprecated Use z.string().min(1) instead.
|
|
* @see {@link ZodString.min}
|
|
*/
|
|
nonempty(message) {
|
|
return this.min(1, errorUtil.errToObj(message));
|
|
}
|
|
trim() {
|
|
return new _ZodString({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "trim" }]
|
|
});
|
|
}
|
|
toLowerCase() {
|
|
return new _ZodString({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "toLowerCase" }]
|
|
});
|
|
}
|
|
toUpperCase() {
|
|
return new _ZodString({
|
|
...this._def,
|
|
checks: [...this._def.checks, { kind: "toUpperCase" }]
|
|
});
|
|
}
|
|
get isDatetime() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "datetime");
|
|
}
|
|
get isDate() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "date");
|
|
}
|
|
get isTime() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "time");
|
|
}
|
|
get isDuration() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "duration");
|
|
}
|
|
get isEmail() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "email");
|
|
}
|
|
get isURL() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "url");
|
|
}
|
|
get isEmoji() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "emoji");
|
|
}
|
|
get isUUID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "uuid");
|
|
}
|
|
get isNANOID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "nanoid");
|
|
}
|
|
get isCUID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "cuid");
|
|
}
|
|
get isCUID2() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "cuid2");
|
|
}
|
|
get isULID() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "ulid");
|
|
}
|
|
get isIP() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "ip");
|
|
}
|
|
get isBase64() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "base64");
|
|
}
|
|
get minLength() {
|
|
let min2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min2 === null || ch.value > min2)
|
|
min2 = ch.value;
|
|
}
|
|
}
|
|
return min2;
|
|
}
|
|
get maxLength() {
|
|
let max2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max2 === null || ch.value < max2)
|
|
max2 = ch.value;
|
|
}
|
|
}
|
|
return max2;
|
|
}
|
|
};
|
|
ZodString.create = (params) => {
|
|
var _a5;
|
|
return new ZodString({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodString,
|
|
coerce: (_a5 = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a5 !== void 0 ? _a5 : false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function floatSafeRemainder(val, step) {
|
|
const valDecCount = (val.toString().split(".")[1] || "").length;
|
|
const stepDecCount = (step.toString().split(".")[1] || "").length;
|
|
const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount;
|
|
const valInt = parseInt(val.toFixed(decCount).replace(".", ""));
|
|
const stepInt = parseInt(step.toFixed(decCount).replace(".", ""));
|
|
return valInt % stepInt / Math.pow(10, decCount);
|
|
}
|
|
var ZodNumber = class _ZodNumber extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.min = this.gte;
|
|
this.max = this.lte;
|
|
this.step = this.multipleOf;
|
|
}
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = Number(input.data);
|
|
}
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.number) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.number,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
let ctx = void 0;
|
|
const status = new ParseStatus();
|
|
for (const check of this._def.checks) {
|
|
if (check.kind === "int") {
|
|
if (!util.isInteger(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: "integer",
|
|
received: "float",
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "min") {
|
|
const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;
|
|
if (tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: check.value,
|
|
type: "number",
|
|
inclusive: check.inclusive,
|
|
exact: false,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "max") {
|
|
const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;
|
|
if (tooBig) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: check.value,
|
|
type: "number",
|
|
inclusive: check.inclusive,
|
|
exact: false,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "multipleOf") {
|
|
if (floatSafeRemainder(input.data, check.value) !== 0) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_multiple_of,
|
|
multipleOf: check.value,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "finite") {
|
|
if (!Number.isFinite(input.data)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_finite,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
gte(value, message) {
|
|
return this.setLimit("min", value, true, errorUtil.toString(message));
|
|
}
|
|
gt(value, message) {
|
|
return this.setLimit("min", value, false, errorUtil.toString(message));
|
|
}
|
|
lte(value, message) {
|
|
return this.setLimit("max", value, true, errorUtil.toString(message));
|
|
}
|
|
lt(value, message) {
|
|
return this.setLimit("max", value, false, errorUtil.toString(message));
|
|
}
|
|
setLimit(kind, value, inclusive, message) {
|
|
return new _ZodNumber({
|
|
...this._def,
|
|
checks: [
|
|
...this._def.checks,
|
|
{
|
|
kind,
|
|
value,
|
|
inclusive,
|
|
message: errorUtil.toString(message)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
_addCheck(check) {
|
|
return new _ZodNumber({
|
|
...this._def,
|
|
checks: [...this._def.checks, check]
|
|
});
|
|
}
|
|
int(message) {
|
|
return this._addCheck({
|
|
kind: "int",
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
positive(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: 0,
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
negative(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: 0,
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonpositive(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: 0,
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonnegative(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: 0,
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
multipleOf(value, message) {
|
|
return this._addCheck({
|
|
kind: "multipleOf",
|
|
value,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
finite(message) {
|
|
return this._addCheck({
|
|
kind: "finite",
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
safe(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
inclusive: true,
|
|
value: Number.MIN_SAFE_INTEGER,
|
|
message: errorUtil.toString(message)
|
|
})._addCheck({
|
|
kind: "max",
|
|
inclusive: true,
|
|
value: Number.MAX_SAFE_INTEGER,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minValue() {
|
|
let min2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min2 === null || ch.value > min2)
|
|
min2 = ch.value;
|
|
}
|
|
}
|
|
return min2;
|
|
}
|
|
get maxValue() {
|
|
let max2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max2 === null || ch.value < max2)
|
|
max2 = ch.value;
|
|
}
|
|
}
|
|
return max2;
|
|
}
|
|
get isInt() {
|
|
return !!this._def.checks.find((ch) => ch.kind === "int" || ch.kind === "multipleOf" && util.isInteger(ch.value));
|
|
}
|
|
get isFinite() {
|
|
let max2 = null, min2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "finite" || ch.kind === "int" || ch.kind === "multipleOf") {
|
|
return true;
|
|
} else if (ch.kind === "min") {
|
|
if (min2 === null || ch.value > min2)
|
|
min2 = ch.value;
|
|
} else if (ch.kind === "max") {
|
|
if (max2 === null || ch.value < max2)
|
|
max2 = ch.value;
|
|
}
|
|
}
|
|
return Number.isFinite(min2) && Number.isFinite(max2);
|
|
}
|
|
};
|
|
ZodNumber.create = (params) => {
|
|
return new ZodNumber({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodNumber,
|
|
coerce: (params === null || params === void 0 ? void 0 : params.coerce) || false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodBigInt = class _ZodBigInt extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.min = this.gte;
|
|
this.max = this.lte;
|
|
}
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = BigInt(input.data);
|
|
}
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.bigint) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.bigint,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
let ctx = void 0;
|
|
const status = new ParseStatus();
|
|
for (const check of this._def.checks) {
|
|
if (check.kind === "min") {
|
|
const tooSmall = check.inclusive ? input.data < check.value : input.data <= check.value;
|
|
if (tooSmall) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
type: "bigint",
|
|
minimum: check.value,
|
|
inclusive: check.inclusive,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "max") {
|
|
const tooBig = check.inclusive ? input.data > check.value : input.data >= check.value;
|
|
if (tooBig) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
type: "bigint",
|
|
maximum: check.value,
|
|
inclusive: check.inclusive,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "multipleOf") {
|
|
if (input.data % check.value !== BigInt(0)) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.not_multiple_of,
|
|
multipleOf: check.value,
|
|
message: check.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check);
|
|
}
|
|
}
|
|
return { status: status.value, value: input.data };
|
|
}
|
|
gte(value, message) {
|
|
return this.setLimit("min", value, true, errorUtil.toString(message));
|
|
}
|
|
gt(value, message) {
|
|
return this.setLimit("min", value, false, errorUtil.toString(message));
|
|
}
|
|
lte(value, message) {
|
|
return this.setLimit("max", value, true, errorUtil.toString(message));
|
|
}
|
|
lt(value, message) {
|
|
return this.setLimit("max", value, false, errorUtil.toString(message));
|
|
}
|
|
setLimit(kind, value, inclusive, message) {
|
|
return new _ZodBigInt({
|
|
...this._def,
|
|
checks: [
|
|
...this._def.checks,
|
|
{
|
|
kind,
|
|
value,
|
|
inclusive,
|
|
message: errorUtil.toString(message)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
_addCheck(check) {
|
|
return new _ZodBigInt({
|
|
...this._def,
|
|
checks: [...this._def.checks, check]
|
|
});
|
|
}
|
|
positive(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: BigInt(0),
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
negative(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: BigInt(0),
|
|
inclusive: false,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonpositive(message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: BigInt(0),
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
nonnegative(message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: BigInt(0),
|
|
inclusive: true,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
multipleOf(value, message) {
|
|
return this._addCheck({
|
|
kind: "multipleOf",
|
|
value,
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minValue() {
|
|
let min2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min2 === null || ch.value > min2)
|
|
min2 = ch.value;
|
|
}
|
|
}
|
|
return min2;
|
|
}
|
|
get maxValue() {
|
|
let max2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max2 === null || ch.value < max2)
|
|
max2 = ch.value;
|
|
}
|
|
}
|
|
return max2;
|
|
}
|
|
};
|
|
ZodBigInt.create = (params) => {
|
|
var _a5;
|
|
return new ZodBigInt({
|
|
checks: [],
|
|
typeName: ZodFirstPartyTypeKind.ZodBigInt,
|
|
coerce: (_a5 = params === null || params === void 0 ? void 0 : params.coerce) !== null && _a5 !== void 0 ? _a5 : false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodBoolean = class extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = Boolean(input.data);
|
|
}
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.boolean) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.boolean,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodBoolean.create = (params) => {
|
|
return new ZodBoolean({
|
|
typeName: ZodFirstPartyTypeKind.ZodBoolean,
|
|
coerce: (params === null || params === void 0 ? void 0 : params.coerce) || false,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodDate = class _ZodDate extends ZodType {
|
|
_parse(input) {
|
|
if (this._def.coerce) {
|
|
input.data = new Date(input.data);
|
|
}
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.date) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.date,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (isNaN(input.data.getTime())) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_date
|
|
});
|
|
return INVALID;
|
|
}
|
|
const status = new ParseStatus();
|
|
let ctx = void 0;
|
|
for (const check of this._def.checks) {
|
|
if (check.kind === "min") {
|
|
if (input.data.getTime() < check.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
message: check.message,
|
|
inclusive: true,
|
|
exact: false,
|
|
minimum: check.value,
|
|
type: "date"
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (check.kind === "max") {
|
|
if (input.data.getTime() > check.value) {
|
|
ctx = this._getOrReturnCtx(input, ctx);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
message: check.message,
|
|
inclusive: true,
|
|
exact: false,
|
|
maximum: check.value,
|
|
type: "date"
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else {
|
|
util.assertNever(check);
|
|
}
|
|
}
|
|
return {
|
|
status: status.value,
|
|
value: new Date(input.data.getTime())
|
|
};
|
|
}
|
|
_addCheck(check) {
|
|
return new _ZodDate({
|
|
...this._def,
|
|
checks: [...this._def.checks, check]
|
|
});
|
|
}
|
|
min(minDate, message) {
|
|
return this._addCheck({
|
|
kind: "min",
|
|
value: minDate.getTime(),
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
max(maxDate, message) {
|
|
return this._addCheck({
|
|
kind: "max",
|
|
value: maxDate.getTime(),
|
|
message: errorUtil.toString(message)
|
|
});
|
|
}
|
|
get minDate() {
|
|
let min2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "min") {
|
|
if (min2 === null || ch.value > min2)
|
|
min2 = ch.value;
|
|
}
|
|
}
|
|
return min2 != null ? new Date(min2) : null;
|
|
}
|
|
get maxDate() {
|
|
let max2 = null;
|
|
for (const ch of this._def.checks) {
|
|
if (ch.kind === "max") {
|
|
if (max2 === null || ch.value < max2)
|
|
max2 = ch.value;
|
|
}
|
|
}
|
|
return max2 != null ? new Date(max2) : null;
|
|
}
|
|
};
|
|
ZodDate.create = (params) => {
|
|
return new ZodDate({
|
|
checks: [],
|
|
coerce: (params === null || params === void 0 ? void 0 : params.coerce) || false,
|
|
typeName: ZodFirstPartyTypeKind.ZodDate,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodSymbol = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.symbol) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.symbol,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodSymbol.create = (params) => {
|
|
return new ZodSymbol({
|
|
typeName: ZodFirstPartyTypeKind.ZodSymbol,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUndefined = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.undefined) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.undefined,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodUndefined.create = (params) => {
|
|
return new ZodUndefined({
|
|
typeName: ZodFirstPartyTypeKind.ZodUndefined,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNull = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.null) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.null,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodNull.create = (params) => {
|
|
return new ZodNull({
|
|
typeName: ZodFirstPartyTypeKind.ZodNull,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodAny = class extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._any = true;
|
|
}
|
|
_parse(input) {
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodAny.create = (params) => {
|
|
return new ZodAny({
|
|
typeName: ZodFirstPartyTypeKind.ZodAny,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUnknown = class extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._unknown = true;
|
|
}
|
|
_parse(input) {
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodUnknown.create = (params) => {
|
|
return new ZodUnknown({
|
|
typeName: ZodFirstPartyTypeKind.ZodUnknown,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNever = class extends ZodType {
|
|
_parse(input) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.never,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
};
|
|
ZodNever.create = (params) => {
|
|
return new ZodNever({
|
|
typeName: ZodFirstPartyTypeKind.ZodNever,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodVoid = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.undefined) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.void,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
};
|
|
ZodVoid.create = (params) => {
|
|
return new ZodVoid({
|
|
typeName: ZodFirstPartyTypeKind.ZodVoid,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodArray = class _ZodArray extends ZodType {
|
|
_parse(input) {
|
|
const { ctx, status } = this._processInputParams(input);
|
|
const def = this._def;
|
|
if (ctx.parsedType !== ZodParsedType.array) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.array,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (def.exactLength !== null) {
|
|
const tooBig = ctx.data.length > def.exactLength.value;
|
|
const tooSmall = ctx.data.length < def.exactLength.value;
|
|
if (tooBig || tooSmall) {
|
|
addIssueToContext(ctx, {
|
|
code: tooBig ? ZodIssueCode.too_big : ZodIssueCode.too_small,
|
|
minimum: tooSmall ? def.exactLength.value : void 0,
|
|
maximum: tooBig ? def.exactLength.value : void 0,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: true,
|
|
message: def.exactLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.minLength !== null) {
|
|
if (ctx.data.length < def.minLength.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: def.minLength.value,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.minLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.maxLength !== null) {
|
|
if (ctx.data.length > def.maxLength.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: def.maxLength.value,
|
|
type: "array",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.maxLength.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.all([...ctx.data].map((item, i) => {
|
|
return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
|
})).then((result2) => {
|
|
return ParseStatus.mergeArray(status, result2);
|
|
});
|
|
}
|
|
const result = [...ctx.data].map((item, i) => {
|
|
return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));
|
|
});
|
|
return ParseStatus.mergeArray(status, result);
|
|
}
|
|
get element() {
|
|
return this._def.type;
|
|
}
|
|
min(minLength, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
minLength: { value: minLength, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
max(maxLength, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
maxLength: { value: maxLength, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
length(len, message) {
|
|
return new _ZodArray({
|
|
...this._def,
|
|
exactLength: { value: len, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
nonempty(message) {
|
|
return this.min(1, message);
|
|
}
|
|
};
|
|
ZodArray.create = (schema, params) => {
|
|
return new ZodArray({
|
|
type: schema,
|
|
minLength: null,
|
|
maxLength: null,
|
|
exactLength: null,
|
|
typeName: ZodFirstPartyTypeKind.ZodArray,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function deepPartialify(schema) {
|
|
if (schema instanceof ZodObject) {
|
|
const newShape = {};
|
|
for (const key2 in schema.shape) {
|
|
const fieldSchema = schema.shape[key2];
|
|
newShape[key2] = ZodOptional.create(deepPartialify(fieldSchema));
|
|
}
|
|
return new ZodObject({
|
|
...schema._def,
|
|
shape: () => newShape
|
|
});
|
|
} else if (schema instanceof ZodArray) {
|
|
return new ZodArray({
|
|
...schema._def,
|
|
type: deepPartialify(schema.element)
|
|
});
|
|
} else if (schema instanceof ZodOptional) {
|
|
return ZodOptional.create(deepPartialify(schema.unwrap()));
|
|
} else if (schema instanceof ZodNullable) {
|
|
return ZodNullable.create(deepPartialify(schema.unwrap()));
|
|
} else if (schema instanceof ZodTuple) {
|
|
return ZodTuple.create(schema.items.map((item) => deepPartialify(item)));
|
|
} else {
|
|
return schema;
|
|
}
|
|
}
|
|
var ZodObject = class _ZodObject extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this._cached = null;
|
|
this.nonstrict = this.passthrough;
|
|
this.augment = this.extend;
|
|
}
|
|
_getCached() {
|
|
if (this._cached !== null)
|
|
return this._cached;
|
|
const shape = this._def.shape();
|
|
const keys = util.objectKeys(shape);
|
|
return this._cached = { shape, keys };
|
|
}
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.object) {
|
|
const ctx2 = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx2, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx2.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const { shape, keys: shapeKeys } = this._getCached();
|
|
const extraKeys = [];
|
|
if (!(this._def.catchall instanceof ZodNever && this._def.unknownKeys === "strip")) {
|
|
for (const key2 in ctx.data) {
|
|
if (!shapeKeys.includes(key2)) {
|
|
extraKeys.push(key2);
|
|
}
|
|
}
|
|
}
|
|
const pairs = [];
|
|
for (const key2 of shapeKeys) {
|
|
const keyValidator = shape[key2];
|
|
const value = ctx.data[key2];
|
|
pairs.push({
|
|
key: { status: "valid", value: key2 },
|
|
value: keyValidator._parse(new ParseInputLazyPath(ctx, value, ctx.path, key2)),
|
|
alwaysSet: key2 in ctx.data
|
|
});
|
|
}
|
|
if (this._def.catchall instanceof ZodNever) {
|
|
const unknownKeys = this._def.unknownKeys;
|
|
if (unknownKeys === "passthrough") {
|
|
for (const key2 of extraKeys) {
|
|
pairs.push({
|
|
key: { status: "valid", value: key2 },
|
|
value: { status: "valid", value: ctx.data[key2] }
|
|
});
|
|
}
|
|
} else if (unknownKeys === "strict") {
|
|
if (extraKeys.length > 0) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.unrecognized_keys,
|
|
keys: extraKeys
|
|
});
|
|
status.dirty();
|
|
}
|
|
} else if (unknownKeys === "strip") ;
|
|
else {
|
|
throw new Error(`Internal ZodObject error: invalid unknownKeys value.`);
|
|
}
|
|
} else {
|
|
const catchall = this._def.catchall;
|
|
for (const key2 of extraKeys) {
|
|
const value = ctx.data[key2];
|
|
pairs.push({
|
|
key: { status: "valid", value: key2 },
|
|
value: catchall._parse(
|
|
new ParseInputLazyPath(ctx, value, ctx.path, key2)
|
|
//, ctx.child(key), value, getParsedType(value)
|
|
),
|
|
alwaysSet: key2 in ctx.data
|
|
});
|
|
}
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.resolve().then(async () => {
|
|
const syncPairs = [];
|
|
for (const pair of pairs) {
|
|
const key2 = await pair.key;
|
|
const value = await pair.value;
|
|
syncPairs.push({
|
|
key: key2,
|
|
value,
|
|
alwaysSet: pair.alwaysSet
|
|
});
|
|
}
|
|
return syncPairs;
|
|
}).then((syncPairs) => {
|
|
return ParseStatus.mergeObjectSync(status, syncPairs);
|
|
});
|
|
} else {
|
|
return ParseStatus.mergeObjectSync(status, pairs);
|
|
}
|
|
}
|
|
get shape() {
|
|
return this._def.shape();
|
|
}
|
|
strict(message) {
|
|
errorUtil.errToObj;
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "strict",
|
|
...message !== void 0 ? {
|
|
errorMap: (issue, ctx) => {
|
|
var _a5, _b3, _c2, _d;
|
|
const defaultError = (_c2 = (_b3 = (_a5 = this._def).errorMap) === null || _b3 === void 0 ? void 0 : _b3.call(_a5, issue, ctx).message) !== null && _c2 !== void 0 ? _c2 : ctx.defaultError;
|
|
if (issue.code === "unrecognized_keys")
|
|
return {
|
|
message: (_d = errorUtil.errToObj(message).message) !== null && _d !== void 0 ? _d : defaultError
|
|
};
|
|
return {
|
|
message: defaultError
|
|
};
|
|
}
|
|
} : {}
|
|
});
|
|
}
|
|
strip() {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "strip"
|
|
});
|
|
}
|
|
passthrough() {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
unknownKeys: "passthrough"
|
|
});
|
|
}
|
|
// const AugmentFactory =
|
|
// <Def extends ZodObjectDef>(def: Def) =>
|
|
// <Augmentation extends ZodRawShape>(
|
|
// augmentation: Augmentation
|
|
// ): ZodObject<
|
|
// extendShape<ReturnType<Def["shape"]>, Augmentation>,
|
|
// Def["unknownKeys"],
|
|
// Def["catchall"]
|
|
// > => {
|
|
// return new ZodObject({
|
|
// ...def,
|
|
// shape: () => ({
|
|
// ...def.shape(),
|
|
// ...augmentation,
|
|
// }),
|
|
// }) as any;
|
|
// };
|
|
extend(augmentation) {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => ({
|
|
...this._def.shape(),
|
|
...augmentation
|
|
})
|
|
});
|
|
}
|
|
/**
|
|
* Prior to zod@1.0.12 there was a bug in the
|
|
* inferred type of merged objects. Please
|
|
* upgrade if you are experiencing issues.
|
|
*/
|
|
merge(merging) {
|
|
const merged = new _ZodObject({
|
|
unknownKeys: merging._def.unknownKeys,
|
|
catchall: merging._def.catchall,
|
|
shape: () => ({
|
|
...this._def.shape(),
|
|
...merging._def.shape()
|
|
}),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject
|
|
});
|
|
return merged;
|
|
}
|
|
// merge<
|
|
// Incoming extends AnyZodObject,
|
|
// Augmentation extends Incoming["shape"],
|
|
// NewOutput extends {
|
|
// [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation
|
|
// ? Augmentation[k]["_output"]
|
|
// : k extends keyof Output
|
|
// ? Output[k]
|
|
// : never;
|
|
// },
|
|
// NewInput extends {
|
|
// [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation
|
|
// ? Augmentation[k]["_input"]
|
|
// : k extends keyof Input
|
|
// ? Input[k]
|
|
// : never;
|
|
// }
|
|
// >(
|
|
// merging: Incoming
|
|
// ): ZodObject<
|
|
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
|
// Incoming["_def"]["unknownKeys"],
|
|
// Incoming["_def"]["catchall"],
|
|
// NewOutput,
|
|
// NewInput
|
|
// > {
|
|
// const merged: any = new ZodObject({
|
|
// unknownKeys: merging._def.unknownKeys,
|
|
// catchall: merging._def.catchall,
|
|
// shape: () =>
|
|
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
|
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
// }) as any;
|
|
// return merged;
|
|
// }
|
|
setKey(key2, schema) {
|
|
return this.augment({ [key2]: schema });
|
|
}
|
|
// merge<Incoming extends AnyZodObject>(
|
|
// merging: Incoming
|
|
// ): //ZodObject<T & Incoming["_shape"], UnknownKeys, Catchall> = (merging) => {
|
|
// ZodObject<
|
|
// extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
|
|
// Incoming["_def"]["unknownKeys"],
|
|
// Incoming["_def"]["catchall"]
|
|
// > {
|
|
// // const mergedShape = objectUtil.mergeShapes(
|
|
// // this._def.shape(),
|
|
// // merging._def.shape()
|
|
// // );
|
|
// const merged: any = new ZodObject({
|
|
// unknownKeys: merging._def.unknownKeys,
|
|
// catchall: merging._def.catchall,
|
|
// shape: () =>
|
|
// objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
|
|
// typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
// }) as any;
|
|
// return merged;
|
|
// }
|
|
catchall(index2) {
|
|
return new _ZodObject({
|
|
...this._def,
|
|
catchall: index2
|
|
});
|
|
}
|
|
pick(mask) {
|
|
const shape = {};
|
|
util.objectKeys(mask).forEach((key2) => {
|
|
if (mask[key2] && this.shape[key2]) {
|
|
shape[key2] = this.shape[key2];
|
|
}
|
|
});
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => shape
|
|
});
|
|
}
|
|
omit(mask) {
|
|
const shape = {};
|
|
util.objectKeys(this.shape).forEach((key2) => {
|
|
if (!mask[key2]) {
|
|
shape[key2] = this.shape[key2];
|
|
}
|
|
});
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => shape
|
|
});
|
|
}
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
deepPartial() {
|
|
return deepPartialify(this);
|
|
}
|
|
partial(mask) {
|
|
const newShape = {};
|
|
util.objectKeys(this.shape).forEach((key2) => {
|
|
const fieldSchema = this.shape[key2];
|
|
if (mask && !mask[key2]) {
|
|
newShape[key2] = fieldSchema;
|
|
} else {
|
|
newShape[key2] = fieldSchema.optional();
|
|
}
|
|
});
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => newShape
|
|
});
|
|
}
|
|
required(mask) {
|
|
const newShape = {};
|
|
util.objectKeys(this.shape).forEach((key2) => {
|
|
if (mask && !mask[key2]) {
|
|
newShape[key2] = this.shape[key2];
|
|
} else {
|
|
const fieldSchema = this.shape[key2];
|
|
let newField = fieldSchema;
|
|
while (newField instanceof ZodOptional) {
|
|
newField = newField._def.innerType;
|
|
}
|
|
newShape[key2] = newField;
|
|
}
|
|
});
|
|
return new _ZodObject({
|
|
...this._def,
|
|
shape: () => newShape
|
|
});
|
|
}
|
|
keyof() {
|
|
return createZodEnum(util.objectKeys(this.shape));
|
|
}
|
|
};
|
|
ZodObject.create = (shape, params) => {
|
|
return new ZodObject({
|
|
shape: () => shape,
|
|
unknownKeys: "strip",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodObject.strictCreate = (shape, params) => {
|
|
return new ZodObject({
|
|
shape: () => shape,
|
|
unknownKeys: "strict",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodObject.lazycreate = (shape, params) => {
|
|
return new ZodObject({
|
|
shape,
|
|
unknownKeys: "strip",
|
|
catchall: ZodNever.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodObject,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodUnion = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const options = this._def.options;
|
|
function handleResults(results) {
|
|
for (const result of results) {
|
|
if (result.result.status === "valid") {
|
|
return result.result;
|
|
}
|
|
}
|
|
for (const result of results) {
|
|
if (result.result.status === "dirty") {
|
|
ctx.common.issues.push(...result.ctx.common.issues);
|
|
return result.result;
|
|
}
|
|
}
|
|
const unionErrors = results.map((result) => new ZodError(result.ctx.common.issues));
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union,
|
|
unionErrors
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.common.async) {
|
|
return Promise.all(options.map(async (option) => {
|
|
const childCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
},
|
|
parent: null
|
|
};
|
|
return {
|
|
result: await option._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: childCtx
|
|
}),
|
|
ctx: childCtx
|
|
};
|
|
})).then(handleResults);
|
|
} else {
|
|
let dirty = void 0;
|
|
const issues = [];
|
|
for (const option of options) {
|
|
const childCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
},
|
|
parent: null
|
|
};
|
|
const result = option._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: childCtx
|
|
});
|
|
if (result.status === "valid") {
|
|
return result;
|
|
} else if (result.status === "dirty" && !dirty) {
|
|
dirty = { result, ctx: childCtx };
|
|
}
|
|
if (childCtx.common.issues.length) {
|
|
issues.push(childCtx.common.issues);
|
|
}
|
|
}
|
|
if (dirty) {
|
|
ctx.common.issues.push(...dirty.ctx.common.issues);
|
|
return dirty.result;
|
|
}
|
|
const unionErrors = issues.map((issues2) => new ZodError(issues2));
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union,
|
|
unionErrors
|
|
});
|
|
return INVALID;
|
|
}
|
|
}
|
|
get options() {
|
|
return this._def.options;
|
|
}
|
|
};
|
|
ZodUnion.create = (types, params) => {
|
|
return new ZodUnion({
|
|
options: types,
|
|
typeName: ZodFirstPartyTypeKind.ZodUnion,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var getDiscriminator = (type) => {
|
|
if (type instanceof ZodLazy) {
|
|
return getDiscriminator(type.schema);
|
|
} else if (type instanceof ZodEffects) {
|
|
return getDiscriminator(type.innerType());
|
|
} else if (type instanceof ZodLiteral) {
|
|
return [type.value];
|
|
} else if (type instanceof ZodEnum) {
|
|
return type.options;
|
|
} else if (type instanceof ZodNativeEnum) {
|
|
return util.objectValues(type.enum);
|
|
} else if (type instanceof ZodDefault) {
|
|
return getDiscriminator(type._def.innerType);
|
|
} else if (type instanceof ZodUndefined) {
|
|
return [void 0];
|
|
} else if (type instanceof ZodNull) {
|
|
return [null];
|
|
} else if (type instanceof ZodOptional) {
|
|
return [void 0, ...getDiscriminator(type.unwrap())];
|
|
} else if (type instanceof ZodNullable) {
|
|
return [null, ...getDiscriminator(type.unwrap())];
|
|
} else if (type instanceof ZodBranded) {
|
|
return getDiscriminator(type.unwrap());
|
|
} else if (type instanceof ZodReadonly) {
|
|
return getDiscriminator(type.unwrap());
|
|
} else if (type instanceof ZodCatch) {
|
|
return getDiscriminator(type._def.innerType);
|
|
} else {
|
|
return [];
|
|
}
|
|
};
|
|
var ZodDiscriminatedUnion = class _ZodDiscriminatedUnion extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.object) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const discriminator = this.discriminator;
|
|
const discriminatorValue = ctx.data[discriminator];
|
|
const option = this.optionsMap.get(discriminatorValue);
|
|
if (!option) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_union_discriminator,
|
|
options: Array.from(this.optionsMap.keys()),
|
|
path: [discriminator]
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.common.async) {
|
|
return option._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
} else {
|
|
return option._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
}
|
|
get discriminator() {
|
|
return this._def.discriminator;
|
|
}
|
|
get options() {
|
|
return this._def.options;
|
|
}
|
|
get optionsMap() {
|
|
return this._def.optionsMap;
|
|
}
|
|
/**
|
|
* The constructor of the discriminated union schema. Its behaviour is very similar to that of the normal z.union() constructor.
|
|
* However, it only allows a union of objects, all of which need to share a discriminator property. This property must
|
|
* have a different value for each object in the union.
|
|
* @param discriminator the name of the discriminator property
|
|
* @param types an array of object schemas
|
|
* @param params
|
|
*/
|
|
static create(discriminator, options, params) {
|
|
const optionsMap = /* @__PURE__ */ new Map();
|
|
for (const type of options) {
|
|
const discriminatorValues = getDiscriminator(type.shape[discriminator]);
|
|
if (!discriminatorValues.length) {
|
|
throw new Error(`A discriminator value for key \`${discriminator}\` could not be extracted from all schema options`);
|
|
}
|
|
for (const value of discriminatorValues) {
|
|
if (optionsMap.has(value)) {
|
|
throw new Error(`Discriminator property ${String(discriminator)} has duplicate value ${String(value)}`);
|
|
}
|
|
optionsMap.set(value, type);
|
|
}
|
|
}
|
|
return new _ZodDiscriminatedUnion({
|
|
typeName: ZodFirstPartyTypeKind.ZodDiscriminatedUnion,
|
|
discriminator,
|
|
options,
|
|
optionsMap,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
};
|
|
function mergeValues(a, b) {
|
|
const aType = getParsedType(a);
|
|
const bType = getParsedType(b);
|
|
if (a === b) {
|
|
return { valid: true, data: a };
|
|
} else if (aType === ZodParsedType.object && bType === ZodParsedType.object) {
|
|
const bKeys = util.objectKeys(b);
|
|
const sharedKeys = util.objectKeys(a).filter((key2) => bKeys.indexOf(key2) !== -1);
|
|
const newObj = { ...a, ...b };
|
|
for (const key2 of sharedKeys) {
|
|
const sharedValue = mergeValues(a[key2], b[key2]);
|
|
if (!sharedValue.valid) {
|
|
return { valid: false };
|
|
}
|
|
newObj[key2] = sharedValue.data;
|
|
}
|
|
return { valid: true, data: newObj };
|
|
} else if (aType === ZodParsedType.array && bType === ZodParsedType.array) {
|
|
if (a.length !== b.length) {
|
|
return { valid: false };
|
|
}
|
|
const newArray = [];
|
|
for (let index2 = 0; index2 < a.length; index2++) {
|
|
const itemA = a[index2];
|
|
const itemB = b[index2];
|
|
const sharedValue = mergeValues(itemA, itemB);
|
|
if (!sharedValue.valid) {
|
|
return { valid: false };
|
|
}
|
|
newArray.push(sharedValue.data);
|
|
}
|
|
return { valid: true, data: newArray };
|
|
} else if (aType === ZodParsedType.date && bType === ZodParsedType.date && +a === +b) {
|
|
return { valid: true, data: a };
|
|
} else {
|
|
return { valid: false };
|
|
}
|
|
}
|
|
var ZodIntersection = class extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const handleParsed = (parsedLeft, parsedRight) => {
|
|
if (isAborted(parsedLeft) || isAborted(parsedRight)) {
|
|
return INVALID;
|
|
}
|
|
const merged = mergeValues(parsedLeft.value, parsedRight.value);
|
|
if (!merged.valid) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_intersection_types
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (isDirty(parsedLeft) || isDirty(parsedRight)) {
|
|
status.dirty();
|
|
}
|
|
return { status: status.value, value: merged.data };
|
|
};
|
|
if (ctx.common.async) {
|
|
return Promise.all([
|
|
this._def.left._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}),
|
|
this._def.right._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
})
|
|
]).then(([left, right]) => handleParsed(left, right));
|
|
} else {
|
|
return handleParsed(this._def.left._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}), this._def.right._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
}));
|
|
}
|
|
}
|
|
};
|
|
ZodIntersection.create = (left, right, params) => {
|
|
return new ZodIntersection({
|
|
left,
|
|
right,
|
|
typeName: ZodFirstPartyTypeKind.ZodIntersection,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodTuple = class _ZodTuple extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.array) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.array,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (ctx.data.length < this._def.items.length) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: this._def.items.length,
|
|
inclusive: true,
|
|
exact: false,
|
|
type: "array"
|
|
});
|
|
return INVALID;
|
|
}
|
|
const rest = this._def.rest;
|
|
if (!rest && ctx.data.length > this._def.items.length) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: this._def.items.length,
|
|
inclusive: true,
|
|
exact: false,
|
|
type: "array"
|
|
});
|
|
status.dirty();
|
|
}
|
|
const items = [...ctx.data].map((item, itemIndex) => {
|
|
const schema = this._def.items[itemIndex] || this._def.rest;
|
|
if (!schema)
|
|
return null;
|
|
return schema._parse(new ParseInputLazyPath(ctx, item, ctx.path, itemIndex));
|
|
}).filter((x) => !!x);
|
|
if (ctx.common.async) {
|
|
return Promise.all(items).then((results) => {
|
|
return ParseStatus.mergeArray(status, results);
|
|
});
|
|
} else {
|
|
return ParseStatus.mergeArray(status, items);
|
|
}
|
|
}
|
|
get items() {
|
|
return this._def.items;
|
|
}
|
|
rest(rest) {
|
|
return new _ZodTuple({
|
|
...this._def,
|
|
rest
|
|
});
|
|
}
|
|
};
|
|
ZodTuple.create = (schemas, params) => {
|
|
if (!Array.isArray(schemas)) {
|
|
throw new Error("You must pass an array of schemas to z.tuple([ ... ])");
|
|
}
|
|
return new ZodTuple({
|
|
items: schemas,
|
|
typeName: ZodFirstPartyTypeKind.ZodTuple,
|
|
rest: null,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodRecord = class _ZodRecord extends ZodType {
|
|
get keySchema() {
|
|
return this._def.keyType;
|
|
}
|
|
get valueSchema() {
|
|
return this._def.valueType;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.object) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.object,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const pairs = [];
|
|
const keyType = this._def.keyType;
|
|
const valueType = this._def.valueType;
|
|
for (const key2 in ctx.data) {
|
|
pairs.push({
|
|
key: keyType._parse(new ParseInputLazyPath(ctx, key2, ctx.path, key2)),
|
|
value: valueType._parse(new ParseInputLazyPath(ctx, ctx.data[key2], ctx.path, key2)),
|
|
alwaysSet: key2 in ctx.data
|
|
});
|
|
}
|
|
if (ctx.common.async) {
|
|
return ParseStatus.mergeObjectAsync(status, pairs);
|
|
} else {
|
|
return ParseStatus.mergeObjectSync(status, pairs);
|
|
}
|
|
}
|
|
get element() {
|
|
return this._def.valueType;
|
|
}
|
|
static create(first, second, third) {
|
|
if (second instanceof ZodType) {
|
|
return new _ZodRecord({
|
|
keyType: first,
|
|
valueType: second,
|
|
typeName: ZodFirstPartyTypeKind.ZodRecord,
|
|
...processCreateParams(third)
|
|
});
|
|
}
|
|
return new _ZodRecord({
|
|
keyType: ZodString.create(),
|
|
valueType: first,
|
|
typeName: ZodFirstPartyTypeKind.ZodRecord,
|
|
...processCreateParams(second)
|
|
});
|
|
}
|
|
};
|
|
var ZodMap = class extends ZodType {
|
|
get keySchema() {
|
|
return this._def.keyType;
|
|
}
|
|
get valueSchema() {
|
|
return this._def.valueType;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.map) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.map,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const keyType = this._def.keyType;
|
|
const valueType = this._def.valueType;
|
|
const pairs = [...ctx.data.entries()].map(([key2, value], index2) => {
|
|
return {
|
|
key: keyType._parse(new ParseInputLazyPath(ctx, key2, ctx.path, [index2, "key"])),
|
|
value: valueType._parse(new ParseInputLazyPath(ctx, value, ctx.path, [index2, "value"]))
|
|
};
|
|
});
|
|
if (ctx.common.async) {
|
|
const finalMap = /* @__PURE__ */ new Map();
|
|
return Promise.resolve().then(async () => {
|
|
for (const pair of pairs) {
|
|
const key2 = await pair.key;
|
|
const value = await pair.value;
|
|
if (key2.status === "aborted" || value.status === "aborted") {
|
|
return INVALID;
|
|
}
|
|
if (key2.status === "dirty" || value.status === "dirty") {
|
|
status.dirty();
|
|
}
|
|
finalMap.set(key2.value, value.value);
|
|
}
|
|
return { status: status.value, value: finalMap };
|
|
});
|
|
} else {
|
|
const finalMap = /* @__PURE__ */ new Map();
|
|
for (const pair of pairs) {
|
|
const key2 = pair.key;
|
|
const value = pair.value;
|
|
if (key2.status === "aborted" || value.status === "aborted") {
|
|
return INVALID;
|
|
}
|
|
if (key2.status === "dirty" || value.status === "dirty") {
|
|
status.dirty();
|
|
}
|
|
finalMap.set(key2.value, value.value);
|
|
}
|
|
return { status: status.value, value: finalMap };
|
|
}
|
|
}
|
|
};
|
|
ZodMap.create = (keyType, valueType, params) => {
|
|
return new ZodMap({
|
|
valueType,
|
|
keyType,
|
|
typeName: ZodFirstPartyTypeKind.ZodMap,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodSet = class _ZodSet extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.set) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.set,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const def = this._def;
|
|
if (def.minSize !== null) {
|
|
if (ctx.data.size < def.minSize.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_small,
|
|
minimum: def.minSize.value,
|
|
type: "set",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.minSize.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
if (def.maxSize !== null) {
|
|
if (ctx.data.size > def.maxSize.value) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.too_big,
|
|
maximum: def.maxSize.value,
|
|
type: "set",
|
|
inclusive: true,
|
|
exact: false,
|
|
message: def.maxSize.message
|
|
});
|
|
status.dirty();
|
|
}
|
|
}
|
|
const valueType = this._def.valueType;
|
|
function finalizeSet(elements2) {
|
|
const parsedSet = /* @__PURE__ */ new Set();
|
|
for (const element2 of elements2) {
|
|
if (element2.status === "aborted")
|
|
return INVALID;
|
|
if (element2.status === "dirty")
|
|
status.dirty();
|
|
parsedSet.add(element2.value);
|
|
}
|
|
return { status: status.value, value: parsedSet };
|
|
}
|
|
const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i)));
|
|
if (ctx.common.async) {
|
|
return Promise.all(elements).then((elements2) => finalizeSet(elements2));
|
|
} else {
|
|
return finalizeSet(elements);
|
|
}
|
|
}
|
|
min(minSize, message) {
|
|
return new _ZodSet({
|
|
...this._def,
|
|
minSize: { value: minSize, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
max(maxSize, message) {
|
|
return new _ZodSet({
|
|
...this._def,
|
|
maxSize: { value: maxSize, message: errorUtil.toString(message) }
|
|
});
|
|
}
|
|
size(size2, message) {
|
|
return this.min(size2, message).max(size2, message);
|
|
}
|
|
nonempty(message) {
|
|
return this.min(1, message);
|
|
}
|
|
};
|
|
ZodSet.create = (valueType, params) => {
|
|
return new ZodSet({
|
|
valueType,
|
|
minSize: null,
|
|
maxSize: null,
|
|
typeName: ZodFirstPartyTypeKind.ZodSet,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodFunction = class _ZodFunction extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.validate = this.implement;
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.function) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.function,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
function makeArgsIssue(args, error) {
|
|
return makeIssue({
|
|
data: args,
|
|
path: ctx.path,
|
|
errorMaps: [
|
|
ctx.common.contextualErrorMap,
|
|
ctx.schemaErrorMap,
|
|
getErrorMap(),
|
|
errorMap
|
|
].filter((x) => !!x),
|
|
issueData: {
|
|
code: ZodIssueCode.invalid_arguments,
|
|
argumentsError: error
|
|
}
|
|
});
|
|
}
|
|
function makeReturnsIssue(returns, error) {
|
|
return makeIssue({
|
|
data: returns,
|
|
path: ctx.path,
|
|
errorMaps: [
|
|
ctx.common.contextualErrorMap,
|
|
ctx.schemaErrorMap,
|
|
getErrorMap(),
|
|
errorMap
|
|
].filter((x) => !!x),
|
|
issueData: {
|
|
code: ZodIssueCode.invalid_return_type,
|
|
returnTypeError: error
|
|
}
|
|
});
|
|
}
|
|
const params = { errorMap: ctx.common.contextualErrorMap };
|
|
const fn = ctx.data;
|
|
if (this._def.returns instanceof ZodPromise) {
|
|
const me = this;
|
|
return OK(async function(...args) {
|
|
const error = new ZodError([]);
|
|
const parsedArgs = await me._def.args.parseAsync(args, params).catch((e) => {
|
|
error.addIssue(makeArgsIssue(args, e));
|
|
throw error;
|
|
});
|
|
const result = await Reflect.apply(fn, this, parsedArgs);
|
|
const parsedReturns = await me._def.returns._def.type.parseAsync(result, params).catch((e) => {
|
|
error.addIssue(makeReturnsIssue(result, e));
|
|
throw error;
|
|
});
|
|
return parsedReturns;
|
|
});
|
|
} else {
|
|
const me = this;
|
|
return OK(function(...args) {
|
|
const parsedArgs = me._def.args.safeParse(args, params);
|
|
if (!parsedArgs.success) {
|
|
throw new ZodError([makeArgsIssue(args, parsedArgs.error)]);
|
|
}
|
|
const result = Reflect.apply(fn, this, parsedArgs.data);
|
|
const parsedReturns = me._def.returns.safeParse(result, params);
|
|
if (!parsedReturns.success) {
|
|
throw new ZodError([makeReturnsIssue(result, parsedReturns.error)]);
|
|
}
|
|
return parsedReturns.data;
|
|
});
|
|
}
|
|
}
|
|
parameters() {
|
|
return this._def.args;
|
|
}
|
|
returnType() {
|
|
return this._def.returns;
|
|
}
|
|
args(...items) {
|
|
return new _ZodFunction({
|
|
...this._def,
|
|
args: ZodTuple.create(items).rest(ZodUnknown.create())
|
|
});
|
|
}
|
|
returns(returnType) {
|
|
return new _ZodFunction({
|
|
...this._def,
|
|
returns: returnType
|
|
});
|
|
}
|
|
implement(func) {
|
|
const validatedFunc = this.parse(func);
|
|
return validatedFunc;
|
|
}
|
|
strictImplement(func) {
|
|
const validatedFunc = this.parse(func);
|
|
return validatedFunc;
|
|
}
|
|
static create(args, returns, params) {
|
|
return new _ZodFunction({
|
|
args: args ? args : ZodTuple.create([]).rest(ZodUnknown.create()),
|
|
returns: returns || ZodUnknown.create(),
|
|
typeName: ZodFirstPartyTypeKind.ZodFunction,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
};
|
|
var ZodLazy = class extends ZodType {
|
|
get schema() {
|
|
return this._def.getter();
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const lazySchema = this._def.getter();
|
|
return lazySchema._parse({ data: ctx.data, path: ctx.path, parent: ctx });
|
|
}
|
|
};
|
|
ZodLazy.create = (getter, params) => {
|
|
return new ZodLazy({
|
|
getter,
|
|
typeName: ZodFirstPartyTypeKind.ZodLazy,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodLiteral = class extends ZodType {
|
|
_parse(input) {
|
|
if (input.data !== this._def.value) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_literal,
|
|
expected: this._def.value
|
|
});
|
|
return INVALID;
|
|
}
|
|
return { status: "valid", value: input.data };
|
|
}
|
|
get value() {
|
|
return this._def.value;
|
|
}
|
|
};
|
|
ZodLiteral.create = (value, params) => {
|
|
return new ZodLiteral({
|
|
value,
|
|
typeName: ZodFirstPartyTypeKind.ZodLiteral,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function createZodEnum(values, params) {
|
|
return new ZodEnum({
|
|
values,
|
|
typeName: ZodFirstPartyTypeKind.ZodEnum,
|
|
...processCreateParams(params)
|
|
});
|
|
}
|
|
var ZodEnum = class _ZodEnum extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
_ZodEnum_cache.set(this, void 0);
|
|
}
|
|
_parse(input) {
|
|
if (typeof input.data !== "string") {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
const expectedValues = this._def.values;
|
|
addIssueToContext(ctx, {
|
|
expected: util.joinValues(expectedValues),
|
|
received: ctx.parsedType,
|
|
code: ZodIssueCode.invalid_type
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (!__classPrivateFieldGet(this, _ZodEnum_cache, "f")) {
|
|
__classPrivateFieldSet(this, _ZodEnum_cache, new Set(this._def.values), "f");
|
|
}
|
|
if (!__classPrivateFieldGet(this, _ZodEnum_cache, "f").has(input.data)) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
const expectedValues = this._def.values;
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_enum_value,
|
|
options: expectedValues
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
get options() {
|
|
return this._def.values;
|
|
}
|
|
get enum() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
get Values() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
get Enum() {
|
|
const enumValues = {};
|
|
for (const val of this._def.values) {
|
|
enumValues[val] = val;
|
|
}
|
|
return enumValues;
|
|
}
|
|
extract(values, newDef = this._def) {
|
|
return _ZodEnum.create(values, {
|
|
...this._def,
|
|
...newDef
|
|
});
|
|
}
|
|
exclude(values, newDef = this._def) {
|
|
return _ZodEnum.create(this.options.filter((opt) => !values.includes(opt)), {
|
|
...this._def,
|
|
...newDef
|
|
});
|
|
}
|
|
};
|
|
_ZodEnum_cache = /* @__PURE__ */ new WeakMap();
|
|
ZodEnum.create = createZodEnum;
|
|
var ZodNativeEnum = class extends ZodType {
|
|
constructor() {
|
|
super(...arguments);
|
|
_ZodNativeEnum_cache.set(this, void 0);
|
|
}
|
|
_parse(input) {
|
|
const nativeEnumValues = util.getValidEnumValues(this._def.values);
|
|
const ctx = this._getOrReturnCtx(input);
|
|
if (ctx.parsedType !== ZodParsedType.string && ctx.parsedType !== ZodParsedType.number) {
|
|
const expectedValues = util.objectValues(nativeEnumValues);
|
|
addIssueToContext(ctx, {
|
|
expected: util.joinValues(expectedValues),
|
|
received: ctx.parsedType,
|
|
code: ZodIssueCode.invalid_type
|
|
});
|
|
return INVALID;
|
|
}
|
|
if (!__classPrivateFieldGet(this, _ZodNativeEnum_cache, "f")) {
|
|
__classPrivateFieldSet(this, _ZodNativeEnum_cache, new Set(util.getValidEnumValues(this._def.values)), "f");
|
|
}
|
|
if (!__classPrivateFieldGet(this, _ZodNativeEnum_cache, "f").has(input.data)) {
|
|
const expectedValues = util.objectValues(nativeEnumValues);
|
|
addIssueToContext(ctx, {
|
|
received: ctx.data,
|
|
code: ZodIssueCode.invalid_enum_value,
|
|
options: expectedValues
|
|
});
|
|
return INVALID;
|
|
}
|
|
return OK(input.data);
|
|
}
|
|
get enum() {
|
|
return this._def.values;
|
|
}
|
|
};
|
|
_ZodNativeEnum_cache = /* @__PURE__ */ new WeakMap();
|
|
ZodNativeEnum.create = (values, params) => {
|
|
return new ZodNativeEnum({
|
|
values,
|
|
typeName: ZodFirstPartyTypeKind.ZodNativeEnum,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodPromise = class extends ZodType {
|
|
unwrap() {
|
|
return this._def.type;
|
|
}
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
if (ctx.parsedType !== ZodParsedType.promise && ctx.common.async === false) {
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.promise,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
const promisified = ctx.parsedType === ZodParsedType.promise ? ctx.data : Promise.resolve(ctx.data);
|
|
return OK(promisified.then((data) => {
|
|
return this._def.type.parseAsync(data, {
|
|
path: ctx.path,
|
|
errorMap: ctx.common.contextualErrorMap
|
|
});
|
|
}));
|
|
}
|
|
};
|
|
ZodPromise.create = (schema, params) => {
|
|
return new ZodPromise({
|
|
type: schema,
|
|
typeName: ZodFirstPartyTypeKind.ZodPromise,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodEffects = class extends ZodType {
|
|
innerType() {
|
|
return this._def.schema;
|
|
}
|
|
sourceType() {
|
|
return this._def.schema._def.typeName === ZodFirstPartyTypeKind.ZodEffects ? this._def.schema.sourceType() : this._def.schema;
|
|
}
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
const effect2 = this._def.effect || null;
|
|
const checkCtx = {
|
|
addIssue: (arg) => {
|
|
addIssueToContext(ctx, arg);
|
|
if (arg.fatal) {
|
|
status.abort();
|
|
} else {
|
|
status.dirty();
|
|
}
|
|
},
|
|
get path() {
|
|
return ctx.path;
|
|
}
|
|
};
|
|
checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);
|
|
if (effect2.type === "preprocess") {
|
|
const processed = effect2.transform(ctx.data, checkCtx);
|
|
if (ctx.common.async) {
|
|
return Promise.resolve(processed).then(async (processed2) => {
|
|
if (status.value === "aborted")
|
|
return INVALID;
|
|
const result = await this._def.schema._parseAsync({
|
|
data: processed2,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (result.status === "aborted")
|
|
return INVALID;
|
|
if (result.status === "dirty")
|
|
return DIRTY2(result.value);
|
|
if (status.value === "dirty")
|
|
return DIRTY2(result.value);
|
|
return result;
|
|
});
|
|
} else {
|
|
if (status.value === "aborted")
|
|
return INVALID;
|
|
const result = this._def.schema._parseSync({
|
|
data: processed,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (result.status === "aborted")
|
|
return INVALID;
|
|
if (result.status === "dirty")
|
|
return DIRTY2(result.value);
|
|
if (status.value === "dirty")
|
|
return DIRTY2(result.value);
|
|
return result;
|
|
}
|
|
}
|
|
if (effect2.type === "refinement") {
|
|
const executeRefinement = (acc) => {
|
|
const result = effect2.refinement(acc, checkCtx);
|
|
if (ctx.common.async) {
|
|
return Promise.resolve(result);
|
|
}
|
|
if (result instanceof Promise) {
|
|
throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");
|
|
}
|
|
return acc;
|
|
};
|
|
if (ctx.common.async === false) {
|
|
const inner = this._def.schema._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inner.status === "aborted")
|
|
return INVALID;
|
|
if (inner.status === "dirty")
|
|
status.dirty();
|
|
executeRefinement(inner.value);
|
|
return { status: status.value, value: inner.value };
|
|
} else {
|
|
return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((inner) => {
|
|
if (inner.status === "aborted")
|
|
return INVALID;
|
|
if (inner.status === "dirty")
|
|
status.dirty();
|
|
return executeRefinement(inner.value).then(() => {
|
|
return { status: status.value, value: inner.value };
|
|
});
|
|
});
|
|
}
|
|
}
|
|
if (effect2.type === "transform") {
|
|
if (ctx.common.async === false) {
|
|
const base = this._def.schema._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (!isValid(base))
|
|
return base;
|
|
const result = effect2.transform(base.value, checkCtx);
|
|
if (result instanceof Promise) {
|
|
throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`);
|
|
}
|
|
return { status: status.value, value: result };
|
|
} else {
|
|
return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((base) => {
|
|
if (!isValid(base))
|
|
return base;
|
|
return Promise.resolve(effect2.transform(base.value, checkCtx)).then((result) => ({ status: status.value, value: result }));
|
|
});
|
|
}
|
|
}
|
|
util.assertNever(effect2);
|
|
}
|
|
};
|
|
ZodEffects.create = (schema, effect2, params) => {
|
|
return new ZodEffects({
|
|
schema,
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
effect: effect2,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
ZodEffects.createWithPreprocess = (preprocess, schema, params) => {
|
|
return new ZodEffects({
|
|
schema,
|
|
effect: { type: "preprocess", transform: preprocess },
|
|
typeName: ZodFirstPartyTypeKind.ZodEffects,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodOptional = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType === ZodParsedType.undefined) {
|
|
return OK(void 0);
|
|
}
|
|
return this._def.innerType._parse(input);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodOptional.create = (type, params) => {
|
|
return new ZodOptional({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodOptional,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNullable = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType === ZodParsedType.null) {
|
|
return OK(null);
|
|
}
|
|
return this._def.innerType._parse(input);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodNullable.create = (type, params) => {
|
|
return new ZodNullable({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodNullable,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodDefault = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
let data = ctx.data;
|
|
if (ctx.parsedType === ZodParsedType.undefined) {
|
|
data = this._def.defaultValue();
|
|
}
|
|
return this._def.innerType._parse({
|
|
data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
removeDefault() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodDefault.create = (type, params) => {
|
|
return new ZodDefault({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodDefault,
|
|
defaultValue: typeof params.default === "function" ? params.default : () => params.default,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodCatch = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const newCtx = {
|
|
...ctx,
|
|
common: {
|
|
...ctx.common,
|
|
issues: []
|
|
}
|
|
};
|
|
const result = this._def.innerType._parse({
|
|
data: newCtx.data,
|
|
path: newCtx.path,
|
|
parent: {
|
|
...newCtx
|
|
}
|
|
});
|
|
if (isAsync(result)) {
|
|
return result.then((result2) => {
|
|
return {
|
|
status: "valid",
|
|
value: result2.status === "valid" ? result2.value : this._def.catchValue({
|
|
get error() {
|
|
return new ZodError(newCtx.common.issues);
|
|
},
|
|
input: newCtx.data
|
|
})
|
|
};
|
|
});
|
|
} else {
|
|
return {
|
|
status: "valid",
|
|
value: result.status === "valid" ? result.value : this._def.catchValue({
|
|
get error() {
|
|
return new ZodError(newCtx.common.issues);
|
|
},
|
|
input: newCtx.data
|
|
})
|
|
};
|
|
}
|
|
}
|
|
removeCatch() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodCatch.create = (type, params) => {
|
|
return new ZodCatch({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodCatch,
|
|
catchValue: typeof params.catch === "function" ? params.catch : () => params.catch,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var ZodNaN = class extends ZodType {
|
|
_parse(input) {
|
|
const parsedType = this._getType(input);
|
|
if (parsedType !== ZodParsedType.nan) {
|
|
const ctx = this._getOrReturnCtx(input);
|
|
addIssueToContext(ctx, {
|
|
code: ZodIssueCode.invalid_type,
|
|
expected: ZodParsedType.nan,
|
|
received: ctx.parsedType
|
|
});
|
|
return INVALID;
|
|
}
|
|
return { status: "valid", value: input.data };
|
|
}
|
|
};
|
|
ZodNaN.create = (params) => {
|
|
return new ZodNaN({
|
|
typeName: ZodFirstPartyTypeKind.ZodNaN,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
var BRAND = /* @__PURE__ */ Symbol("zod_brand");
|
|
var ZodBranded = class extends ZodType {
|
|
_parse(input) {
|
|
const { ctx } = this._processInputParams(input);
|
|
const data = ctx.data;
|
|
return this._def.type._parse({
|
|
data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
unwrap() {
|
|
return this._def.type;
|
|
}
|
|
};
|
|
var ZodPipeline = class _ZodPipeline extends ZodType {
|
|
_parse(input) {
|
|
const { status, ctx } = this._processInputParams(input);
|
|
if (ctx.common.async) {
|
|
const handleAsync = async () => {
|
|
const inResult = await this._def.in._parseAsync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inResult.status === "aborted")
|
|
return INVALID;
|
|
if (inResult.status === "dirty") {
|
|
status.dirty();
|
|
return DIRTY2(inResult.value);
|
|
} else {
|
|
return this._def.out._parseAsync({
|
|
data: inResult.value,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
};
|
|
return handleAsync();
|
|
} else {
|
|
const inResult = this._def.in._parseSync({
|
|
data: ctx.data,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
if (inResult.status === "aborted")
|
|
return INVALID;
|
|
if (inResult.status === "dirty") {
|
|
status.dirty();
|
|
return {
|
|
status: "dirty",
|
|
value: inResult.value
|
|
};
|
|
} else {
|
|
return this._def.out._parseSync({
|
|
data: inResult.value,
|
|
path: ctx.path,
|
|
parent: ctx
|
|
});
|
|
}
|
|
}
|
|
}
|
|
static create(a, b) {
|
|
return new _ZodPipeline({
|
|
in: a,
|
|
out: b,
|
|
typeName: ZodFirstPartyTypeKind.ZodPipeline
|
|
});
|
|
}
|
|
};
|
|
var ZodReadonly = class extends ZodType {
|
|
_parse(input) {
|
|
const result = this._def.innerType._parse(input);
|
|
const freeze = (data) => {
|
|
if (isValid(data)) {
|
|
data.value = Object.freeze(data.value);
|
|
}
|
|
return data;
|
|
};
|
|
return isAsync(result) ? result.then((data) => freeze(data)) : freeze(result);
|
|
}
|
|
unwrap() {
|
|
return this._def.innerType;
|
|
}
|
|
};
|
|
ZodReadonly.create = (type, params) => {
|
|
return new ZodReadonly({
|
|
innerType: type,
|
|
typeName: ZodFirstPartyTypeKind.ZodReadonly,
|
|
...processCreateParams(params)
|
|
});
|
|
};
|
|
function custom(check, params = {}, fatal) {
|
|
if (check)
|
|
return ZodAny.create().superRefine((data, ctx) => {
|
|
var _a5, _b3;
|
|
if (!check(data)) {
|
|
const p = typeof params === "function" ? params(data) : typeof params === "string" ? { message: params } : params;
|
|
const _fatal = (_b3 = (_a5 = p.fatal) !== null && _a5 !== void 0 ? _a5 : fatal) !== null && _b3 !== void 0 ? _b3 : true;
|
|
const p2 = typeof p === "string" ? { message: p } : p;
|
|
ctx.addIssue({ code: "custom", ...p2, fatal: _fatal });
|
|
}
|
|
});
|
|
return ZodAny.create();
|
|
}
|
|
var late = {
|
|
object: ZodObject.lazycreate
|
|
};
|
|
var ZodFirstPartyTypeKind;
|
|
(function(ZodFirstPartyTypeKind2) {
|
|
ZodFirstPartyTypeKind2["ZodString"] = "ZodString";
|
|
ZodFirstPartyTypeKind2["ZodNumber"] = "ZodNumber";
|
|
ZodFirstPartyTypeKind2["ZodNaN"] = "ZodNaN";
|
|
ZodFirstPartyTypeKind2["ZodBigInt"] = "ZodBigInt";
|
|
ZodFirstPartyTypeKind2["ZodBoolean"] = "ZodBoolean";
|
|
ZodFirstPartyTypeKind2["ZodDate"] = "ZodDate";
|
|
ZodFirstPartyTypeKind2["ZodSymbol"] = "ZodSymbol";
|
|
ZodFirstPartyTypeKind2["ZodUndefined"] = "ZodUndefined";
|
|
ZodFirstPartyTypeKind2["ZodNull"] = "ZodNull";
|
|
ZodFirstPartyTypeKind2["ZodAny"] = "ZodAny";
|
|
ZodFirstPartyTypeKind2["ZodUnknown"] = "ZodUnknown";
|
|
ZodFirstPartyTypeKind2["ZodNever"] = "ZodNever";
|
|
ZodFirstPartyTypeKind2["ZodVoid"] = "ZodVoid";
|
|
ZodFirstPartyTypeKind2["ZodArray"] = "ZodArray";
|
|
ZodFirstPartyTypeKind2["ZodObject"] = "ZodObject";
|
|
ZodFirstPartyTypeKind2["ZodUnion"] = "ZodUnion";
|
|
ZodFirstPartyTypeKind2["ZodDiscriminatedUnion"] = "ZodDiscriminatedUnion";
|
|
ZodFirstPartyTypeKind2["ZodIntersection"] = "ZodIntersection";
|
|
ZodFirstPartyTypeKind2["ZodTuple"] = "ZodTuple";
|
|
ZodFirstPartyTypeKind2["ZodRecord"] = "ZodRecord";
|
|
ZodFirstPartyTypeKind2["ZodMap"] = "ZodMap";
|
|
ZodFirstPartyTypeKind2["ZodSet"] = "ZodSet";
|
|
ZodFirstPartyTypeKind2["ZodFunction"] = "ZodFunction";
|
|
ZodFirstPartyTypeKind2["ZodLazy"] = "ZodLazy";
|
|
ZodFirstPartyTypeKind2["ZodLiteral"] = "ZodLiteral";
|
|
ZodFirstPartyTypeKind2["ZodEnum"] = "ZodEnum";
|
|
ZodFirstPartyTypeKind2["ZodEffects"] = "ZodEffects";
|
|
ZodFirstPartyTypeKind2["ZodNativeEnum"] = "ZodNativeEnum";
|
|
ZodFirstPartyTypeKind2["ZodOptional"] = "ZodOptional";
|
|
ZodFirstPartyTypeKind2["ZodNullable"] = "ZodNullable";
|
|
ZodFirstPartyTypeKind2["ZodDefault"] = "ZodDefault";
|
|
ZodFirstPartyTypeKind2["ZodCatch"] = "ZodCatch";
|
|
ZodFirstPartyTypeKind2["ZodPromise"] = "ZodPromise";
|
|
ZodFirstPartyTypeKind2["ZodBranded"] = "ZodBranded";
|
|
ZodFirstPartyTypeKind2["ZodPipeline"] = "ZodPipeline";
|
|
ZodFirstPartyTypeKind2["ZodReadonly"] = "ZodReadonly";
|
|
})(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
|
|
var instanceOfType = (cls, params = {
|
|
message: `Input not instance of ${cls.name}`
|
|
}) => custom((data) => data instanceof cls, params);
|
|
var stringType = ZodString.create;
|
|
var numberType = ZodNumber.create;
|
|
var nanType = ZodNaN.create;
|
|
var bigIntType = ZodBigInt.create;
|
|
var booleanType = ZodBoolean.create;
|
|
var dateType = ZodDate.create;
|
|
var symbolType = ZodSymbol.create;
|
|
var undefinedType = ZodUndefined.create;
|
|
var nullType = ZodNull.create;
|
|
var anyType = ZodAny.create;
|
|
var unknownType = ZodUnknown.create;
|
|
var neverType = ZodNever.create;
|
|
var voidType = ZodVoid.create;
|
|
var arrayType = ZodArray.create;
|
|
var objectType = ZodObject.create;
|
|
var strictObjectType = ZodObject.strictCreate;
|
|
var unionType = ZodUnion.create;
|
|
var discriminatedUnionType = ZodDiscriminatedUnion.create;
|
|
var intersectionType = ZodIntersection.create;
|
|
var tupleType = ZodTuple.create;
|
|
var recordType = ZodRecord.create;
|
|
var mapType = ZodMap.create;
|
|
var setType = ZodSet.create;
|
|
var functionType = ZodFunction.create;
|
|
var lazyType = ZodLazy.create;
|
|
var literalType = ZodLiteral.create;
|
|
var enumType = ZodEnum.create;
|
|
var nativeEnumType = ZodNativeEnum.create;
|
|
var promiseType = ZodPromise.create;
|
|
var effectsType = ZodEffects.create;
|
|
var optionalType = ZodOptional.create;
|
|
var nullableType = ZodNullable.create;
|
|
var preprocessType = ZodEffects.createWithPreprocess;
|
|
var pipelineType = ZodPipeline.create;
|
|
var ostring = () => stringType().optional();
|
|
var onumber = () => numberType().optional();
|
|
var oboolean = () => booleanType().optional();
|
|
var coerce = {
|
|
string: ((arg) => ZodString.create({ ...arg, coerce: true })),
|
|
number: ((arg) => ZodNumber.create({ ...arg, coerce: true })),
|
|
boolean: ((arg) => ZodBoolean.create({
|
|
...arg,
|
|
coerce: true
|
|
})),
|
|
bigint: ((arg) => ZodBigInt.create({ ...arg, coerce: true })),
|
|
date: ((arg) => ZodDate.create({ ...arg, coerce: true }))
|
|
};
|
|
var NEVER = INVALID;
|
|
var z = /* @__PURE__ */ Object.freeze({
|
|
__proto__: null,
|
|
defaultErrorMap: errorMap,
|
|
setErrorMap,
|
|
getErrorMap,
|
|
makeIssue,
|
|
EMPTY_PATH,
|
|
addIssueToContext,
|
|
ParseStatus,
|
|
INVALID,
|
|
DIRTY: DIRTY2,
|
|
OK,
|
|
isAborted,
|
|
isDirty,
|
|
isValid,
|
|
isAsync,
|
|
get util() {
|
|
return util;
|
|
},
|
|
get objectUtil() {
|
|
return objectUtil;
|
|
},
|
|
ZodParsedType,
|
|
getParsedType,
|
|
ZodType,
|
|
datetimeRegex,
|
|
ZodString,
|
|
ZodNumber,
|
|
ZodBigInt,
|
|
ZodBoolean,
|
|
ZodDate,
|
|
ZodSymbol,
|
|
ZodUndefined,
|
|
ZodNull,
|
|
ZodAny,
|
|
ZodUnknown,
|
|
ZodNever,
|
|
ZodVoid,
|
|
ZodArray,
|
|
ZodObject,
|
|
ZodUnion,
|
|
ZodDiscriminatedUnion,
|
|
ZodIntersection,
|
|
ZodTuple,
|
|
ZodRecord,
|
|
ZodMap,
|
|
ZodSet,
|
|
ZodFunction,
|
|
ZodLazy,
|
|
ZodLiteral,
|
|
ZodEnum,
|
|
ZodNativeEnum,
|
|
ZodPromise,
|
|
ZodEffects,
|
|
ZodTransformer: ZodEffects,
|
|
ZodOptional,
|
|
ZodNullable,
|
|
ZodDefault,
|
|
ZodCatch,
|
|
ZodNaN,
|
|
BRAND,
|
|
ZodBranded,
|
|
ZodPipeline,
|
|
ZodReadonly,
|
|
custom,
|
|
Schema: ZodType,
|
|
ZodSchema: ZodType,
|
|
late,
|
|
get ZodFirstPartyTypeKind() {
|
|
return ZodFirstPartyTypeKind;
|
|
},
|
|
coerce,
|
|
any: anyType,
|
|
array: arrayType,
|
|
bigint: bigIntType,
|
|
boolean: booleanType,
|
|
date: dateType,
|
|
discriminatedUnion: discriminatedUnionType,
|
|
effect: effectsType,
|
|
"enum": enumType,
|
|
"function": functionType,
|
|
"instanceof": instanceOfType,
|
|
intersection: intersectionType,
|
|
lazy: lazyType,
|
|
literal: literalType,
|
|
map: mapType,
|
|
nan: nanType,
|
|
nativeEnum: nativeEnumType,
|
|
never: neverType,
|
|
"null": nullType,
|
|
nullable: nullableType,
|
|
number: numberType,
|
|
object: objectType,
|
|
oboolean,
|
|
onumber,
|
|
optional: optionalType,
|
|
ostring,
|
|
pipeline: pipelineType,
|
|
preprocess: preprocessType,
|
|
promise: promiseType,
|
|
record: recordType,
|
|
set: setType,
|
|
strictObject: strictObjectType,
|
|
string: stringType,
|
|
symbol: symbolType,
|
|
transformer: effectsType,
|
|
tuple: tupleType,
|
|
"undefined": undefinedType,
|
|
union: unionType,
|
|
unknown: unknownType,
|
|
"void": voidType,
|
|
NEVER,
|
|
ZodIssueCode,
|
|
quotelessJson,
|
|
ZodError
|
|
});
|
|
|
|
// src/ui/tasks/task.ts
|
|
var import_sha256 = __toESM(require_sha256());
|
|
|
|
// src/parsing/tags/tags.ts
|
|
function getTagsFromContent(content) {
|
|
const tags = /* @__PURE__ */ new Set();
|
|
const matches = content.matchAll(tagsRegex);
|
|
for (const match of matches) {
|
|
if (match[1] && tagNonNumericTest.test(match[1])) {
|
|
tags.add(match[1]);
|
|
}
|
|
}
|
|
return tags;
|
|
}
|
|
function isValidTag(tag2) {
|
|
return /^[-_/\p{L}\p{N}]+$/u.test(tag2);
|
|
}
|
|
var tagsRegex = /#([-_/\p{L}\p{N}]+)/gu;
|
|
var tagNonNumericTest = /\p{L}/u;
|
|
|
|
// src/ui/tasks/task.ts
|
|
var DEFAULT_DONE_STATUS_MARKERS = "xX";
|
|
var DEFAULT_IGNORED_STATUS_MARKERS = "";
|
|
var DEFAULT_CANCELLED_STATUS_MARKERS = "-";
|
|
function validateStatusMarkers(markers) {
|
|
const errors = [];
|
|
const chars = Array.from(markers);
|
|
const seen = /* @__PURE__ */ new Set();
|
|
for (let i = 0; i < chars.length; i++) {
|
|
const char = chars[i];
|
|
if (!char) continue;
|
|
if (seen.has(char)) {
|
|
errors.push(`Duplicate marker '${char}' at position ${i + 1}`);
|
|
continue;
|
|
}
|
|
seen.add(char);
|
|
if (/\s/.test(char)) {
|
|
errors.push(`Marker at position ${i + 1} is whitespace`);
|
|
}
|
|
if (char.charCodeAt(0) < 32 || char.charCodeAt(0) === 127) {
|
|
errors.push(`Marker at position ${i + 1} is a control character`);
|
|
}
|
|
}
|
|
return errors;
|
|
}
|
|
function validateTypedStatusMarkers(markers, label, allowEmpty) {
|
|
if (!markers || markers.length === 0) {
|
|
return allowEmpty ? [] : [`${label} status markers cannot be empty`];
|
|
}
|
|
return validateStatusMarkers(markers);
|
|
}
|
|
function validateDoneStatusMarkers(markers) {
|
|
return validateTypedStatusMarkers(markers, "Done", false);
|
|
}
|
|
function validateIgnoredStatusMarkers(markers) {
|
|
return validateTypedStatusMarkers(markers, "Ignored", true);
|
|
}
|
|
function validateCancelledStatusMarkers(markers) {
|
|
return validateTypedStatusMarkers(markers, "Cancelled", false);
|
|
}
|
|
function isStatusMatch(statusContent, markers) {
|
|
if (!statusContent || !markers) return false;
|
|
const contentChars = Array.from(statusContent);
|
|
const markersChars = Array.from(markers);
|
|
if (contentChars.length !== 1) {
|
|
return false;
|
|
}
|
|
const singleChar = contentChars[0];
|
|
if (!singleChar) return false;
|
|
return markersChars.includes(singleChar);
|
|
}
|
|
var Task2 = class {
|
|
constructor(rawContent, fileHandle, rowIndex, columnDefinitions, columnPlacementTagTable, consolidateTags, doneStatusMarkers = DEFAULT_DONE_STATUS_MARKERS, cancelledStatusMarkers = DEFAULT_CANCELLED_STATUS_MARKERS, ignoredStatusMarkers = DEFAULT_IGNORED_STATUS_MARKERS) {
|
|
this.rowIndex = rowIndex;
|
|
this.columnPlacementTagTable = columnPlacementTagTable;
|
|
this.consolidateTags = consolidateTags;
|
|
this.doneStatusMarkers = doneStatusMarkers;
|
|
this.cancelledStatusMarkers = cancelledStatusMarkers;
|
|
this.ignoredStatusMarkers = ignoredStatusMarkers;
|
|
this._deleted = false;
|
|
var _a5;
|
|
const [, blockLink] = (_a5 = rawContent.match(blockLinkRegexp)) != null ? _a5 : [];
|
|
this.blockLink = blockLink;
|
|
const match = (blockLink ? rawContent.replace(blockLinkRegexp, "") : rawContent).match(taskStringRegex);
|
|
if (!match) {
|
|
throw new Error(
|
|
"Attempted to create a task from invalid raw content"
|
|
);
|
|
}
|
|
const [, indentation, status, content] = match;
|
|
if (!content) {
|
|
throw new Error("Content not found in raw content");
|
|
}
|
|
const tags = getTagsFromContent(content);
|
|
this._id = (0, import_sha256.default)(content + fileHandle.path + rowIndex).toString();
|
|
this.content = content;
|
|
this._displayStatus = status || " ";
|
|
this._done = isStatusMatch(this._displayStatus, this.doneStatusMarkers);
|
|
this._path = fileHandle.path;
|
|
this._indentation = indentation || "";
|
|
const matchedColumn = resolveMatchedColumnDefinition(columnDefinitions, tags);
|
|
for (const tag2 of tags) {
|
|
if (tag2 === "done") {
|
|
if (!this._column) {
|
|
this._column = "done";
|
|
}
|
|
tags.delete(tag2);
|
|
if (!consolidateTags) {
|
|
this.content = this.stripTagFromContent(this.content, tag2);
|
|
}
|
|
continue;
|
|
}
|
|
if (matchedColumn && isPlacementTag(matchedColumn, tag2)) {
|
|
if (!this._column) {
|
|
this._column = matchedColumn.id;
|
|
}
|
|
tags.delete(tag2);
|
|
if (!consolidateTags) {
|
|
this.content = this.stripTagFromContent(this.content, tag2);
|
|
}
|
|
}
|
|
if (consolidateTags) {
|
|
this.content = this.stripTagFromContent(this.content, tag2);
|
|
}
|
|
}
|
|
this.tags = tags;
|
|
this.blockLink = blockLink;
|
|
if (this._done) {
|
|
this._column = void 0;
|
|
}
|
|
}
|
|
get id() {
|
|
return this._id;
|
|
}
|
|
get done() {
|
|
return this._done;
|
|
}
|
|
set done(done) {
|
|
var _a5;
|
|
this._done = done;
|
|
this._column = void 0;
|
|
this._displayStatus = (_a5 = Array.from(this.doneStatusMarkers)[0]) != null ? _a5 : "x";
|
|
}
|
|
get isCancelled() {
|
|
return isStatusMatch(this._displayStatus, this.cancelledStatusMarkers);
|
|
}
|
|
undone() {
|
|
this._done = false;
|
|
this._displayStatus = " ";
|
|
}
|
|
get displayStatus() {
|
|
return this._displayStatus;
|
|
}
|
|
get path() {
|
|
return this._path;
|
|
}
|
|
get indentation() {
|
|
return this._indentation;
|
|
}
|
|
get column() {
|
|
return this._column;
|
|
}
|
|
set column(column) {
|
|
this._column = column;
|
|
this._done = false;
|
|
this._displayStatus = " ";
|
|
}
|
|
getPlacementTagsForColumn(column) {
|
|
var _a5;
|
|
return ((_a5 = this.columnPlacementTagTable[column]) != null ? _a5 : []).filter((tag2) => isValidTag(tag2));
|
|
}
|
|
getCurrentPlacementTags() {
|
|
if (!this.column || this.column === "archived" || this.column === "done" || this.column === "uncategorised") {
|
|
return [];
|
|
}
|
|
return this.getPlacementTagsForColumn(this.column);
|
|
}
|
|
stripTagFromContent(value, tag2) {
|
|
return value.replaceAll(` #${tag2}`, "").replaceAll(`#${tag2}`, "").trim();
|
|
}
|
|
stripPlacementTags(value, placementTags) {
|
|
return placementTags.reduce((nextValue, tag2) => this.stripTagFromContent(nextValue, tag2), value);
|
|
}
|
|
serialise() {
|
|
if (this._deleted) {
|
|
return "";
|
|
}
|
|
const placementTags = this.getCurrentPlacementTags();
|
|
const serialisedContent = placementTags.length > 0 ? this.stripPlacementTags(this.content.trim(), placementTags) : this.content.trim();
|
|
const serialisedTags = this.consolidateTags ? Array.from(this.tags).filter((tag2) => !placementTags.includes(tag2)) : [];
|
|
return [
|
|
this.indentation,
|
|
`- [${this._displayStatus}] `,
|
|
serialisedContent,
|
|
this.consolidateTags && serialisedTags.length > 0 ? ` ${serialisedTags.map((tag2) => `#${tag2}`).join(" ")}` : "",
|
|
this.column ? this.column === "archived" ? ` #${this.column}` : placementTags.length > 0 ? ` ${placementTags.map((tag2) => `#${tag2}`).join(" ")}` : ` #${this.column}` : "",
|
|
this.blockLink ? ` ^${this.blockLink}` : ""
|
|
].join("").trimEnd();
|
|
}
|
|
archive() {
|
|
if (!this._done) {
|
|
this._displayStatus = "x";
|
|
}
|
|
this._done = true;
|
|
this._column = "archived";
|
|
}
|
|
cancel() {
|
|
var _a5;
|
|
this._displayStatus = (_a5 = Array.from(this.cancelledStatusMarkers)[0]) != null ? _a5 : "-";
|
|
}
|
|
restore() {
|
|
this._displayStatus = " ";
|
|
}
|
|
delete() {
|
|
this._deleted = true;
|
|
}
|
|
};
|
|
function isTrackedTaskString(input, ignoredStatusMarkers = DEFAULT_IGNORED_STATUS_MARKERS) {
|
|
if (input.includes("#archived")) {
|
|
return false;
|
|
}
|
|
if (!taskStringRegex.test(input)) {
|
|
return false;
|
|
}
|
|
const match = input.match(taskStringRegex);
|
|
if (match) {
|
|
const [, , status] = match;
|
|
if (isStatusMatch(status, ignoredStatusMarkers)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
var taskStringRegex = /^(\s*)[-*+]\s\[([^\[\]]*)\]\s(.+)/;
|
|
var blockLinkRegexp = /\s\^([a-zA-Z0-9-]+)$/;
|
|
|
|
// src/ui/settings/settings_store.ts
|
|
var VisibilityOption = /* @__PURE__ */ ((VisibilityOption2) => {
|
|
VisibilityOption2["Auto"] = "auto";
|
|
VisibilityOption2["NeverShow"] = "never";
|
|
VisibilityOption2["AlwaysShow"] = "always";
|
|
return VisibilityOption2;
|
|
})(VisibilityOption || {});
|
|
var ScopeOption = /* @__PURE__ */ ((ScopeOption2) => {
|
|
ScopeOption2["Folder"] = "folder";
|
|
ScopeOption2["Everywhere"] = "everywhere";
|
|
ScopeOption2["SelectedFolders"] = "selectedFolders";
|
|
return ScopeOption2;
|
|
})(ScopeOption || {});
|
|
var FlowDirection = /* @__PURE__ */ ((FlowDirection2) => {
|
|
FlowDirection2["LeftToRight"] = "ltr";
|
|
FlowDirection2["RightToLeft"] = "rtl";
|
|
FlowDirection2["TopToBottom"] = "ttb";
|
|
FlowDirection2["BottomToTop"] = "btt";
|
|
return FlowDirection2;
|
|
})(FlowDirection || {});
|
|
var contentValueSchema = z.object({
|
|
text: z.string()
|
|
});
|
|
var tagValueSchema = z.object({
|
|
tags: z.array(z.string())
|
|
});
|
|
var fileValueSchema = z.object({
|
|
filepaths: z.array(z.string())
|
|
});
|
|
var savedFilterSchema = z.object({
|
|
id: z.string(),
|
|
content: contentValueSchema.optional(),
|
|
tag: tagValueSchema.optional(),
|
|
file: fileValueSchema.optional()
|
|
});
|
|
var columnDefinitionSchema = z.object({
|
|
id: z.string(),
|
|
label: z.string(),
|
|
color: z.string().optional(),
|
|
matchMode: z.enum(["name", "tags"]).default("name"),
|
|
matchTags: z.array(z.string()).default([])
|
|
});
|
|
var settingsObject = z.object({
|
|
columns: z.array(z.union([z.string(), columnDefinitionSchema])),
|
|
scope: z.nativeEnum(ScopeOption).catch("folder" /* Folder */),
|
|
showFilepath: z.boolean().default(true).optional(),
|
|
consolidateTags: z.boolean().default(false).optional(),
|
|
uncategorizedVisibility: z.nativeEnum(VisibilityOption).catch("auto" /* Auto */).optional(),
|
|
doneVisibility: z.nativeEnum(VisibilityOption).catch("always" /* AlwaysShow */).optional(),
|
|
doneStatusMarkers: z.string().default(DEFAULT_DONE_STATUS_MARKERS).optional(),
|
|
cancelledStatusMarkers: z.string().default(DEFAULT_CANCELLED_STATUS_MARKERS).optional(),
|
|
ignoredStatusMarkers: z.string().default(DEFAULT_IGNORED_STATUS_MARKERS).optional(),
|
|
savedFilters: z.array(savedFilterSchema).default([]).optional(),
|
|
lastContentFilter: z.string().optional(),
|
|
lastTagFilter: z.array(z.string()).optional(),
|
|
lastFileFilter: z.array(z.string()).optional(),
|
|
filtersExpanded: z.boolean().default(true).optional(),
|
|
filtersSidebarExpanded: z.boolean().default(true).optional(),
|
|
filtersSidebarWidth: z.number().default(280).optional(),
|
|
columnWidth: z.number().min(200).max(600).catch(300).optional(),
|
|
flowDirection: z.nativeEnum(FlowDirection).catch("ltr" /* LeftToRight */).optional(),
|
|
collapsedColumns: z.array(z.string()).default([]).optional(),
|
|
defaultTaskFile: z.string().default("").optional(),
|
|
lastUsedTaskFile: z.string().default("").optional(),
|
|
scopeFolders: z.array(z.string()).default([]).optional(),
|
|
excludePaths: z.array(z.string()).default([]).optional(),
|
|
uncategorizedColumnName: z.string().default("Uncategorized").optional(),
|
|
doneColumnName: z.string().default("Done").optional()
|
|
});
|
|
var defaultSettings = {
|
|
columns: createDefaultColumns(["Later", "Soonish", "Next week", "This week", "Today", "Pending"]),
|
|
scope: "folder" /* Folder */,
|
|
showFilepath: true,
|
|
consolidateTags: false,
|
|
uncategorizedVisibility: "auto" /* Auto */,
|
|
doneVisibility: "always" /* AlwaysShow */,
|
|
doneStatusMarkers: DEFAULT_DONE_STATUS_MARKERS,
|
|
cancelledStatusMarkers: DEFAULT_CANCELLED_STATUS_MARKERS,
|
|
ignoredStatusMarkers: DEFAULT_IGNORED_STATUS_MARKERS,
|
|
savedFilters: [],
|
|
lastContentFilter: "",
|
|
lastTagFilter: [],
|
|
lastFileFilter: [],
|
|
columnWidth: 300,
|
|
flowDirection: "ltr" /* LeftToRight */,
|
|
collapsedColumns: [],
|
|
defaultTaskFile: "",
|
|
lastUsedTaskFile: "",
|
|
scopeFolders: [],
|
|
excludePaths: [],
|
|
uncategorizedColumnName: "Uncategorized",
|
|
doneColumnName: "Done"
|
|
};
|
|
var createSettingsStore = () => writable(defaultSettings);
|
|
function parseSettingsString(str) {
|
|
var _a5;
|
|
try {
|
|
const parsed = JSON.parse(str);
|
|
const partial = settingsObject.partial().parse(parsed);
|
|
const columns = migrateColumnDefinitions(
|
|
(_a5 = partial.columns) != null ? _a5 : defaultSettings.columns
|
|
);
|
|
return {
|
|
...defaultSettings,
|
|
...partial,
|
|
columns,
|
|
collapsedColumns: migrateCollapsedColumns(partial.collapsedColumns, columns)
|
|
};
|
|
} catch (e) {
|
|
return defaultSettings;
|
|
}
|
|
}
|
|
function toSettingsString(settings) {
|
|
return JSON.stringify(settings);
|
|
}
|
|
function createDefaultColumns(labels) {
|
|
const usedIds = /* @__PURE__ */ new Set();
|
|
return labels.map((label) => ({
|
|
id: createColumnId(label, usedIds),
|
|
label,
|
|
matchMode: "name",
|
|
matchTags: []
|
|
}));
|
|
}
|
|
|
|
// src/ui/board_counts.ts
|
|
function isActiveBoardTask(task) {
|
|
return task.column !== "archived" && !task.done && task.column !== "done";
|
|
}
|
|
function getBoardTaskCount(tasks) {
|
|
return tasks.filter(isActiveBoardTask).length;
|
|
}
|
|
|
|
// src/ui/main.svelte
|
|
var root_26 = from_html(`<li class="svelte-16qe0yp"><button class="delete-btn svelte-16qe0yp">\xD7</button> <button> </button></li>`);
|
|
var root_42 = from_html(`<option> </option>`);
|
|
var root_33 = from_html(`<datalist id="content-filters"></datalist>`);
|
|
var root_54 = from_html(`<li class="svelte-16qe0yp"><button class="delete-btn svelte-16qe0yp">\xD7</button> <button> </button></li>`);
|
|
var root_7 = from_html(`<option> </option>`);
|
|
var root_63 = from_html(`<datalist id="file-paths"></datalist>`);
|
|
var root_16 = from_html(`<aside class="filters-sidebar svelte-16qe0yp"><button class="resize-handle svelte-16qe0yp" aria-label="Resize sidebar"></button> <div class="controls svelte-16qe0yp"><div class="text-filter svelte-16qe0yp"><label for="filter" class="svelte-16qe0yp">Filter by content:</label> <div class="saved-filters svelte-16qe0yp"><details class="svelte-16qe0yp"><summary class="svelte-16qe0yp">Saved filters</summary> <ul role="list" class="svelte-16qe0yp"></ul></details></div> <div class="filter-input-container svelte-16qe0yp"><input id="filter" name="filter" type="search" placeholder="Type to search..." list="content-filters" class="svelte-16qe0yp"/> <!></div> <div class="filter-actions svelte-16qe0yp"><button class="filter-action-btn save-btn svelte-16qe0yp" aria-label="Save filter">Save</button> <button class="filter-action-btn clear-btn svelte-16qe0yp" aria-label="Clear filter">Clear</button></div></div> <div class="tag-filter svelte-16qe0yp"><!></div> <div class="file-filter svelte-16qe0yp"><label for="file-filter" class="svelte-16qe0yp">Filter by file:</label> <div class="saved-filters svelte-16qe0yp"><details class="svelte-16qe0yp"><summary class="svelte-16qe0yp">Saved filters</summary> <ul role="list" class="svelte-16qe0yp"></ul></details></div> <div class="filter-input-container svelte-16qe0yp"><input id="file-filter" name="file-filter" type="search" placeholder="Type to search files..." list="file-paths" aria-label="Filter by file path" class="svelte-16qe0yp"/> <!></div> <div class="filter-actions svelte-16qe0yp"><button class="filter-action-btn save-btn svelte-16qe0yp" aria-label="Save filter">Save</button> <button class="filter-action-btn clear-btn svelte-16qe0yp" aria-label="Clear file filter">Clear</button></div></div></div></aside>`);
|
|
var root10 = from_html(`<div class="main svelte-16qe0yp"><button class="sidebar-toggle-btn svelte-16qe0yp"><span class="toggle-icon svelte-16qe0yp"> </span> <span class="toggle-label svelte-16qe0yp">Filters</span></button> <div><!> <div class="board-content svelte-16qe0yp"><div class="board-header svelte-16qe0yp"><span class="board-task-count svelte-16qe0yp" aria-live="polite"><!></span> <!></div> <div><div class="svelte-16qe0yp"></div></div></div></div></div> <!>`, 1);
|
|
var $$css11 = {
|
|
hash: "svelte-16qe0yp",
|
|
code: ".main.svelte-16qe0yp {height:100%;display:flex;flex-direction:column;font-size:var(--font-text-size);}.main.svelte-16qe0yp .sidebar-toggle-btn:where(.svelte-16qe0yp) {position:fixed;top:50px;left:8px;padding:var(--size-2-1) var(--size-2-2);background:var(--background-primary);border:1px solid var(--background-modifier-border);border-radius:var(--radius-s);cursor:pointer;color:var(--text-muted);font-size:var(--font-ui-small);display:flex;align-items:center;gap:var(--size-2-1);z-index:100;transition:color 0.15s ease;}.main.svelte-16qe0yp .sidebar-toggle-btn:where(.svelte-16qe0yp):hover {background:var(--background-modifier-hover);color:var(--text-normal);}.main.svelte-16qe0yp .sidebar-toggle-btn:where(.svelte-16qe0yp) .toggle-icon:where(.svelte-16qe0yp) {font-size:16px;}.main.svelte-16qe0yp .sidebar-toggle-btn:where(.svelte-16qe0yp) .toggle-label:where(.svelte-16qe0yp) {font-weight:500;}.main.svelte-16qe0yp .board-container:where(.svelte-16qe0yp) {display:grid;grid-template-columns:1fr;height:100%;}.main.svelte-16qe0yp .board-container.sidebar-expanded:where(.svelte-16qe0yp) {grid-template-columns:var(--sidebar-width, 280px) 1fr;}.main.svelte-16qe0yp .filters-sidebar:where(.svelte-16qe0yp) {background:var(--background-primary);border-right:1px solid var(--background-modifier-border);overflow-y:auto;display:flex;flex-direction:column;position:relative;}.main.svelte-16qe0yp .filters-sidebar:where(.svelte-16qe0yp) .resize-handle:where(.svelte-16qe0yp) {position:absolute;top:0;right:0;width:4px;height:100%;cursor:col-resize;background:transparent;border:none;padding:0;z-index:10;}.main.svelte-16qe0yp .filters-sidebar:where(.svelte-16qe0yp) .resize-handle:where(.svelte-16qe0yp):hover {background:var(--interactive-accent);opacity:0.5;}.main.svelte-16qe0yp .board-content:where(.svelte-16qe0yp) {display:flex;flex-direction:column;height:100%;overflow:hidden;padding-left:var(--size-4-4);}.main.svelte-16qe0yp .board-header:where(.svelte-16qe0yp) {display:flex;justify-content:flex-end;align-items:center;padding:var(--size-4-2) var(--size-4-4) var(--size-4-2) 0;gap:var(--size-4-3);}.main.svelte-16qe0yp .board-header:where(.svelte-16qe0yp) .board-task-count:where(.svelte-16qe0yp) {font-size:var(--font-ui-medium);color:var(--text-muted);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) {display:flex;flex-direction:column;gap:var(--size-4-5);padding:var(--size-4-4);padding-top:50px;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) {margin-top:0;margin-bottom:var(--size-4-2);font-size:var(--font-ui-small);align-self:flex-start;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) summary:where(.svelte-16qe0yp) {cursor:pointer;color:var(--text-muted);padding:var(--size-2-1) 0;user-select:none;transition:color 0.15s ease;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) summary:where(.svelte-16qe0yp):hover {color:var(--text-normal);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) {margin:0;padding:0;list-style:none;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) {margin:0;display:flex;align-items:center;gap:var(--size-4-2);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) button:where(.svelte-16qe0yp) {text-align:left;padding:var(--size-2-1) var(--size-2-2);background:transparent;border:none;cursor:pointer;color:var(--text-normal);border-radius:var(--radius-s);white-space:nowrap;transition:background 0.15s ease, color 0.15s ease;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) button:where(.svelte-16qe0yp):hover {background:var(--background-modifier-hover);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) button.active:where(.svelte-16qe0yp) {font-weight:700;color:var(--interactive-accent);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) button.delete-btn:where(.svelte-16qe0yp) {padding:0;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:18px;line-height:1;color:var(--text-muted);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .saved-filters:where(.svelte-16qe0yp) details:where(.svelte-16qe0yp) ul:where(.svelte-16qe0yp) li:where(.svelte-16qe0yp) button.delete-btn:where(.svelte-16qe0yp):hover {color:var(--color-red);background:var(--background-modifier-error-hover);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) {display:flex;flex-direction:column;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) label:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) label:where(.svelte-16qe0yp) {display:inline-block;margin-bottom:var(--size-2-3);font-weight:600;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp) {display:block;width:100%;background:var(--background-primary);padding:var(--size-4-2);box-sizing:border-box;transition:box-shadow 150ms ease;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp):focus-visible,\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp):focus-visible {box-shadow:0 0 0 2px var(--background-modifier-border-focus);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp)::-webkit-calendar-picker-indicator, .main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp)::-webkit-list-button,\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp)::-webkit-calendar-picker-indicator,\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-input-container:where(.svelte-16qe0yp) input[type=search]:where(.svelte-16qe0yp)::-webkit-list-button {display:none !important;opacity:0 !important;pointer-events:none !important;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-actions:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-actions:where(.svelte-16qe0yp) {display:flex;gap:var(--size-4-2);margin-top:var(--size-4-2);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn:where(.svelte-16qe0yp) {padding:var(--size-2-2) var(--size-4-3);border-radius:var(--radius-s);cursor:pointer;font-size:var(--font-ui-small);transition:background 150ms ease, opacity 150ms ease;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn.save-btn:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn.save-btn:where(.svelte-16qe0yp) {background:var(--interactive-accent);color:var(--text-on-accent);border:none;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn.save-btn:where(.svelte-16qe0yp):hover:not(:disabled),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn.save-btn:where(.svelte-16qe0yp):hover:not(:disabled) {background:var(--interactive-accent-hover);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn.clear-btn:where(.svelte-16qe0yp),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn.clear-btn:where(.svelte-16qe0yp) {background:transparent;color:var(--text-muted);border:1px solid var(--background-modifier-border);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn.clear-btn:where(.svelte-16qe0yp):hover:not(:disabled),\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn.clear-btn:where(.svelte-16qe0yp):hover:not(:disabled) {background:var(--background-modifier-hover);}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .text-filter:where(.svelte-16qe0yp) .filter-action-btn:where(.svelte-16qe0yp):disabled,\n.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .file-filter:where(.svelte-16qe0yp) .filter-action-btn:where(.svelte-16qe0yp):disabled {opacity:0.5;cursor:not-allowed;}.main.svelte-16qe0yp .controls:where(.svelte-16qe0yp) .tag-filter:where(.svelte-16qe0yp) {display:flex;flex-direction:column;}.main.svelte-16qe0yp .columns:where(.svelte-16qe0yp) {flex:1 1 0;min-height:0;max-width:100vw;overflow-x:scroll;overflow-y:auto;padding-bottom:var(--size-4-3);}.main.svelte-16qe0yp .columns:where(.svelte-16qe0yp) > div:where(.svelte-16qe0yp) {display:flex;gap:var(--size-4-3);}.main.svelte-16qe0yp .columns.vertical-flow:where(.svelte-16qe0yp) {overflow-x:hidden;overflow-y:scroll;}.main.svelte-16qe0yp .columns.vertical-flow:where(.svelte-16qe0yp) > div:where(.svelte-16qe0yp) {flex-direction:column;}"
|
|
};
|
|
function Main($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Main, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css11);
|
|
const $collapsedColumnsStore = () => store_get(collapsedColumnsStore, "$collapsedColumnsStore", $$stores);
|
|
const $tasksStore = () => store_get(tasksStore(), "$tasksStore", $$stores);
|
|
const $settingsStore = () => store_get(settingsStore(), "$settingsStore", $$stores);
|
|
const [$$stores, $$cleanup] = setup_stores();
|
|
const tags = mutable_source();
|
|
const availableFiles = mutable_source();
|
|
const selectedTagsSet = mutable_source();
|
|
const savedFilters = mutable_source();
|
|
const contentFilters = mutable_source();
|
|
const tagFilters = mutable_source();
|
|
const fileFilters = mutable_source();
|
|
const contentFilterExists = mutable_source();
|
|
const tagFilterExists = mutable_source();
|
|
const fileFilterExists = mutable_source();
|
|
const filteredByText = mutable_source();
|
|
const filteredByTag = mutable_source();
|
|
const filteredByFile = mutable_source();
|
|
const tasksByColumn = mutable_source();
|
|
const totalTaskCount = mutable_source();
|
|
const filteredTaskCount = mutable_source();
|
|
const isFiltered = mutable_source();
|
|
const showFilepath = mutable_source();
|
|
const consolidateTags = mutable_source();
|
|
const uncategorizedVisibility = mutable_source();
|
|
const doneVisibility = mutable_source();
|
|
const filtersSidebarExpanded = mutable_source();
|
|
const filtersSidebarWidth = mutable_source();
|
|
const columnWidth = mutable_source();
|
|
const flowDirection = mutable_source();
|
|
const uncategorizedColumnName = mutable_source();
|
|
const doneColumnName = mutable_source();
|
|
const targetFileIsDefault = mutable_source();
|
|
const showUncategorizedColumn = mutable_source();
|
|
const showDoneColumn = mutable_source();
|
|
const orderedColumns = mutable_source();
|
|
const isVerticalFlow = mutable_source();
|
|
let app = prop($$props, "app", 12);
|
|
let tasksStore = prop($$props, "tasksStore", 12);
|
|
let taskActions = prop($$props, "taskActions", 12);
|
|
let openSettings = prop($$props, "openSettings", 12);
|
|
let columnTagTableStore = prop($$props, "columnTagTableStore", 12);
|
|
let columnColourTableStore = prop($$props, "columnColourTableStore", 12);
|
|
let columnMatchTagTableStore = prop($$props, "columnMatchTagTableStore", 12);
|
|
let settingsStore = prop($$props, "settingsStore", 12);
|
|
let requestSave = prop($$props, "requestSave", 12);
|
|
const collapsedColumnsStore = createCollapsedColumnsStore(settingsStore());
|
|
function toggleColumnCollapse(col) {
|
|
const isCurrentlyCollapsed = $collapsedColumnsStore().has(col);
|
|
settingsStore().update((s) => {
|
|
var _a5;
|
|
const collapsed = (_a5 = s.collapsedColumns) != null ? _a5 : [];
|
|
const tag2 = col;
|
|
return {
|
|
...s,
|
|
collapsedColumns: isCurrentlyCollapsed ? collapsed.filter((c) => c !== tag2) : [...collapsed, tag2]
|
|
};
|
|
});
|
|
requestSave()();
|
|
}
|
|
let selectedTags = mutable_source([]);
|
|
function tagsMatch(a, b) {
|
|
if (a.length !== b.length) return false;
|
|
const sortedA = [...a].sort();
|
|
const sortedB = [...b].sort();
|
|
return sortedA.every((tag2, i) => tag2 === sortedB[i]);
|
|
}
|
|
let activeContentFilterId = mutable_source(void 0);
|
|
let activeTagFilterId = mutable_source(void 0);
|
|
let activeFileFilterId = mutable_source(void 0);
|
|
let deleteModalOpen = mutable_source(false);
|
|
let filterToDelete = mutable_source(null);
|
|
function addContentFilter() {
|
|
const normalized = get(filterText).trim();
|
|
const existingFilterIndex = get(savedFilters).findIndex((f) => {
|
|
var _a5;
|
|
return ((_a5 = f.content) == null ? void 0 : _a5.text) === normalized;
|
|
});
|
|
if (existingFilterIndex >= 0) {
|
|
return;
|
|
}
|
|
const newFilter = { id: crypto.randomUUID(), content: { text: normalized } };
|
|
store_mutate(settingsStore(), untrack($settingsStore).savedFilters = [...get(savedFilters), newFilter], untrack($settingsStore));
|
|
requestSave()();
|
|
}
|
|
function loadContentFilter(filterId, text2) {
|
|
if (get(activeContentFilterId) === filterId) {
|
|
clearContentFilter();
|
|
} else {
|
|
set(filterText, text2);
|
|
set(activeContentFilterId, filterId);
|
|
}
|
|
}
|
|
function clearContentFilter() {
|
|
set(filterText, "");
|
|
set(activeContentFilterId, void 0);
|
|
}
|
|
function clearFileFilter() {
|
|
set(fileFilter, "");
|
|
set(activeFileFilterId, void 0);
|
|
}
|
|
function addFileFilter() {
|
|
const normalized = get(fileFilter).trim();
|
|
if (!normalized) return;
|
|
const existingFilterIndex = get(savedFilters).findIndex((f) => {
|
|
var _a5;
|
|
return ((_a5 = f.file) == null ? void 0 : _a5.filepaths[0]) === normalized;
|
|
});
|
|
if (existingFilterIndex >= 0) {
|
|
return;
|
|
}
|
|
const newFilter = { id: crypto.randomUUID(), file: { filepaths: [normalized] } };
|
|
store_mutate(settingsStore(), untrack($settingsStore).savedFilters = [...get(savedFilters), newFilter], untrack($settingsStore));
|
|
requestSave()();
|
|
}
|
|
function loadFileFilter(filterId, filepath) {
|
|
if (get(activeFileFilterId) === filterId) {
|
|
clearFileFilter();
|
|
} else {
|
|
set(fileFilter, filepath);
|
|
set(activeFileFilterId, filterId);
|
|
}
|
|
}
|
|
function addTagFilter() {
|
|
if (get(selectedTags).length === 0 || get(tagFilterExists)) {
|
|
return;
|
|
}
|
|
const newFilter = {
|
|
id: crypto.randomUUID(),
|
|
tag: { tags: [...get(selectedTags)].sort() }
|
|
};
|
|
store_mutate(settingsStore(), untrack($settingsStore).savedFilters = [...get(savedFilters), newFilter], untrack($settingsStore));
|
|
requestSave()();
|
|
}
|
|
function clearTagFilter() {
|
|
set(selectedTags, []);
|
|
set(activeTagFilterId, void 0);
|
|
}
|
|
function openDeleteModal(filterId, filterText2, type) {
|
|
set(filterToDelete, { id: filterId, text: filterText2, type });
|
|
set(deleteModalOpen, true);
|
|
}
|
|
function closeDeleteModal() {
|
|
set(deleteModalOpen, false);
|
|
set(filterToDelete, null);
|
|
}
|
|
function confirmDelete() {
|
|
if (!get(filterToDelete)) return;
|
|
const filterId = get(filterToDelete).id;
|
|
const filterType = get(filterToDelete).type;
|
|
const wasActive = filterType === "content" ? get(activeContentFilterId) === filterId : filterType === "tag" ? get(activeTagFilterId) === filterId : get(activeFileFilterId) === filterId;
|
|
store_mutate(settingsStore(), untrack($settingsStore).savedFilters = get(savedFilters).filter((f) => f.id !== filterId), untrack($settingsStore));
|
|
if (wasActive) {
|
|
if (filterType === "content") {
|
|
set(activeContentFilterId, void 0);
|
|
} else if (filterType === "tag") {
|
|
set(activeTagFilterId, void 0);
|
|
} else {
|
|
set(activeFileFilterId, void 0);
|
|
}
|
|
}
|
|
requestSave()();
|
|
closeDeleteModal();
|
|
}
|
|
function groupByColumnTag(tasks) {
|
|
var _a5;
|
|
const output = { uncategorised: [], done: [] };
|
|
for (const task of tasks) {
|
|
if (task.done || task.column === "done") {
|
|
output["done"] = output["done"].concat(task);
|
|
} else if (task.column === "archived") {
|
|
} else if (task.column) {
|
|
output[task.column] = ((_a5 = output[task.column]) != null ? _a5 : []).concat(task);
|
|
} else {
|
|
output["uncategorised"] = output["uncategorised"].concat(task);
|
|
}
|
|
}
|
|
return output;
|
|
}
|
|
let columns = mutable_source();
|
|
let filterText = mutable_source("");
|
|
let fileFilter = mutable_source("");
|
|
let hydrated = mutable_source(false);
|
|
let subscriptionCount = 0;
|
|
onMount(() => {
|
|
const unsubscribe = settingsStore().subscribe((settings) => {
|
|
var _a5, _b3, _c2;
|
|
subscriptionCount++;
|
|
if (subscriptionCount === 1) {
|
|
return;
|
|
}
|
|
if (!get(hydrated)) {
|
|
set(filterText, (_a5 = settings.lastContentFilter) != null ? _a5 : "");
|
|
set(fileFilter, (_c2 = (_b3 = settings.lastFileFilter) == null ? void 0 : _b3[0]) != null ? _c2 : "");
|
|
if (settings.lastTagFilter && settings.lastTagFilter.length > 0) {
|
|
const checkTags = setInterval(
|
|
() => {
|
|
var _a6;
|
|
if (get(tags).size > 0) {
|
|
set(selectedTags, (_a6 = settings.lastTagFilter) != null ? _a6 : []);
|
|
clearInterval(checkTags);
|
|
}
|
|
},
|
|
100
|
|
);
|
|
}
|
|
set(hydrated, true);
|
|
}
|
|
});
|
|
return unsubscribe;
|
|
});
|
|
function saveFilterState() {
|
|
if (get(hydrated)) {
|
|
settingsStore().update((settings) => ({
|
|
...settings,
|
|
lastContentFilter: get(filterText),
|
|
lastTagFilter: get(selectedTags),
|
|
lastFileFilter: get(fileFilter) ? [get(fileFilter)] : []
|
|
}));
|
|
requestSave()();
|
|
}
|
|
}
|
|
let targetTaskFile = mutable_source(null);
|
|
function toggleSidebar() {
|
|
store_mutate(settingsStore(), untrack($settingsStore).filtersSidebarExpanded = !get(filtersSidebarExpanded), untrack($settingsStore));
|
|
requestSave()();
|
|
}
|
|
let isResizing = false;
|
|
let resizeStartX = 0;
|
|
let resizeStartWidth = 0;
|
|
const MIN_SIDEBAR_WIDTH = 200;
|
|
const MAX_SIDEBAR_WIDTH = 600;
|
|
function startResize(e) {
|
|
e.preventDefault();
|
|
isResizing = true;
|
|
resizeStartX = e.clientX;
|
|
resizeStartWidth = get(filtersSidebarWidth);
|
|
}
|
|
function handleMouseMove(e) {
|
|
if (!isResizing) return;
|
|
const delta = e.clientX - resizeStartX;
|
|
const newWidth = Math.min(MAX_SIDEBAR_WIDTH, Math.max(MIN_SIDEBAR_WIDTH, resizeStartWidth + delta));
|
|
store_mutate(settingsStore(), untrack($settingsStore).filtersSidebarWidth = newWidth, untrack($settingsStore));
|
|
}
|
|
function stopResize() {
|
|
if (isResizing) {
|
|
isResizing = false;
|
|
requestSave()();
|
|
}
|
|
}
|
|
async function handleOpenSettings() {
|
|
openSettings()();
|
|
}
|
|
legacy_pre_effect(() => $tasksStore(), () => {
|
|
set(tags, $tasksStore().reduce(
|
|
(acc, curr) => {
|
|
for (const tag2 of curr.tags) {
|
|
acc.add(tag2);
|
|
}
|
|
return acc;
|
|
},
|
|
/* @__PURE__ */ new Set()
|
|
));
|
|
});
|
|
legacy_pre_effect(() => $tasksStore(), () => {
|
|
set(availableFiles, [...new Set($tasksStore().map((task) => task.path))].sort((a, b) => {
|
|
const aParts = a.split("/");
|
|
const bParts = b.split("/");
|
|
const minLength = Math.min(aParts.length, bParts.length);
|
|
for (let i = 0; i < minLength; i++) {
|
|
const aIsLast = i === aParts.length - 1;
|
|
const bIsLast = i === bParts.length - 1;
|
|
if (aIsLast && !bIsLast) return -1;
|
|
if (bIsLast && !aIsLast) return 1;
|
|
const aPart = aParts[i];
|
|
const bPart = bParts[i];
|
|
if (aPart === void 0 || bPart === void 0) continue;
|
|
const comparison = aPart.localeCompare(bPart);
|
|
if (comparison !== 0) return comparison;
|
|
}
|
|
return aParts.length - bParts.length;
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => get(selectedTags), () => {
|
|
set(selectedTagsSet, new Set(get(selectedTags)));
|
|
});
|
|
legacy_pre_effect(() => $settingsStore(), () => {
|
|
var _a5;
|
|
set(savedFilters, (_a5 = $settingsStore().savedFilters) != null ? _a5 : []);
|
|
});
|
|
legacy_pre_effect(() => (get(filterText), get(savedFilters)), () => {
|
|
var _a5;
|
|
set(activeContentFilterId, get(filterText).trim() ? (_a5 = get(savedFilters).find((f) => {
|
|
var _a6;
|
|
return ((_a6 = f.content) == null ? void 0 : _a6.text) === get(filterText).trim();
|
|
})) == null ? void 0 : _a5.id : void 0);
|
|
});
|
|
legacy_pre_effect(() => (get(selectedTags), get(savedFilters)), () => {
|
|
if (get(selectedTags).length > 0) {
|
|
const matchingFilter = get(savedFilters).find((f) => f.tag ? tagsMatch(get(selectedTags), f.tag.tags) : false);
|
|
set(activeTagFilterId, matchingFilter == null ? void 0 : matchingFilter.id);
|
|
} else {
|
|
set(activeTagFilterId, void 0);
|
|
}
|
|
});
|
|
legacy_pre_effect(() => (get(fileFilter), get(savedFilters)), () => {
|
|
var _a5;
|
|
set(activeFileFilterId, get(fileFilter).trim() ? (_a5 = get(savedFilters).find((f) => {
|
|
var _a6;
|
|
return ((_a6 = f.file) == null ? void 0 : _a6.filepaths[0]) === get(fileFilter).trim();
|
|
})) == null ? void 0 : _a5.id : void 0);
|
|
});
|
|
legacy_pre_effect(() => get(savedFilters), () => {
|
|
set(contentFilters, get(savedFilters).filter((f) => f.content !== void 0).sort((a, b) => {
|
|
var _a5, _b3, _c2, _d;
|
|
const textA = (_b3 = (_a5 = a.content) == null ? void 0 : _a5.text.toLowerCase()) != null ? _b3 : "";
|
|
const textB = (_d = (_c2 = b.content) == null ? void 0 : _c2.text.toLowerCase()) != null ? _d : "";
|
|
return textA.localeCompare(textB);
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => get(savedFilters), () => {
|
|
set(tagFilters, get(savedFilters).filter((f) => f.tag !== void 0).sort((a, b) => {
|
|
var _a5, _b3, _c2, _d;
|
|
const tagsA = ((_b3 = (_a5 = a.tag) == null ? void 0 : _a5.tags) != null ? _b3 : []).join(", ").toLowerCase();
|
|
const tagsB = ((_d = (_c2 = b.tag) == null ? void 0 : _c2.tags) != null ? _d : []).join(", ").toLowerCase();
|
|
return tagsA.localeCompare(tagsB);
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => get(savedFilters), () => {
|
|
set(fileFilters, get(savedFilters).filter((f) => f.file !== void 0).sort((a, b) => {
|
|
var _a5, _b3, _c2, _d;
|
|
const pathA = (_b3 = (_a5 = a.file) == null ? void 0 : _a5.filepaths[0]) != null ? _b3 : "";
|
|
const pathB = (_d = (_c2 = b.file) == null ? void 0 : _c2.filepaths[0]) != null ? _d : "";
|
|
return pathA.localeCompare(pathB);
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => (get(contentFilters), get(filterText)), () => {
|
|
set(contentFilterExists, get(contentFilters).some((f) => {
|
|
var _a5;
|
|
return ((_a5 = f.content) == null ? void 0 : _a5.text) === get(filterText).trim();
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => (get(selectedTags), get(savedFilters)), () => {
|
|
set(tagFilterExists, get(selectedTags).length > 0 && get(savedFilters).some((f) => f.tag ? tagsMatch(get(selectedTags), f.tag.tags) : false));
|
|
});
|
|
legacy_pre_effect(() => (get(savedFilters), get(fileFilter)), () => {
|
|
set(fileFilterExists, get(savedFilters).some((f) => {
|
|
var _a5;
|
|
return ((_a5 = f.file) == null ? void 0 : _a5.filepaths[0]) === get(fileFilter).trim();
|
|
}));
|
|
});
|
|
legacy_pre_effect(() => $settingsStore(), () => {
|
|
set(columns, $settingsStore().columns.map((column) => column.id));
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(hydrated), get(filterText), get(selectedTags), get(fileFilter)),
|
|
() => {
|
|
if (get(hydrated)) {
|
|
get(filterText);
|
|
get(selectedTags);
|
|
get(fileFilter);
|
|
saveFilterState();
|
|
}
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (get(filterText), $tasksStore()), () => {
|
|
set(filteredByText, get(filterText) ? $tasksStore().filter((task) => task.content.toLowerCase().includes(get(filterText).toLowerCase())) : $tasksStore());
|
|
});
|
|
legacy_pre_effect(() => (get(selectedTagsSet), get(filteredByText)), () => {
|
|
set(filteredByTag, get(selectedTagsSet).size ? get(filteredByText).filter((task) => {
|
|
for (const tag2 of task.tags) {
|
|
if (get(selectedTagsSet).has(tag2)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}) : get(filteredByText));
|
|
});
|
|
legacy_pre_effect(() => (get(fileFilter), get(filteredByTag)), () => {
|
|
set(filteredByFile, get(fileFilter) ? get(filteredByTag).filter((task) => task.path.toLowerCase().includes(get(fileFilter).toLowerCase())) : get(filteredByTag));
|
|
});
|
|
legacy_pre_effect(() => get(filteredByFile), () => {
|
|
set(tasksByColumn, groupByColumnTag(get(filteredByFile)));
|
|
});
|
|
legacy_pre_effect(() => (getBoardTaskCount, $tasksStore()), () => {
|
|
set(totalTaskCount, getBoardTaskCount($tasksStore()));
|
|
});
|
|
legacy_pre_effect(() => (getBoardTaskCount, get(filteredByFile)), () => {
|
|
set(filteredTaskCount, getBoardTaskCount(get(filteredByFile)));
|
|
});
|
|
legacy_pre_effect(() => (get(filterText), get(selectedTags), get(fileFilter)), () => {
|
|
set(isFiltered, get(filterText).trim() !== "" || get(selectedTags).length > 0 || get(fileFilter).trim() !== "");
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(showFilepath), get(consolidateTags), get(uncategorizedVisibility), VisibilityOption, get(doneVisibility), get(filtersSidebarExpanded), get(filtersSidebarWidth), get(columnWidth), get(flowDirection), FlowDirection, get(uncategorizedColumnName), get(doneColumnName), $settingsStore()),
|
|
() => {
|
|
(($$value) => {
|
|
set(showFilepath, fallback($$value.showFilepath, true));
|
|
set(consolidateTags, fallback($$value.consolidateTags, false));
|
|
set(uncategorizedVisibility, fallback($$value.uncategorizedVisibility, () => "auto" /* Auto */, true));
|
|
set(doneVisibility, fallback($$value.doneVisibility, () => "always" /* AlwaysShow */, true));
|
|
set(filtersSidebarExpanded, fallback($$value.filtersSidebarExpanded, true));
|
|
set(filtersSidebarWidth, fallback($$value.filtersSidebarWidth, 280));
|
|
set(columnWidth, fallback($$value.columnWidth, 300));
|
|
set(flowDirection, fallback($$value.flowDirection, () => "ltr" /* LeftToRight */, true));
|
|
set(uncategorizedColumnName, $$value.uncategorizedColumnName);
|
|
set(doneColumnName, $$value.doneColumnName);
|
|
})($settingsStore());
|
|
}
|
|
);
|
|
legacy_pre_effect(() => ($settingsStore(), deep_read_state(taskActions())), () => {
|
|
void $settingsStore(), set(targetTaskFile, taskActions().getTargetFile());
|
|
});
|
|
legacy_pre_effect(() => (get(targetTaskFile), $settingsStore()), () => {
|
|
set(targetFileIsDefault, !!get(targetTaskFile) && !!$settingsStore().defaultTaskFile && get(targetTaskFile).path === $settingsStore().defaultTaskFile);
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(uncategorizedVisibility), VisibilityOption, $collapsedColumnsStore(), get(tasksByColumn)),
|
|
() => {
|
|
var _a5;
|
|
set(showUncategorizedColumn, get(uncategorizedVisibility) === "always" /* AlwaysShow */ || $collapsedColumnsStore().has("uncategorised") || get(uncategorizedVisibility) === "auto" /* Auto */ && ((_a5 = get(tasksByColumn)["uncategorised"]) == null ? void 0 : _a5.length) > 0);
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (get(doneVisibility), VisibilityOption, $collapsedColumnsStore(), get(tasksByColumn)),
|
|
() => {
|
|
var _a5;
|
|
set(showDoneColumn, get(doneVisibility) === "always" /* AlwaysShow */ || $collapsedColumnsStore().has("done") || get(doneVisibility) === "auto" /* Auto */ && ((_a5 = get(tasksByColumn)["done"]) == null ? void 0 : _a5.length) > 0);
|
|
}
|
|
);
|
|
legacy_pre_effect(
|
|
() => (get(showUncategorizedColumn), get(columns), get(showDoneColumn), get(flowDirection), FlowDirection),
|
|
() => {
|
|
set(orderedColumns, (() => {
|
|
const allColumns = [];
|
|
if (get(showUncategorizedColumn)) allColumns.push("uncategorised");
|
|
allColumns.push(...get(columns));
|
|
if (get(showDoneColumn)) allColumns.push("done");
|
|
const shouldReverse = get(flowDirection) === "rtl" /* RightToLeft */ || get(flowDirection) === "btt" /* BottomToTop */;
|
|
return shouldReverse ? allColumns.reverse() : allColumns;
|
|
})());
|
|
}
|
|
);
|
|
legacy_pre_effect(() => (get(flowDirection), FlowDirection), () => {
|
|
set(isVerticalFlow, get(flowDirection) === "ttb" /* TopToBottom */ || get(flowDirection) === "btt" /* BottomToTop */);
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get app() {
|
|
return app();
|
|
},
|
|
set app($$value) {
|
|
app($$value);
|
|
flushSync();
|
|
},
|
|
get tasksStore() {
|
|
return tasksStore();
|
|
},
|
|
set tasksStore($$value) {
|
|
tasksStore($$value);
|
|
flushSync();
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
set taskActions($$value) {
|
|
taskActions($$value);
|
|
flushSync();
|
|
},
|
|
get openSettings() {
|
|
return openSettings();
|
|
},
|
|
set openSettings($$value) {
|
|
openSettings($$value);
|
|
flushSync();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
set columnTagTableStore($$value) {
|
|
columnTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get columnColourTableStore() {
|
|
return columnColourTableStore();
|
|
},
|
|
set columnColourTableStore($$value) {
|
|
columnColourTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get columnMatchTagTableStore() {
|
|
return columnMatchTagTableStore();
|
|
},
|
|
set columnMatchTagTableStore($$value) {
|
|
columnMatchTagTableStore($$value);
|
|
flushSync();
|
|
},
|
|
get settingsStore() {
|
|
return settingsStore();
|
|
},
|
|
set settingsStore($$value) {
|
|
settingsStore($$value);
|
|
flushSync();
|
|
},
|
|
get requestSave() {
|
|
return requestSave();
|
|
},
|
|
set requestSave($$value) {
|
|
requestSave($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var fragment = root10();
|
|
event("mousemove", $window, handleMouseMove);
|
|
event("mouseup", $window, stopResize);
|
|
var div = first_child(fragment);
|
|
var button = child(div);
|
|
var span = child(button);
|
|
var text_1 = child(span, true);
|
|
reset(span);
|
|
next(2);
|
|
reset(button);
|
|
var div_1 = sibling(button, 2);
|
|
let classes;
|
|
var node = child(div_1);
|
|
{
|
|
var consequent_2 = ($$anchor2) => {
|
|
var aside = root_16();
|
|
var button_1 = child(aside);
|
|
var div_2 = sibling(button_1, 2);
|
|
var div_3 = child(div_2);
|
|
var div_4 = sibling(child(div_3), 2);
|
|
var details = child(div_4);
|
|
var ul = sibling(child(details), 2);
|
|
each(ul, 5, () => get(contentFilters), index, ($$anchor3, filter2) => {
|
|
var li = root_26();
|
|
var button_2 = child(li);
|
|
var button_3 = sibling(button_2, 2);
|
|
let classes_1;
|
|
var text_2 = child(button_3, true);
|
|
reset(button_3);
|
|
reset(li);
|
|
template_effect(() => {
|
|
var _a5, _b3;
|
|
set_attribute2(button_2, "aria-label", `Delete filter: ${(_a5 = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
}))) != null ? _a5 : ""}`);
|
|
set_attribute2(button_3, "aria-label", `Load saved filter: ${(_b3 = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
}))) != null ? _b3 : ""}`);
|
|
set_attribute2(button_3, "aria-pressed", (get(filter2), get(activeContentFilterId), untrack(() => get(filter2).id === get(activeContentFilterId))));
|
|
classes_1 = set_class(button_3, 1, "svelte-16qe0yp", null, classes_1, { active: get(filter2).id === get(activeContentFilterId) });
|
|
set_text(text_2, (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
})));
|
|
});
|
|
event("click", button_2, () => {
|
|
var _a5, _b3;
|
|
return openDeleteModal(get(filter2).id, (_b3 = (_a5 = get(filter2).content) == null ? void 0 : _a5.text) != null ? _b3 : "", "content");
|
|
});
|
|
event("click", button_3, () => {
|
|
var _a5, _b3;
|
|
return loadContentFilter(get(filter2).id, (_b3 = (_a5 = get(filter2).content) == null ? void 0 : _a5.text) != null ? _b3 : "");
|
|
});
|
|
append($$anchor3, li);
|
|
});
|
|
reset(ul);
|
|
reset(details);
|
|
reset(div_4);
|
|
var div_5 = sibling(div_4, 2);
|
|
var input = child(div_5);
|
|
remove_input_defaults(input);
|
|
var node_1 = sibling(input, 2);
|
|
{
|
|
var consequent = ($$anchor3) => {
|
|
var datalist = root_33();
|
|
each(datalist, 5, () => get(contentFilters), index, ($$anchor4, filter2) => {
|
|
var option = root_42();
|
|
var text_3 = child(option, true);
|
|
reset(option);
|
|
var option_value = {};
|
|
template_effect(() => {
|
|
var _a5;
|
|
set_text(text_3, (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
})));
|
|
if (option_value !== (option_value = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
})))) {
|
|
option.value = (_a5 = option.__value = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).content) == null ? void 0 : _a6.text;
|
|
}))) != null ? _a5 : "";
|
|
}
|
|
});
|
|
append($$anchor4, option);
|
|
});
|
|
reset(datalist);
|
|
append($$anchor3, datalist);
|
|
};
|
|
if_block(node_1, ($$render) => {
|
|
if (get(contentFilters), untrack(() => get(contentFilters).length > 0)) $$render(consequent);
|
|
});
|
|
}
|
|
reset(div_5);
|
|
var div_6 = sibling(div_5, 2);
|
|
var button_4 = child(div_6);
|
|
var button_5 = sibling(button_4, 2);
|
|
reset(div_6);
|
|
reset(div_3);
|
|
var div_7 = sibling(div_3, 2);
|
|
var node_2 = child(div_7);
|
|
{
|
|
let $0 = derived_safe_equal(() => (get(tags), untrack(() => [...get(tags)])));
|
|
let $1 = derived_safe_equal(() => (get(selectedTags), get(tagFilterExists), untrack(() => get(selectedTags).length === 0 || get(tagFilterExists))));
|
|
let $2 = derived_safe_equal(() => (get(selectedTags), untrack(() => get(selectedTags).length === 0)));
|
|
Select_tag(node_2, {
|
|
get tags() {
|
|
return get($0);
|
|
},
|
|
get savedFilters() {
|
|
return get(tagFilters);
|
|
},
|
|
onLoadFilter: (filterId) => {
|
|
if (get(activeTagFilterId) === filterId) {
|
|
clearTagFilter();
|
|
} else {
|
|
set(activeTagFilterId, filterId);
|
|
}
|
|
},
|
|
get addButtonDisabled() {
|
|
return get($1);
|
|
},
|
|
onAddClick: addTagFilter,
|
|
get clearButtonDisabled() {
|
|
return get($2);
|
|
},
|
|
onClearClick: clearTagFilter,
|
|
get activeFilterId() {
|
|
return get(activeTagFilterId);
|
|
},
|
|
onDeleteClick: (filterId, filterText2) => openDeleteModal(filterId, filterText2, "tag"),
|
|
get value() {
|
|
return get(selectedTags);
|
|
},
|
|
set value($$value) {
|
|
set(selectedTags, $$value);
|
|
},
|
|
$$legacy: true
|
|
});
|
|
}
|
|
reset(div_7);
|
|
var div_8 = sibling(div_7, 2);
|
|
var div_9 = sibling(child(div_8), 2);
|
|
var details_1 = child(div_9);
|
|
var ul_1 = sibling(child(details_1), 2);
|
|
each(ul_1, 5, () => get(fileFilters), index, ($$anchor3, filter2) => {
|
|
var li_1 = root_54();
|
|
var button_6 = child(li_1);
|
|
var button_7 = sibling(button_6, 2);
|
|
let classes_2;
|
|
var text_4 = child(button_7, true);
|
|
reset(button_7);
|
|
reset(li_1);
|
|
template_effect(() => {
|
|
var _a5, _b3;
|
|
set_attribute2(button_6, "aria-label", `Delete filter: ${(_a5 = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).file) == null ? void 0 : _a6.filepaths[0];
|
|
}))) != null ? _a5 : ""}`);
|
|
set_attribute2(button_7, "aria-label", `Load saved filter: ${(_b3 = (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).file) == null ? void 0 : _a6.filepaths[0];
|
|
}))) != null ? _b3 : ""}`);
|
|
set_attribute2(button_7, "aria-pressed", (get(filter2), get(activeFileFilterId), untrack(() => get(filter2).id === get(activeFileFilterId))));
|
|
classes_2 = set_class(button_7, 1, "svelte-16qe0yp", null, classes_2, { active: get(filter2).id === get(activeFileFilterId) });
|
|
set_text(text_4, (get(filter2), untrack(() => {
|
|
var _a6;
|
|
return (_a6 = get(filter2).file) == null ? void 0 : _a6.filepaths[0];
|
|
})));
|
|
});
|
|
event("click", button_6, () => {
|
|
var _a5, _b3;
|
|
return openDeleteModal(get(filter2).id, (_b3 = (_a5 = get(filter2).file) == null ? void 0 : _a5.filepaths[0]) != null ? _b3 : "", "file");
|
|
});
|
|
event("click", button_7, () => {
|
|
var _a5, _b3;
|
|
return loadFileFilter(get(filter2).id, (_b3 = (_a5 = get(filter2).file) == null ? void 0 : _a5.filepaths[0]) != null ? _b3 : "");
|
|
});
|
|
append($$anchor3, li_1);
|
|
});
|
|
reset(ul_1);
|
|
reset(details_1);
|
|
reset(div_9);
|
|
var div_10 = sibling(div_9, 2);
|
|
var input_1 = child(div_10);
|
|
remove_input_defaults(input_1);
|
|
var node_3 = sibling(input_1, 2);
|
|
{
|
|
var consequent_1 = ($$anchor3) => {
|
|
var datalist_1 = root_63();
|
|
each(datalist_1, 5, () => get(availableFiles), index, ($$anchor4, filePath) => {
|
|
var option_1 = root_7();
|
|
var text_5 = child(option_1, true);
|
|
reset(option_1);
|
|
var option_1_value = {};
|
|
template_effect(() => {
|
|
var _a5;
|
|
set_text(text_5, get(filePath));
|
|
if (option_1_value !== (option_1_value = get(filePath))) {
|
|
option_1.value = (_a5 = option_1.__value = get(filePath)) != null ? _a5 : "";
|
|
}
|
|
});
|
|
append($$anchor4, option_1);
|
|
});
|
|
reset(datalist_1);
|
|
append($$anchor3, datalist_1);
|
|
};
|
|
if_block(node_3, ($$render) => {
|
|
if (get(availableFiles), untrack(() => get(availableFiles).length > 0)) $$render(consequent_1);
|
|
});
|
|
}
|
|
reset(div_10);
|
|
var div_11 = sibling(div_10, 2);
|
|
var button_8 = child(div_11);
|
|
var button_9 = sibling(button_8, 2);
|
|
reset(div_11);
|
|
reset(div_8);
|
|
reset(div_2);
|
|
reset(aside);
|
|
template_effect(
|
|
($0, $1, $2, $3) => {
|
|
set_attribute2(input, "aria-describedby", (get(contentFilters), untrack(() => get(contentFilters).length > 0 ? "content-filters" : void 0)));
|
|
button_4.disabled = $0;
|
|
button_5.disabled = $1;
|
|
button_8.disabled = $2;
|
|
button_9.disabled = $3;
|
|
},
|
|
[
|
|
() => (get(filterText), get(contentFilterExists), untrack(() => get(filterText).trim() === "" || get(contentFilterExists))),
|
|
() => (get(filterText), untrack(() => get(filterText).trim() === "")),
|
|
() => (get(fileFilter), get(fileFilterExists), untrack(() => get(fileFilter).trim() === "" || get(fileFilterExists))),
|
|
() => (get(fileFilter), untrack(() => get(fileFilter).trim() === ""))
|
|
]
|
|
);
|
|
event("mousedown", button_1, startResize);
|
|
bind_value(input, () => get(filterText), ($$value) => set(filterText, $$value));
|
|
event("click", button_4, addContentFilter);
|
|
event("click", button_5, clearContentFilter);
|
|
bind_value(input_1, () => get(fileFilter), ($$value) => set(fileFilter, $$value));
|
|
event("click", button_8, addFileFilter);
|
|
event("click", button_9, clearFileFilter);
|
|
append($$anchor2, aside);
|
|
};
|
|
if_block(node, ($$render) => {
|
|
if (get(filtersSidebarExpanded)) $$render(consequent_2);
|
|
});
|
|
}
|
|
var div_12 = sibling(node, 2);
|
|
var div_13 = child(div_12);
|
|
var span_1 = child(div_13);
|
|
var node_4 = child(span_1);
|
|
{
|
|
var consequent_3 = ($$anchor2) => {
|
|
var text_6 = text();
|
|
template_effect(() => {
|
|
var _a5, _b3;
|
|
return set_text(text_6, `${(_a5 = get(filteredTaskCount)) != null ? _a5 : ""} of ${(_b3 = get(totalTaskCount)) != null ? _b3 : ""} tasks`);
|
|
});
|
|
append($$anchor2, text_6);
|
|
};
|
|
var alternate = ($$anchor2) => {
|
|
var text_7 = text();
|
|
template_effect(() => {
|
|
var _a5;
|
|
return set_text(text_7, `Total: ${(_a5 = get(totalTaskCount)) != null ? _a5 : ""} tasks`);
|
|
});
|
|
append($$anchor2, text_7);
|
|
};
|
|
if_block(node_4, ($$render) => {
|
|
if (get(isFiltered)) $$render(consequent_3);
|
|
else $$render(alternate, -1);
|
|
});
|
|
}
|
|
reset(span_1);
|
|
var node_5 = sibling(span_1, 2);
|
|
Icon_button(node_5, {
|
|
icon: "lucide-settings",
|
|
$$events: { click: handleOpenSettings }
|
|
});
|
|
reset(div_13);
|
|
var div_14 = sibling(div_13, 2);
|
|
let classes_3;
|
|
var div_15 = child(div_14);
|
|
each(div_15, 5, () => get(orderedColumns), (column) => column, ($$anchor2, column) => {
|
|
{
|
|
let $0 = derived_safe_equal(() => (get(tasksByColumn), get(column), untrack(() => {
|
|
var _a5;
|
|
return (_a5 = get(tasksByColumn)[get(column)]) != null ? _a5 : [];
|
|
})));
|
|
let $1 = derived_safe_equal(() => ($collapsedColumnsStore(), get(column), untrack(() => $collapsedColumnsStore().has(get(column)))));
|
|
Column($$anchor2, {
|
|
get app() {
|
|
return app();
|
|
},
|
|
get column() {
|
|
return get(column);
|
|
},
|
|
hideOnEmpty: false,
|
|
get tasks() {
|
|
return get($0);
|
|
},
|
|
get taskActions() {
|
|
return taskActions();
|
|
},
|
|
get columnTagTableStore() {
|
|
return columnTagTableStore();
|
|
},
|
|
get columnColourTableStore() {
|
|
return columnColourTableStore();
|
|
},
|
|
get columnMatchTagTableStore() {
|
|
return columnMatchTagTableStore();
|
|
},
|
|
get showFilepath() {
|
|
return get(showFilepath);
|
|
},
|
|
get consolidateTags() {
|
|
return get(consolidateTags);
|
|
},
|
|
get isVerticalFlow() {
|
|
return get(isVerticalFlow);
|
|
},
|
|
get targetTaskFile() {
|
|
return get(targetTaskFile);
|
|
},
|
|
get targetFileIsDefault() {
|
|
return get(targetFileIsDefault);
|
|
},
|
|
get isCollapsed() {
|
|
return get($1);
|
|
},
|
|
onToggleCollapse: () => toggleColumnCollapse(get(column)),
|
|
get uncategorizedColumnName() {
|
|
return get(uncategorizedColumnName);
|
|
},
|
|
get doneColumnName() {
|
|
return get(doneColumnName);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
reset(div_15);
|
|
reset(div_14);
|
|
reset(div_12);
|
|
reset(div_1);
|
|
reset(div);
|
|
var node_6 = sibling(div, 2);
|
|
{
|
|
var consequent_4 = ($$anchor2) => {
|
|
Delete_filter_modal($$anchor2, {
|
|
get filterText() {
|
|
return get(filterToDelete), untrack(() => get(filterToDelete).text);
|
|
},
|
|
onConfirm: confirmDelete,
|
|
onCancel: closeDeleteModal
|
|
});
|
|
};
|
|
if_block(node_6, ($$render) => {
|
|
if (get(deleteModalOpen) && get(filterToDelete)) $$render(consequent_4);
|
|
});
|
|
}
|
|
template_effect(() => {
|
|
var _a5, _b3;
|
|
set_attribute2(button, "aria-label", get(filtersSidebarExpanded) ? "Hide filters" : "Show filters");
|
|
set_text(text_1, get(filtersSidebarExpanded) ? "\u25C2" : "\u25B8");
|
|
classes = set_class(div_1, 1, "board-container svelte-16qe0yp", null, classes, { "sidebar-expanded": get(filtersSidebarExpanded) });
|
|
set_style(div_1, `--sidebar-width: ${(_a5 = get(filtersSidebarWidth)) != null ? _a5 : ""}px;`);
|
|
classes_3 = set_class(div_14, 1, "columns svelte-16qe0yp", null, classes_3, { "vertical-flow": get(isVerticalFlow) });
|
|
set_style(div_14, `--column-width: ${(_b3 = get(columnWidth)) != null ? _b3 : ""}px;`);
|
|
});
|
|
event("click", button, toggleSidebar);
|
|
append($$anchor, fragment);
|
|
var $$pop = pop($$exports);
|
|
$$cleanup();
|
|
return $$pop;
|
|
}
|
|
|
|
// src/ui/settings/settings.ts
|
|
var import_obsidian6 = require("obsidian");
|
|
|
|
// src/ui/components/select/compact_tag_select.svelte
|
|
var root11 = from_html(`<div class="compact-tag-select svelte-1j8ru35"><svelte-css-wrapper style="display: contents"><!></svelte-css-wrapper></div>`);
|
|
var $$css12 = {
|
|
hash: "svelte-1j8ru35",
|
|
code: ".compact-tag-select.svelte-1j8ru35 {--compact-tag-select-reserve: 64px;--compact-tag-chip-bg: color-mix(\n in srgb,\n var(--interactive-accent) 10%,\n var(--background-modifier-form-field, var(--background-primary))\n );--compact-tag-chip-border: color-mix(\n in srgb,\n var(--interactive-accent) 24%,\n var(--background-modifier-border)\n );--compact-tag-chip-color: var(--text-normal);width:100%;min-width:0;display:flex;max-width:100%;}.compact-tag-select .svelte-select button > svg,\n.compact-tag-select .svelte-select .multi-item-clear > svg {cursor:pointer;}.compact-tag-select .svelte-select .multi-item {border:var(--border-width) solid var(--compact-tag-chip-border) !important;color:var(--compact-tag-chip-color);outline:none !important;box-shadow:none !important;font-size:calc(var(--font-ui-smaller) - 1px);line-height:1;min-height:20px;display:inline-flex;align-items:center;margin:0 !important;border-radius:var(--pill-radius, 8px);background-clip:padding-box;}.compact-tag-select .svelte-select .value-container.multiple {display:flex !important;flex-direction:row !important;padding:0 !important;min-height:20px;align-items:center;gap:4px;flex-wrap:wrap;overflow:hidden !important;}.compact-tag-select .svelte-select .multi-item-text {padding-right:0 !important;display:inline-flex;align-items:center;line-height:1;}.compact-tag-select .svelte-select .multi-item-clear {transform:scale(0.9);display:inline-flex;align-items:center;}.compact-tag-select .svelte-select .svelte-select-list {z-index:5;min-width:max-content;width:max-content;max-width:min(320px, 100vw - 32px);}.compact-tag-select .svelte-select .clear-select {display:none !important;}.compact-tag-select .svelte-select.focused {transition:box-shadow 150ms ease;box-shadow:none !important;}.compact-tag-select .svelte-select input:focus-visible {outline:none;}.compact-tag-select .svelte-select .item {font-weight:var(--font-normal);white-space:nowrap;}.compact-tag-select .svelte-select {font-size:var(--font-ui-smaller);width:100%;min-width:0;max-width:100%;background:var(--background-modifier-form-field, var(--background-primary));border-radius:var(--input-radius);}.compact-tag-select .svelte-select .value-container {min-height:20px;min-width:0;overflow:hidden !important;}.compact-tag-select .svelte-select input {padding-top:0 !important;padding-bottom:0 !important;padding-left:0 !important;padding-right:0 !important;margin:0 !important;line-height:1.1;min-width:2ch !important;width:auto !important;flex:1 1 var(--compact-tag-select-reserve);max-width:100%;border:0 !important;background:transparent !important;box-shadow:none !important;appearance:none !important;}.compact-tag-select .svelte-select .selectContainer {display:flex;align-items:center;padding:2px 6px !important;min-height:24px;min-width:0;width:100%;max-width:100%;box-sizing:border-box;flex-wrap:wrap;overflow:hidden !important;background:var(--background-modifier-form-field, var(--background-primary));border-radius:var(--input-radius);}.compact-tag-select .svelte-select.focused .selectContainer {padding:2px 6px !important;}"
|
|
};
|
|
function Compact_tag_select($$anchor, $$props) {
|
|
if (new.target) return createClassComponent({ component: Compact_tag_select, ...$$anchor });
|
|
push($$props, false);
|
|
append_styles($$anchor, $$css12);
|
|
const normalizedItems = mutable_source();
|
|
const hasCustomOption = mutable_source();
|
|
const options = mutable_source();
|
|
const selectedItemsFromValue = mutable_source();
|
|
let items = prop($$props, "items", 28, () => []);
|
|
let value = prop($$props, "value", 28, () => []);
|
|
let maxSelected = prop($$props, "maxSelected", 12, 1);
|
|
let placeholder = prop($$props, "placeholder", 12, "");
|
|
let ariaLabel = prop($$props, "ariaLabel", 12, "Tag selector");
|
|
const dispatch = createEventDispatcher();
|
|
let filterText = mutable_source("");
|
|
let selectedItems = mutable_source([]);
|
|
function normalizeSelected(selected) {
|
|
if (!Array.isArray(selected)) {
|
|
return [];
|
|
}
|
|
const parsed = selected.flatMap((entry) => {
|
|
if (typeof entry === "object" && entry !== null && "value" in entry && typeof entry.value === "string") {
|
|
return [entry.value.trim()];
|
|
}
|
|
return [];
|
|
}).filter((entry) => entry.length > 0);
|
|
const unique = [...new Set(parsed)];
|
|
if (maxSelected() > 0 && unique.length > maxSelected()) {
|
|
return unique.slice(unique.length - maxSelected());
|
|
}
|
|
return unique;
|
|
}
|
|
function handleInput(event2) {
|
|
value(normalizeSelected(event2.detail));
|
|
dispatch("change", value());
|
|
}
|
|
legacy_pre_effect(() => deep_read_state(items()), () => {
|
|
set(normalizedItems, [...new Set(items())].map((item) => ({ label: item, value: item })));
|
|
});
|
|
legacy_pre_effect(() => (get(filterText), deep_read_state(items())), () => {
|
|
set(hasCustomOption, get(filterText).trim().length > 0 && !items().some((item) => item === get(filterText).trim()));
|
|
});
|
|
legacy_pre_effect(
|
|
() => (get(hasCustomOption), get(filterText), get(normalizedItems)),
|
|
() => {
|
|
set(options, get(hasCustomOption) ? [
|
|
{
|
|
label: get(filterText).trim(),
|
|
value: get(filterText).trim()
|
|
},
|
|
...get(normalizedItems)
|
|
] : get(normalizedItems));
|
|
}
|
|
);
|
|
legacy_pre_effect(() => deep_read_state(value()), () => {
|
|
set(selectedItemsFromValue, value().map((item) => ({ label: item, value: item })));
|
|
});
|
|
legacy_pre_effect(() => (get(selectedItems), get(selectedItemsFromValue)), () => {
|
|
const currentValues = get(selectedItems).map((item) => item.value).join(",");
|
|
const nextValues = get(selectedItemsFromValue).map((item) => item.value).join(",");
|
|
if (currentValues !== nextValues) {
|
|
set(selectedItems, get(selectedItemsFromValue));
|
|
}
|
|
});
|
|
legacy_pre_effect_reset();
|
|
var $$exports = {
|
|
get items() {
|
|
return items();
|
|
},
|
|
set items($$value) {
|
|
items($$value);
|
|
flushSync();
|
|
},
|
|
get value() {
|
|
return value();
|
|
},
|
|
set value($$value) {
|
|
value($$value);
|
|
flushSync();
|
|
},
|
|
get maxSelected() {
|
|
return maxSelected();
|
|
},
|
|
set maxSelected($$value) {
|
|
maxSelected($$value);
|
|
flushSync();
|
|
},
|
|
get placeholder() {
|
|
return placeholder();
|
|
},
|
|
set placeholder($$value) {
|
|
placeholder($$value);
|
|
flushSync();
|
|
},
|
|
get ariaLabel() {
|
|
return ariaLabel();
|
|
},
|
|
set ariaLabel($$value) {
|
|
ariaLabel($$value);
|
|
flushSync();
|
|
},
|
|
$set: update_legacy_props,
|
|
$on: ($$event_name, $$event_cb) => add_legacy_event_listener($$props, $$event_name, $$event_cb)
|
|
};
|
|
init();
|
|
var div = root11();
|
|
var node = child(div);
|
|
{
|
|
let $0 = derived_safe_equal(() => ({ "aria-label": ariaLabel() }));
|
|
css_props(node, () => ({
|
|
"--background": "var(--background-modifier-form-field, var(--background-primary))",
|
|
"--border": "var(--border-width) solid var(--background-modifier-border)",
|
|
"--border-focused": "var(--border-width) solid var(--background-modifier-border-focus)",
|
|
"--border-hover": "var(--border-width) solid var(--background-modifier-border-hover)",
|
|
"--border-radius": "var(--input-radius)",
|
|
"--item-hover-bg": "var(--background-modifier-hover)",
|
|
"--list-background": "var(--background-modifier-form-field, var(--background-primary))",
|
|
"--list-border": "var(--border-width) solid var(--background-modifier-border)",
|
|
"--multi-item-bg": "var(--compact-tag-chip-bg)",
|
|
"--multi-item-clear-icon-color": "var(--compact-tag-chip-color)",
|
|
"--multi-item-color": "var(--compact-tag-chip-color)",
|
|
"--multi-item-height": "auto",
|
|
"--multi-item-outline": "var(--border-width) solid var(--compact-tag-chip-border)",
|
|
"--multi-item-padding": "2px 8px",
|
|
"--multi-select-input-padding": "2px 8px",
|
|
"--multi-select-input-margin": "0 6px 0 0",
|
|
"--input-color": "var(--text-normal)",
|
|
"--placeholder-color": "var(--text-muted)"
|
|
}));
|
|
Select(node.lastChild, {
|
|
multiple: true,
|
|
closeListOnChange: false,
|
|
listAutoWidth: true,
|
|
clearable: false,
|
|
showChevron: false,
|
|
get placeholder() {
|
|
return placeholder();
|
|
},
|
|
get items() {
|
|
return get(options);
|
|
},
|
|
get value() {
|
|
return get(selectedItems);
|
|
},
|
|
get inputAttributes() {
|
|
return get($0);
|
|
},
|
|
get filterText() {
|
|
return get(filterText);
|
|
},
|
|
set filterText($$value) {
|
|
set(filterText, $$value);
|
|
},
|
|
$$events: { input: handleInput },
|
|
$$legacy: true
|
|
});
|
|
reset(node);
|
|
}
|
|
reset(div);
|
|
append($$anchor, div);
|
|
return pop($$exports);
|
|
}
|
|
|
|
// src/ui/tasks/scope.ts
|
|
function normalizePath(path) {
|
|
return path.replace(/^\//, "").replace(/\/$/, "");
|
|
}
|
|
function pathMatchesFilter(filePath, filterPath) {
|
|
const normalized = normalizePath(filterPath);
|
|
return filePath === normalized || filePath.startsWith(`${normalized}/`);
|
|
}
|
|
function shouldIncludeFilePath(filePath, filenameFilter, excludeFilter, boardFolderPath) {
|
|
if (filenameFilter !== null) {
|
|
const included = filenameFilter.some(
|
|
(folder) => pathMatchesFilter(filePath, folder)
|
|
);
|
|
if (!included) {
|
|
return false;
|
|
}
|
|
}
|
|
if (excludeFilter && excludeFilter.length > 0) {
|
|
const normalizedBoard = boardFolderPath ? normalizePath(boardFolderPath) : null;
|
|
const isExcluded = excludeFilter.some((excludePath) => {
|
|
if (!pathMatchesFilter(filePath, excludePath)) {
|
|
return false;
|
|
}
|
|
if (normalizedBoard) {
|
|
const normalizedExclude = normalizePath(excludePath);
|
|
const excludeCoversBoard = normalizedBoard === normalizedExclude || normalizedBoard.startsWith(`${normalizedExclude}/`);
|
|
if (excludeCoversBoard) {
|
|
const fileInBoardFolder = filePath === normalizedBoard || filePath.startsWith(`${normalizedBoard}/`);
|
|
if (fileInBoardFolder) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
});
|
|
if (isExcluded) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// src/ui/settings/column_reorder.ts
|
|
function moveColumnRelativeTo(columns, draggedColumnId, targetColumnId, position) {
|
|
if (draggedColumnId === targetColumnId) {
|
|
return columns;
|
|
}
|
|
const draggedIndex = columns.findIndex((column) => column.id === draggedColumnId);
|
|
const targetIndex = columns.findIndex((column) => column.id === targetColumnId);
|
|
if (draggedIndex < 0 || targetIndex < 0) {
|
|
return columns;
|
|
}
|
|
const nextColumns = [...columns];
|
|
const [draggedColumn] = nextColumns.splice(draggedIndex, 1);
|
|
if (!draggedColumn) {
|
|
return columns;
|
|
}
|
|
const baseTargetIndex = draggedIndex < targetIndex ? targetIndex - 1 : targetIndex;
|
|
const adjustedTargetIndex = position === "after" ? baseTargetIndex + 1 : baseTargetIndex;
|
|
nextColumns.splice(adjustedTargetIndex, 0, draggedColumn);
|
|
return nextColumns;
|
|
}
|
|
|
|
// src/ui/settings/column_validation.ts
|
|
function getColumnValidationError(columns) {
|
|
const errors = [];
|
|
const seenSignatures = /* @__PURE__ */ new Map();
|
|
for (const column of columns) {
|
|
const label = column.label.trim();
|
|
if (label.length === 0) {
|
|
errors.push("Column labels cannot be empty.");
|
|
continue;
|
|
}
|
|
const derivedTag = kebab(label);
|
|
if (RESERVED_COLUMN_KEYS.has(derivedTag)) {
|
|
errors.push(`Column name "${label}" conflicts with a built-in column.`);
|
|
}
|
|
if (usesTagMatching(column) && column.matchTags.length === 0) {
|
|
errors.push(`Column "${label}" must define at least one explicit tag.`);
|
|
continue;
|
|
}
|
|
if (usesTagMatching(column)) {
|
|
for (const tag2 of column.matchTags) {
|
|
if (!isValidTag(tag2)) {
|
|
errors.push(`Column "${label}" has an invalid tag "${tag2}".`);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
const signature = columnRuleSignature(column);
|
|
const existingLabel = seenSignatures.get(signature);
|
|
if (existingLabel) {
|
|
errors.push(`Columns "${existingLabel}" and "${label}" match the same tag.`);
|
|
} else {
|
|
seenSignatures.set(signature, label);
|
|
}
|
|
if (usesTagMatching(column) && column.matchTags.length === 1) {
|
|
const nameEquivalent = `name:${kebab(column.matchTags[0])}`;
|
|
const nameCollision = seenSignatures.get(nameEquivalent);
|
|
if (nameCollision) {
|
|
errors.push(`Columns "${nameCollision}" and "${label}" match the same tag.`);
|
|
}
|
|
}
|
|
if (column.matchMode === "name") {
|
|
const tagsEquivalent = `tags:${derivedTag}`;
|
|
const tagsCollision = seenSignatures.get(tagsEquivalent);
|
|
if (tagsCollision) {
|
|
errors.push(`Columns "${tagsCollision}" and "${label}" match the same tag.`);
|
|
}
|
|
}
|
|
}
|
|
return errors.length > 0 ? errors[0] : null;
|
|
}
|
|
|
|
// src/ui/settings/settings.ts
|
|
var VisibilityOptionSchema = z.nativeEnum(VisibilityOption);
|
|
var ScopeOptionSchema = z.nativeEnum(ScopeOption);
|
|
var FlowDirectionSchema = z.nativeEnum(FlowDirection);
|
|
var SettingsModal = class extends import_obsidian6.Modal {
|
|
constructor(app, settings, onSubmit, boardFolderPath) {
|
|
super(app);
|
|
this.settings = settings;
|
|
this.onSubmit = onSubmit;
|
|
this.boardFolderPath = boardFolderPath;
|
|
this.validationError = null;
|
|
this.saveBtn = null;
|
|
this.columnsEditorEl = null;
|
|
this.headerDirtyPill = null;
|
|
this.headerValidationPill = null;
|
|
this.availableColumnTags = [];
|
|
this.mountedColumnControls = [];
|
|
this.updateExistingTaskTagsByColumnId = /* @__PURE__ */ new Map();
|
|
this.draggedColumnId = null;
|
|
this.dragPreviewTarget = null;
|
|
this.focusTagEditorColumnId = null;
|
|
this.originalSettings = structuredClone(settings);
|
|
this.originalSettingsSnapshot = JSON.stringify(settings);
|
|
}
|
|
isDirty() {
|
|
return JSON.stringify(this.settings) !== this.originalSettingsSnapshot;
|
|
}
|
|
validateColumns() {
|
|
var _a5;
|
|
this.validationError = getColumnValidationError((_a5 = this.settings.columns) != null ? _a5 : []);
|
|
this.updateValidationBanner();
|
|
}
|
|
touchSettings() {
|
|
this.validateColumns();
|
|
this.updateDirtyBanner();
|
|
}
|
|
getOriginalColumn(columnId) {
|
|
return this.originalSettings.columns.find((column) => column.id === columnId);
|
|
}
|
|
shouldShowRetagOption(column) {
|
|
const originalColumn = this.getOriginalColumn(column.id);
|
|
if (!originalColumn) return false;
|
|
return columnRuleSignature(originalColumn) !== columnRuleSignature(column);
|
|
}
|
|
shouldUpdateExistingTaskTags(columnId) {
|
|
var _a5;
|
|
return (_a5 = this.updateExistingTaskTagsByColumnId.get(columnId)) != null ? _a5 : true;
|
|
}
|
|
addColumn() {
|
|
const usedIds = new Set(this.settings.columns.map((column) => column.id));
|
|
this.settings.columns = [
|
|
...this.settings.columns,
|
|
{
|
|
id: createColumnId("New Column", usedIds),
|
|
label: "New Column",
|
|
matchMode: "name",
|
|
matchTags: []
|
|
}
|
|
];
|
|
this.renderColumnsEditor();
|
|
this.touchSettings();
|
|
}
|
|
reorderColumns(draggedColumnId, targetColumnId, position) {
|
|
const reordered = moveColumnRelativeTo(this.settings.columns, draggedColumnId, targetColumnId, position);
|
|
if (reordered === this.settings.columns) {
|
|
return;
|
|
}
|
|
this.settings.columns = reordered;
|
|
this.renderColumnsEditor();
|
|
this.touchSettings();
|
|
}
|
|
setDragPreview(columnId, position) {
|
|
this.dragPreviewTarget = { columnId, position };
|
|
}
|
|
clearDragPreview() {
|
|
this.dragPreviewTarget = null;
|
|
}
|
|
clearDragState(container) {
|
|
this.draggedColumnId = null;
|
|
this.clearDragPreview();
|
|
if (!container) return;
|
|
container.querySelectorAll(".column-editor-row").forEach((candidate) => {
|
|
candidate.removeClass("is-drop-target");
|
|
candidate.removeClass("is-drop-before");
|
|
candidate.removeClass("is-drop-after");
|
|
candidate.removeClass("is-dragging");
|
|
});
|
|
}
|
|
async refreshAvailableColumnTags() {
|
|
var _a5;
|
|
const files = this.app.vault.getMarkdownFiles().filter(
|
|
(file) => {
|
|
var _a6;
|
|
return shouldIncludeFilePath(
|
|
file.path,
|
|
this.getScopeFilter(),
|
|
(_a6 = this.settings.excludePaths) != null ? _a6 : [],
|
|
this.boardFolderPath
|
|
);
|
|
}
|
|
);
|
|
const tags = /* @__PURE__ */ new Set();
|
|
const ignoredStatusMarkers = (_a5 = this.settings.ignoredStatusMarkers) != null ? _a5 : DEFAULT_IGNORED_STATUS_MARKERS;
|
|
for (const file of files) {
|
|
const contents = await this.app.vault.cachedRead(file);
|
|
for (const row of contents.split("\n")) {
|
|
if (!row || !isTrackedTaskString(row, ignoredStatusMarkers)) continue;
|
|
for (const tag2 of getTagsFromContent(row)) {
|
|
if (tag2 === "archived") continue;
|
|
tags.add(tag2);
|
|
}
|
|
}
|
|
}
|
|
const nextTags = [...tags].sort((a, b) => a.localeCompare(b));
|
|
if (JSON.stringify(nextTags) === JSON.stringify(this.availableColumnTags)) {
|
|
return;
|
|
}
|
|
this.availableColumnTags = nextTags;
|
|
if (this.columnsEditorEl) {
|
|
this.renderColumnsEditor();
|
|
}
|
|
}
|
|
renderColumnsEditor() {
|
|
var _a5, _b3, _c2, _d;
|
|
if (!this.columnsEditorEl) {
|
|
return;
|
|
}
|
|
for (const destroy of this.mountedColumnControls) {
|
|
destroy();
|
|
}
|
|
this.mountedColumnControls = [];
|
|
this.columnsEditorEl.empty();
|
|
const section = this.columnsEditorEl.createDiv({ cls: "column-editor-section" });
|
|
const sectionIntro = section.createDiv({ cls: "column-editor-intro" });
|
|
sectionIntro.createEl("h2", { text: "Columns" });
|
|
sectionIntro.createEl("p", {
|
|
text: "Edit each board column directly. Labels control display; match mode controls how tasks land in each column. Tag matching supports one or more required tags.",
|
|
cls: "setting-item-description"
|
|
});
|
|
const rows = section.createDiv({ cls: "column-editor-list" });
|
|
this.renderBookendRow(rows, {
|
|
title: "Uncategorized",
|
|
label: (_a5 = this.settings.uncategorizedColumnName) != null ? _a5 : "",
|
|
placeholder: "Uncategorized",
|
|
visibility: (_b3 = this.settings.uncategorizedVisibility) != null ? _b3 : "auto" /* Auto */,
|
|
onLabelChange: (value) => {
|
|
this.settings.uncategorizedColumnName = value;
|
|
this.touchSettings();
|
|
},
|
|
onVisibilityChange: (value) => {
|
|
const validatedValue = VisibilityOptionSchema.safeParse(value);
|
|
this.settings.uncategorizedVisibility = validatedValue.success ? validatedValue.data : defaultSettings.uncategorizedVisibility;
|
|
this.touchSettings();
|
|
}
|
|
});
|
|
for (const column of this.settings.columns) {
|
|
this.renderCustomColumnRow(rows, column);
|
|
}
|
|
this.renderBookendRow(rows, {
|
|
title: "Done",
|
|
label: (_c2 = this.settings.doneColumnName) != null ? _c2 : "",
|
|
placeholder: "Done",
|
|
visibility: (_d = this.settings.doneVisibility) != null ? _d : "always" /* AlwaysShow */,
|
|
onLabelChange: (value) => {
|
|
this.settings.doneColumnName = value;
|
|
this.touchSettings();
|
|
},
|
|
onVisibilityChange: (value) => {
|
|
const validatedValue = VisibilityOptionSchema.safeParse(value);
|
|
this.settings.doneVisibility = validatedValue.success ? validatedValue.data : defaultSettings.doneVisibility;
|
|
this.touchSettings();
|
|
}
|
|
});
|
|
const controls = section.createDiv({ cls: "column-editor-controls" });
|
|
const addButton = controls.createEl("button", { text: "Add column" });
|
|
addButton.addEventListener("click", () => this.addColumn());
|
|
if (this.focusTagEditorColumnId) {
|
|
const targetColumnId = this.focusTagEditorColumnId;
|
|
this.focusTagEditorColumnId = null;
|
|
window.requestAnimationFrame(() => {
|
|
const targetInput = section.querySelector(
|
|
`[data-column-id="${targetColumnId}"] .column-editor-field-tag input`
|
|
);
|
|
targetInput == null ? void 0 : targetInput.focus();
|
|
targetInput == null ? void 0 : targetInput.click();
|
|
});
|
|
}
|
|
}
|
|
renderBookendRow(container, options) {
|
|
const row = container.createDiv({ cls: "column-editor-row is-bookend" });
|
|
row.createDiv({ cls: "column-editor-handle-spacer" });
|
|
const fields = row.createDiv({ cls: "column-editor-fields column-editor-fields-inline" });
|
|
const labelField = fields.createDiv({ cls: "column-editor-field column-editor-field-label" });
|
|
const labelInput = labelField.createEl("input", {
|
|
type: "text",
|
|
value: options.label,
|
|
placeholder: options.placeholder
|
|
});
|
|
labelInput.addClass("setting-input");
|
|
labelInput.addEventListener("input", () => {
|
|
options.onLabelChange(labelInput.value);
|
|
});
|
|
const visibilityField = fields.createDiv({ cls: "column-editor-field column-editor-field-visibility" });
|
|
const visibilityLabel = visibilityField.createDiv({ cls: "column-editor-inline-label", text: "Visibility" });
|
|
const visibilitySelect = visibilityField.createEl("select");
|
|
visibilitySelect.addClass("dropdown");
|
|
visibilitySelect.setAttribute("aria-label", `${options.title} visibility`);
|
|
visibilitySelect.createEl("option", {
|
|
value: "always" /* AlwaysShow */,
|
|
text: "Always show"
|
|
});
|
|
visibilitySelect.createEl("option", {
|
|
value: "auto" /* Auto */,
|
|
text: "Hide when empty"
|
|
});
|
|
visibilitySelect.createEl("option", {
|
|
value: "never" /* NeverShow */,
|
|
text: "Never show"
|
|
});
|
|
visibilitySelect.value = options.visibility;
|
|
visibilitySelect.addEventListener("change", () => {
|
|
options.onVisibilityChange(visibilitySelect.value);
|
|
});
|
|
void visibilityLabel;
|
|
}
|
|
renderCustomColumnRow(container, column) {
|
|
var _a5, _b3;
|
|
const row = container.createDiv({ cls: "column-editor-row" });
|
|
row.dataset.columnId = column.id;
|
|
const dragHandle = row.createEl("button", {
|
|
text: "\u22EE\u22EE",
|
|
cls: "column-editor-handle clickable-icon"
|
|
});
|
|
dragHandle.setAttribute("aria-label", `Reorder ${column.label} column`);
|
|
dragHandle.draggable = true;
|
|
dragHandle.addEventListener("dragstart", (event2) => {
|
|
this.draggedColumnId = column.id;
|
|
this.clearDragPreview();
|
|
row.addClass("is-dragging");
|
|
if (event2.dataTransfer) {
|
|
event2.dataTransfer.effectAllowed = "move";
|
|
event2.dataTransfer.setData("text/plain", column.id);
|
|
}
|
|
});
|
|
dragHandle.addEventListener("dragend", () => {
|
|
this.clearDragState(container);
|
|
});
|
|
row.addEventListener("dragover", (event2) => {
|
|
if (!this.draggedColumnId || this.draggedColumnId === column.id) {
|
|
return;
|
|
}
|
|
event2.preventDefault();
|
|
const rowRect = row.getBoundingClientRect();
|
|
const position = event2.clientY > rowRect.top + rowRect.height / 2 ? "after" : "before";
|
|
this.setDragPreview(column.id, position);
|
|
row.addClass("is-drop-target");
|
|
row.classList.toggle("is-drop-before", position === "before");
|
|
row.classList.toggle("is-drop-after", position === "after");
|
|
if (event2.dataTransfer) {
|
|
event2.dataTransfer.dropEffect = "move";
|
|
}
|
|
});
|
|
row.addEventListener("dragleave", () => {
|
|
var _a6;
|
|
if (((_a6 = this.dragPreviewTarget) == null ? void 0 : _a6.columnId) === column.id) {
|
|
this.clearDragPreview();
|
|
}
|
|
row.removeClass("is-drop-target");
|
|
row.removeClass("is-drop-before");
|
|
row.removeClass("is-drop-after");
|
|
});
|
|
row.addEventListener("drop", (event2) => {
|
|
var _a6, _b4, _c2, _d;
|
|
event2.preventDefault();
|
|
const position = ((_a6 = this.dragPreviewTarget) == null ? void 0 : _a6.columnId) === column.id ? this.dragPreviewTarget.position : "before";
|
|
const draggedColumnId = (_d = (_c2 = this.draggedColumnId) != null ? _c2 : (_b4 = event2.dataTransfer) == null ? void 0 : _b4.getData("text/plain")) != null ? _d : "";
|
|
this.clearDragState(container);
|
|
this.reorderColumns(draggedColumnId, column.id, position);
|
|
});
|
|
const content = row.createDiv({ cls: "column-editor-row-content" });
|
|
const fields = content.createDiv({ cls: "column-editor-fields column-editor-fields-inline" });
|
|
const labelField = fields.createDiv({ cls: "column-editor-field column-editor-field-label" });
|
|
const labelInput = labelField.createEl("input", { type: "text", value: column.label });
|
|
labelInput.addClass("setting-input");
|
|
labelInput.setAttribute("aria-label", "Column label");
|
|
const matchModeField = fields.createDiv({ cls: "column-editor-field column-editor-field-match" });
|
|
matchModeField.createDiv({ cls: "column-editor-inline-label", text: "Match by" });
|
|
const matchModeSelect = matchModeField.createEl("select");
|
|
matchModeSelect.addClass("dropdown");
|
|
matchModeSelect.createEl("option", {
|
|
value: "name",
|
|
text: "Name"
|
|
});
|
|
matchModeSelect.createEl("option", {
|
|
value: "tags",
|
|
text: "Tags"
|
|
});
|
|
matchModeSelect.value = column.matchMode;
|
|
matchModeSelect.addEventListener("change", () => {
|
|
column.matchMode = matchModeSelect.value === "tags" ? "tags" : "name";
|
|
if (column.matchMode === "name") {
|
|
column.matchTags = [];
|
|
} else {
|
|
this.focusTagEditorColumnId = column.id;
|
|
}
|
|
this.renderColumnsEditor();
|
|
this.touchSettings();
|
|
});
|
|
if (usesTagMatching(column)) {
|
|
const tagsField = fields.createDiv({ cls: "column-editor-field column-editor-field-tag" });
|
|
const tagPicker = tagsField.createDiv({ cls: "column-editor-tag-select-host" });
|
|
const tagSelect = new Compact_tag_select({
|
|
target: tagPicker,
|
|
props: {
|
|
items: this.availableColumnTags,
|
|
value: [...column.matchTags],
|
|
maxSelected: 0,
|
|
placeholder: "",
|
|
ariaLabel: `${column.label} match tags`
|
|
}
|
|
});
|
|
const onChange = tagSelect.$on("change", (event2) => {
|
|
column.matchTags = event2.detail;
|
|
updateRenameOption();
|
|
this.touchSettings();
|
|
});
|
|
this.mountedColumnControls.push(() => {
|
|
onChange();
|
|
tagSelect.$destroy();
|
|
});
|
|
}
|
|
const colorField = fields.createDiv({ cls: "column-editor-field column-editor-field-color" });
|
|
colorField.createDiv({ cls: "column-editor-inline-label", text: "Color" });
|
|
const colorSwatchButton = colorField.createEl("button", {
|
|
cls: "column-editor-color-swatch"
|
|
});
|
|
colorSwatchButton.type = "button";
|
|
colorSwatchButton.setAttribute("aria-label", `Pick color for ${column.label}`);
|
|
const colorPickerInput = colorField.createEl("input", {
|
|
type: "color",
|
|
value: /^#[0-9a-fA-F]{6}$/.test((_a5 = column.color) != null ? _a5 : "") ? column.color : "#000000"
|
|
});
|
|
colorPickerInput.addClass("column-editor-color-picker");
|
|
const updateColorSwatch = () => {
|
|
var _a6;
|
|
const colorValue = (_a6 = column.color) == null ? void 0 : _a6.trim();
|
|
const hasValidColor = !!colorValue && /^#[0-9a-fA-F]{6}$/.test(colorValue);
|
|
colorSwatchButton.toggleClass("has-color", hasValidColor);
|
|
colorSwatchButton.style.setProperty("--column-editor-swatch-color", hasValidColor ? colorValue : "transparent");
|
|
colorPickerInput.value = hasValidColor ? colorValue : "#000000";
|
|
};
|
|
const colorInput = colorField.createEl("input", {
|
|
type: "text",
|
|
value: (_b3 = column.color) != null ? _b3 : "",
|
|
placeholder: "#RRGGBB"
|
|
});
|
|
colorInput.addClass("setting-input");
|
|
colorInput.setAttribute("aria-label", `${column.label} color`);
|
|
colorInput.addEventListener("input", () => {
|
|
column.color = colorInput.value.trim() || void 0;
|
|
updateColorSwatch();
|
|
this.touchSettings();
|
|
});
|
|
colorSwatchButton.addEventListener("click", () => {
|
|
colorPickerInput.click();
|
|
});
|
|
colorPickerInput.addEventListener("input", () => {
|
|
column.color = colorPickerInput.value;
|
|
colorInput.value = colorPickerInput.value;
|
|
updateColorSwatch();
|
|
this.touchSettings();
|
|
});
|
|
updateColorSwatch();
|
|
const renameOption = fields.createDiv({ cls: "column-editor-rename-option" });
|
|
const renameCheckbox = renameOption.createEl("input", { type: "checkbox" });
|
|
const renameLabel = renameOption.createEl("label", {
|
|
text: "Retag existing tasks"
|
|
});
|
|
const updateRenameOption = () => {
|
|
const show = this.shouldShowRetagOption(column);
|
|
renameOption.style.display = show ? "flex" : "none";
|
|
renameCheckbox.checked = this.shouldUpdateExistingTaskTags(column.id);
|
|
renameCheckbox.setAttribute("aria-label", `Update existing task tags for ${column.label || "column"}`);
|
|
void renameLabel;
|
|
};
|
|
updateRenameOption();
|
|
labelInput.addEventListener("input", () => {
|
|
column.label = labelInput.value;
|
|
updateRenameOption();
|
|
this.touchSettings();
|
|
});
|
|
renameCheckbox.addEventListener("change", () => {
|
|
this.updateExistingTaskTagsByColumnId.set(column.id, renameCheckbox.checked);
|
|
this.touchSettings();
|
|
});
|
|
const removeRail = row.createDiv({ cls: "column-editor-remove-rail" });
|
|
const removeButton = removeRail.createEl("button", { text: "\u2715", cls: "clickable-icon" });
|
|
removeButton.setAttribute("aria-label", `Remove ${column.label} column`);
|
|
removeButton.addEventListener("click", () => {
|
|
this.settings.columns = this.settings.columns.filter((candidate) => candidate.id !== column.id);
|
|
this.updateExistingTaskTagsByColumnId.delete(column.id);
|
|
this.renderColumnsEditor();
|
|
this.touchSettings();
|
|
});
|
|
}
|
|
updateValidationBanner() {
|
|
var _a5, _b3;
|
|
if (this.headerValidationPill) {
|
|
this.headerValidationPill.setText((_a5 = this.validationError) != null ? _a5 : "");
|
|
this.headerValidationPill.toggleClass("is-visible", !!this.validationError);
|
|
this.headerValidationPill.title = (_b3 = this.validationError) != null ? _b3 : "";
|
|
}
|
|
if (this.saveBtn) this.saveBtn.disabled = !!this.validationError;
|
|
}
|
|
updateDirtyBanner() {
|
|
if (this.headerDirtyPill) {
|
|
const isDirty2 = this.isDirty();
|
|
this.headerDirtyPill.setText(isDirty2 ? "Unsaved changes" : "");
|
|
this.headerDirtyPill.toggleClass("is-visible", isDirty2);
|
|
}
|
|
}
|
|
onOpen() {
|
|
this.modalEl.addClass("task-list-kanban-settings-modal-container");
|
|
this.contentEl.addClass("task-list-kanban-settings-modal");
|
|
this.scrollWrapper = this.contentEl.createDiv({ cls: "settings-scroll-wrapper" });
|
|
const header = this.scrollWrapper.createDiv({ cls: "settings-header" });
|
|
header.createEl("h1", { text: "Settings" });
|
|
const headerStatus = header.createDiv({ cls: "settings-header-status" });
|
|
this.headerValidationPill = headerStatus.createDiv({ cls: "settings-status-pill settings-status-pill-validation" });
|
|
this.headerDirtyPill = headerStatus.createDiv({ cls: "settings-status-pill settings-status-pill-dirty" });
|
|
this.columnsEditorEl = this.scrollWrapper.createDiv();
|
|
this.renderColumnsEditor();
|
|
this.validateColumns();
|
|
void this.refreshAvailableColumnTags();
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Column width").setDesc("Width of task cards in pixels (200-600)").addSlider((slider) => {
|
|
var _a5;
|
|
slider.setLimits(200, 600, 10).setValue((_a5 = this.settings.columnWidth) != null ? _a5 : 300).setDynamicTooltip().onChange((value) => {
|
|
this.settings.columnWidth = value;
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Flow direction").setDesc("Direction columns flow across the board").addDropdown((dropdown) => {
|
|
var _a5;
|
|
dropdown.addOption("ltr" /* LeftToRight */, "Left to right").addOption("rtl" /* RightToLeft */, "Right to left").addOption("ttb" /* TopToBottom */, "Top to bottom").addOption("btt" /* BottomToTop */, "Bottom to top").setValue(
|
|
(_a5 = this.settings.flowDirection) != null ? _a5 : "ltr" /* LeftToRight */
|
|
).onChange((value) => {
|
|
const validatedValue = FlowDirectionSchema.safeParse(value);
|
|
this.settings.flowDirection = validatedValue.success ? validatedValue.data : defaultSettings.flowDirection;
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
let defaultTaskFileInputEl = null;
|
|
let defaultTaskFileErrorEl = null;
|
|
const setDefaultTaskFileError = (message) => {
|
|
if (!defaultTaskFileInputEl) return;
|
|
if (message) {
|
|
defaultTaskFileInputEl.style.outline = "2px solid var(--text-error)";
|
|
defaultTaskFileInputEl.style.outlineOffset = "-1px";
|
|
defaultTaskFileInputEl.title = message;
|
|
if (defaultTaskFileErrorEl) {
|
|
defaultTaskFileErrorEl.setText(message);
|
|
defaultTaskFileErrorEl.style.visibility = "visible";
|
|
}
|
|
} else {
|
|
defaultTaskFileInputEl.style.outline = "";
|
|
defaultTaskFileInputEl.style.outlineOffset = "";
|
|
defaultTaskFileInputEl.title = "";
|
|
if (defaultTaskFileErrorEl) {
|
|
defaultTaskFileErrorEl.setText("");
|
|
defaultTaskFileErrorEl.style.visibility = "hidden";
|
|
}
|
|
}
|
|
};
|
|
const validateDefaultTaskFile = () => {
|
|
var _a5, _b3, _c2;
|
|
const value = (_a5 = this.settings.defaultTaskFile) != null ? _a5 : "";
|
|
if (!value) {
|
|
setDefaultTaskFileError("");
|
|
return;
|
|
}
|
|
const abstractFile = this.app.vault.getAbstractFileByPath(value);
|
|
if (!(abstractFile instanceof import_obsidian6.TFile)) {
|
|
setDefaultTaskFileError("File not found");
|
|
return;
|
|
}
|
|
const scopeFilter = this.getScopeFilter();
|
|
if (!shouldIncludeFilePath(value, scopeFilter, (_b3 = this.settings.excludePaths) != null ? _b3 : [], this.boardFolderPath)) {
|
|
const excludePaths = (_c2 = this.settings.excludePaths) != null ? _c2 : [];
|
|
const isExcludedByPath = excludePaths.length > 0 && shouldIncludeFilePath(value, scopeFilter) && !shouldIncludeFilePath(value, scopeFilter, excludePaths, this.boardFolderPath);
|
|
setDefaultTaskFileError(
|
|
isExcludedByPath ? "File is excluded from the board's scope" : "File is outside the board's folder scope"
|
|
);
|
|
return;
|
|
}
|
|
setDefaultTaskFileError("");
|
|
};
|
|
const scopeContainer = this.scrollWrapper.createDiv();
|
|
let folderListContainer;
|
|
let folderListEl;
|
|
const renderFolderRow = (container, folder, removable) => {
|
|
const row = container.createDiv();
|
|
row.style.display = "flex";
|
|
row.style.alignItems = "center";
|
|
row.style.justifyContent = "space-between";
|
|
row.style.padding = "4px 8px";
|
|
row.style.borderBottom = "1px solid var(--background-modifier-border)";
|
|
const label = row.createSpan();
|
|
label.setText(folder);
|
|
label.style.flexGrow = "1";
|
|
if (!removable) {
|
|
const badge = row.createSpan();
|
|
badge.setText(" (this board)");
|
|
badge.style.color = "var(--text-muted)";
|
|
badge.style.fontStyle = "italic";
|
|
badge.style.fontSize = "var(--font-smallest)";
|
|
} else {
|
|
const abstractFolder = this.app.vault.getAbstractFileByPath(folder);
|
|
if (!abstractFolder) {
|
|
const warning = row.createSpan();
|
|
warning.setText(" (not found)");
|
|
warning.style.color = "var(--text-error)";
|
|
warning.style.fontStyle = "italic";
|
|
warning.style.fontSize = "var(--font-smallest)";
|
|
}
|
|
const removeBtn = row.createEl("button");
|
|
removeBtn.setText("\u2715");
|
|
removeBtn.style.marginLeft = "8px";
|
|
removeBtn.style.cursor = "pointer";
|
|
removeBtn.style.background = "none";
|
|
removeBtn.style.border = "none";
|
|
removeBtn.style.color = "var(--text-muted)";
|
|
removeBtn.style.padding = "2px 6px";
|
|
removeBtn.addEventListener("click", () => {
|
|
var _a5;
|
|
this.settings.scopeFolders = ((_a5 = this.settings.scopeFolders) != null ? _a5 : []).filter((f) => f !== folder);
|
|
renderFolderList();
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
});
|
|
}
|
|
};
|
|
const renderFolderList = () => {
|
|
var _a5;
|
|
folderListEl.empty();
|
|
if (this.boardFolderPath) {
|
|
renderFolderRow(folderListEl, this.boardFolderPath, false);
|
|
}
|
|
const folders = ((_a5 = this.settings.scopeFolders) != null ? _a5 : []).filter(
|
|
(f) => f !== this.boardFolderPath
|
|
);
|
|
for (const folder of folders) {
|
|
renderFolderRow(folderListEl, folder, true);
|
|
}
|
|
};
|
|
const updateFolderListVisibility = () => {
|
|
folderListContainer.style.display = this.settings.scope === "selectedFolders" /* SelectedFolders */ ? "block" : "none";
|
|
};
|
|
new import_obsidian6.Setting(scopeContainer).setName("Folder scope").setDesc("Where should we try to find tasks for this Kanban?").addDropdown((dropdown) => {
|
|
dropdown.addOption("folder" /* Folder */, "This folder");
|
|
dropdown.addOption("everywhere" /* Everywhere */, "Every folder");
|
|
dropdown.addOption(
|
|
"selectedFolders" /* SelectedFolders */,
|
|
"Selected folders"
|
|
);
|
|
dropdown.setValue(this.settings.scope);
|
|
dropdown.onChange((value) => {
|
|
const validatedValue = ScopeOptionSchema.safeParse(value);
|
|
this.settings.scope = validatedValue.success ? validatedValue.data : defaultSettings.scope;
|
|
updateFolderListVisibility();
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
folderListContainer = scopeContainer.createDiv();
|
|
folderListContainer.style.marginLeft = "16px";
|
|
folderListContainer.style.marginBottom = "12px";
|
|
const addFolderRow = folderListContainer.createDiv();
|
|
addFolderRow.style.display = "flex";
|
|
addFolderRow.style.gap = "8px";
|
|
addFolderRow.style.marginBottom = "8px";
|
|
const folderInput = addFolderRow.createEl("input", {
|
|
type: "text",
|
|
placeholder: "e.g., projects/active"
|
|
});
|
|
folderInput.style.flexGrow = "1";
|
|
folderInput.addClass("setting-input");
|
|
const addFolder = () => {
|
|
var _a5;
|
|
const raw = folderInput.value.trim().replace(/^\//, "").replace(/\/$/, "");
|
|
if (!raw) return;
|
|
if (raw === this.boardFolderPath) return;
|
|
const folders = (_a5 = this.settings.scopeFolders) != null ? _a5 : [];
|
|
if (folders.includes(raw)) return;
|
|
this.settings.scopeFolders = [...folders, raw];
|
|
folderInput.value = "";
|
|
renderFolderList();
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
};
|
|
const addBtn = addFolderRow.createEl("button", { text: "Add" });
|
|
addBtn.addEventListener("click", addFolder);
|
|
folderInput.addEventListener("keydown", (e) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault();
|
|
addFolder();
|
|
}
|
|
});
|
|
folderListEl = folderListContainer.createDiv();
|
|
renderFolderList();
|
|
updateFolderListVisibility();
|
|
let excludeListEl;
|
|
const renderExcludeRow = (container, path) => {
|
|
const row = container.createDiv();
|
|
row.style.display = "flex";
|
|
row.style.alignItems = "center";
|
|
row.style.justifyContent = "space-between";
|
|
row.style.padding = "4px 8px";
|
|
row.style.borderBottom = "1px solid var(--background-modifier-border)";
|
|
const label = row.createSpan();
|
|
label.setText(path);
|
|
label.style.flexGrow = "1";
|
|
const abstractPath = this.app.vault.getAbstractFileByPath(path);
|
|
if (!abstractPath) {
|
|
const warning = row.createSpan();
|
|
warning.setText(" (not found)");
|
|
warning.style.color = "var(--text-error)";
|
|
warning.style.fontStyle = "italic";
|
|
warning.style.fontSize = "var(--font-smallest)";
|
|
}
|
|
const removeBtn = row.createEl("button");
|
|
removeBtn.setText("\u2715");
|
|
removeBtn.style.marginLeft = "8px";
|
|
removeBtn.style.cursor = "pointer";
|
|
removeBtn.style.background = "none";
|
|
removeBtn.style.border = "none";
|
|
removeBtn.style.color = "var(--text-muted)";
|
|
removeBtn.style.padding = "2px 6px";
|
|
removeBtn.addEventListener("click", () => {
|
|
var _a5;
|
|
this.settings.excludePaths = ((_a5 = this.settings.excludePaths) != null ? _a5 : []).filter((p) => p !== path);
|
|
renderExcludeList();
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
});
|
|
};
|
|
const renderExcludeList = () => {
|
|
var _a5;
|
|
excludeListEl.empty();
|
|
const paths = (_a5 = this.settings.excludePaths) != null ? _a5 : [];
|
|
for (const path of paths) {
|
|
renderExcludeRow(excludeListEl, path);
|
|
}
|
|
};
|
|
const excludeContainer = this.scrollWrapper.createDiv();
|
|
excludeContainer.style.marginBottom = "12px";
|
|
new import_obsidian6.Setting(excludeContainer).setName("Excluded paths").setDesc(
|
|
"Directories and files excluded from the scope above. The board's own folder is always included."
|
|
);
|
|
const excludeInputContainer = excludeContainer.createDiv();
|
|
excludeInputContainer.style.marginLeft = "16px";
|
|
const addExcludeRow = excludeInputContainer.createDiv();
|
|
addExcludeRow.style.display = "flex";
|
|
addExcludeRow.style.gap = "8px";
|
|
addExcludeRow.style.marginBottom = "8px";
|
|
const excludeInput = addExcludeRow.createEl("input", {
|
|
type: "text",
|
|
placeholder: "e.g., templates or notes/scratch.md"
|
|
});
|
|
excludeInput.style.flexGrow = "1";
|
|
excludeInput.addClass("setting-input");
|
|
const addExcludePath = () => {
|
|
var _a5;
|
|
const raw = excludeInput.value.trim().replace(/^\//, "").replace(/\/$/, "");
|
|
if (!raw) return;
|
|
if (raw === this.boardFolderPath) return;
|
|
const paths = (_a5 = this.settings.excludePaths) != null ? _a5 : [];
|
|
if (paths.includes(raw)) return;
|
|
this.settings.excludePaths = [...paths, raw];
|
|
excludeInput.value = "";
|
|
renderExcludeList();
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
};
|
|
const addExcludeBtn = addExcludeRow.createEl("button", { text: "Add" });
|
|
addExcludeBtn.addEventListener("click", addExcludePath);
|
|
excludeInput.addEventListener("keydown", (e) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault();
|
|
addExcludePath();
|
|
}
|
|
});
|
|
excludeListEl = excludeInputContainer.createDiv();
|
|
renderExcludeList();
|
|
const defaultTaskFileSetting = new import_obsidian6.Setting(this.scrollWrapper).setName("Default task file").setDesc(
|
|
"New tasks from 'Add new' will be created in this file by default. Use the vault-relative path (e.g., 'folder/tasks.md'). Leave empty to always show the full file picker."
|
|
).addText((text2) => {
|
|
var _a5;
|
|
defaultTaskFileInputEl = text2.inputEl;
|
|
text2.setPlaceholder("e.g., notes/tasks.md");
|
|
text2.setValue((_a5 = this.settings.defaultTaskFile) != null ? _a5 : "");
|
|
text2.onChange((value) => {
|
|
this.settings.defaultTaskFile = value;
|
|
validateDefaultTaskFile();
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
defaultTaskFileSetting.controlEl.style.flexDirection = "column";
|
|
defaultTaskFileSetting.controlEl.style.alignItems = "flex-end";
|
|
defaultTaskFileErrorEl = createEl("div", {
|
|
cls: "setting-error-message"
|
|
});
|
|
defaultTaskFileErrorEl.style.color = "var(--text-error)";
|
|
defaultTaskFileErrorEl.style.fontSize = "var(--font-smallest)";
|
|
defaultTaskFileErrorEl.style.fontStyle = "italic";
|
|
defaultTaskFileErrorEl.style.marginTop = "4px";
|
|
defaultTaskFileErrorEl.style.minHeight = "1.2em";
|
|
defaultTaskFileErrorEl.style.visibility = "hidden";
|
|
defaultTaskFileSetting.controlEl.appendChild(defaultTaskFileErrorEl);
|
|
validateDefaultTaskFile();
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Show filepath").setDesc("Show the filepath on each task in Kanban?").addToggle((toggle) => {
|
|
var _a5;
|
|
toggle.setValue((_a5 = this.settings.showFilepath) != null ? _a5 : true);
|
|
toggle.onChange((value) => {
|
|
this.settings.showFilepath = value;
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Consolidate tags").setDesc(
|
|
"Consolidate the tags on each task in Kanban into the footer?"
|
|
).addToggle((toggle) => {
|
|
var _a5;
|
|
toggle.setValue((_a5 = this.settings.consolidateTags) != null ? _a5 : false);
|
|
toggle.onChange((value) => {
|
|
this.settings.consolidateTags = value;
|
|
this.updateDirtyBanner();
|
|
});
|
|
});
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Done status markers").setDesc(
|
|
"Characters that mark a task as done (e.g., 'xX' for [x] and [X]). Each character should be a single Unicode character without spaces."
|
|
).addText((text2) => {
|
|
var _a5;
|
|
text2.setValue((_a5 = this.settings.doneStatusMarkers) != null ? _a5 : DEFAULT_DONE_STATUS_MARKERS);
|
|
text2.onChange((value) => {
|
|
const errors = validateDoneStatusMarkers(value);
|
|
if (errors.length > 0) {
|
|
text2.inputEl.style.borderColor = "var(--text-error)";
|
|
text2.inputEl.title = `Invalid: ${errors.join(", ")}`;
|
|
} else {
|
|
text2.inputEl.style.borderColor = "";
|
|
text2.inputEl.title = "Valid done status markers";
|
|
this.settings.doneStatusMarkers = value;
|
|
this.updateDirtyBanner();
|
|
}
|
|
});
|
|
});
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Cancelled status markers").setDesc(
|
|
"Characters that mark a task as cancelled (e.g., '-' for [-]). Each character should be a single Unicode character without spaces."
|
|
).addText((text2) => {
|
|
var _a5;
|
|
text2.setValue((_a5 = this.settings.cancelledStatusMarkers) != null ? _a5 : DEFAULT_CANCELLED_STATUS_MARKERS);
|
|
text2.onChange((value) => {
|
|
const errors = validateCancelledStatusMarkers(value);
|
|
if (errors.length > 0) {
|
|
text2.inputEl.style.borderColor = "var(--text-error)";
|
|
text2.inputEl.title = `Invalid: ${errors.join(", ")}`;
|
|
} else {
|
|
text2.inputEl.style.borderColor = "";
|
|
text2.inputEl.title = "Valid cancelled status markers";
|
|
this.settings.cancelledStatusMarkers = value;
|
|
this.updateDirtyBanner();
|
|
}
|
|
});
|
|
});
|
|
new import_obsidian6.Setting(this.scrollWrapper).setName("Ignored status markers").setDesc(
|
|
"Characters that mark tasks to be completely ignored by the kanban (e.g., '-' for [-] cancelled tasks). Leave empty to process all task-like strings. Each character should be a single Unicode character without spaces."
|
|
).addText((text2) => {
|
|
var _a5;
|
|
text2.setValue((_a5 = this.settings.ignoredStatusMarkers) != null ? _a5 : DEFAULT_IGNORED_STATUS_MARKERS);
|
|
text2.onChange((value) => {
|
|
const errors = validateIgnoredStatusMarkers(value);
|
|
if (errors.length > 0) {
|
|
text2.inputEl.style.borderColor = "var(--text-error)";
|
|
text2.inputEl.title = `Invalid: ${errors.join(", ")}`;
|
|
} else {
|
|
text2.inputEl.style.borderColor = "";
|
|
text2.inputEl.title = "Valid ignored status markers";
|
|
this.settings.ignoredStatusMarkers = value;
|
|
this.updateDirtyBanner();
|
|
}
|
|
});
|
|
});
|
|
const buttonBar = this.contentEl.createDiv({ cls: "settings-button-bar" });
|
|
const cancelBtn = buttonBar.createEl("button", { text: "Cancel" });
|
|
cancelBtn.addEventListener("click", () => {
|
|
this.close();
|
|
});
|
|
this.saveBtn = buttonBar.createEl("button", { text: "Save", cls: "mod-cta" });
|
|
this.saveBtn.addEventListener("click", async () => {
|
|
if (this.saveBtn) {
|
|
this.saveBtn.disabled = true;
|
|
}
|
|
try {
|
|
await this.onSubmit(this.settings, {
|
|
updateExistingTaskTagsByColumnId: Object.fromEntries(this.updateExistingTaskTagsByColumnId)
|
|
});
|
|
this.close();
|
|
} finally {
|
|
if (this.saveBtn) {
|
|
this.saveBtn.disabled = false;
|
|
}
|
|
}
|
|
});
|
|
if (this.validationError) {
|
|
this.saveBtn.disabled = true;
|
|
}
|
|
}
|
|
onClose() {
|
|
for (const destroy of this.mountedColumnControls) {
|
|
destroy();
|
|
}
|
|
this.mountedColumnControls = [];
|
|
this.contentEl.empty();
|
|
}
|
|
getScopeFilter() {
|
|
var _a5;
|
|
switch (this.settings.scope) {
|
|
case "folder" /* Folder */:
|
|
return this.boardFolderPath ? [this.boardFolderPath] : null;
|
|
case "selectedFolders" /* SelectedFolders */: {
|
|
const selected = (_a5 = this.settings.scopeFolders) != null ? _a5 : [];
|
|
return this.boardFolderPath ? [this.boardFolderPath, ...selected.filter((folder) => folder !== this.boardFolderPath)] : selected;
|
|
}
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
};
|
|
|
|
// src/ui/tasks/store.ts
|
|
var import_obsidian8 = require("obsidian");
|
|
|
|
// src/ui/tasks/tasks.ts
|
|
async function updateMapsFromFile({
|
|
fileHandle,
|
|
taskIdsByFileHandle,
|
|
tasksByTaskId,
|
|
metadataByTaskId,
|
|
vault,
|
|
columnDefinitionsStore,
|
|
columnPlacementTagTableStore,
|
|
consolidateTags,
|
|
doneStatusMarkers,
|
|
cancelledStatusMarkers,
|
|
ignoredStatusMarkers
|
|
}) {
|
|
var _a5;
|
|
try {
|
|
const previousTaskIds = (_a5 = taskIdsByFileHandle.get(fileHandle)) != null ? _a5 : /* @__PURE__ */ new Set();
|
|
const newTaskIds = /* @__PURE__ */ new Set();
|
|
const contents = await vault.read(fileHandle);
|
|
const rows = contents.split("\n");
|
|
const columnDefinitions = get2(columnDefinitionsStore);
|
|
const columnPlacementTagTable = get2(columnPlacementTagTableStore);
|
|
for (let i = 0; i < rows.length; i++) {
|
|
const row = rows[i];
|
|
if (!row) {
|
|
continue;
|
|
}
|
|
if (isTrackedTaskString(row, ignoredStatusMarkers)) {
|
|
const task = new Task2(
|
|
row,
|
|
fileHandle,
|
|
i,
|
|
columnDefinitions,
|
|
columnPlacementTagTable,
|
|
consolidateTags,
|
|
doneStatusMarkers,
|
|
cancelledStatusMarkers,
|
|
ignoredStatusMarkers
|
|
);
|
|
newTaskIds.add(task.id);
|
|
tasksByTaskId.set(task.id, task);
|
|
metadataByTaskId.set(task.id, { rowIndex: i, fileHandle });
|
|
previousTaskIds.delete(task.id);
|
|
}
|
|
}
|
|
for (const prevId of previousTaskIds) {
|
|
tasksByTaskId.delete(prevId);
|
|
metadataByTaskId.delete(prevId);
|
|
}
|
|
taskIdsByFileHandle.set(fileHandle, newTaskIds);
|
|
} catch (e) {
|
|
}
|
|
}
|
|
|
|
// src/ui/tasks/actions.ts
|
|
var import_obsidian7 = require("obsidian");
|
|
|
|
// src/ui/tasks/duplicate.ts
|
|
var blockLinkRegexp2 = /\s\^[a-zA-Z0-9-]+$/;
|
|
var checkboxRegexp = /^(\s*[-*+]\s)\[([^\[\]]*)\]/;
|
|
function createDuplicateLine(rawLine) {
|
|
return rawLine.replace(blockLinkRegexp2, "").replace(checkboxRegexp, "$1[ ]");
|
|
}
|
|
|
|
// src/ui/tasks/actions.ts
|
|
function createTaskActions({
|
|
tasksByTaskId,
|
|
metadataByTaskId,
|
|
vault,
|
|
workspace,
|
|
getFilenameFilter,
|
|
getExcludeFilter,
|
|
getBoardFolderPath,
|
|
getPlacementTagsForColumn,
|
|
getDefaultTaskFile,
|
|
getLastUsedTaskFile,
|
|
setLastUsedTaskFile
|
|
}) {
|
|
function resolveFileIfValid(filePath) {
|
|
if (!filePath) return null;
|
|
const abstractFile = vault.getAbstractFileByPath(filePath);
|
|
if (!(abstractFile instanceof import_obsidian7.TFile)) return null;
|
|
if (!shouldIncludeFilePath(filePath, getFilenameFilter(), getExcludeFilter(), getBoardFolderPath())) return null;
|
|
return abstractFile;
|
|
}
|
|
function getTargetFile() {
|
|
var _a5;
|
|
return (_a5 = resolveFileIfValid(getDefaultTaskFile())) != null ? _a5 : resolveFileIfValid(getLastUsedTaskFile());
|
|
}
|
|
async function updateRowWithTask(id, updater) {
|
|
const metadata = metadataByTaskId.get(id);
|
|
const task = tasksByTaskId.get(id);
|
|
if (!metadata || !task) {
|
|
return;
|
|
}
|
|
updater(task);
|
|
const newTaskString = task.serialise();
|
|
await updateRow(
|
|
vault,
|
|
metadata.fileHandle,
|
|
metadata.rowIndex,
|
|
newTaskString
|
|
);
|
|
}
|
|
return {
|
|
async changeColumn(id, column) {
|
|
await updateRowWithTask(id, (task) => task.column = column);
|
|
},
|
|
async markDone(id) {
|
|
await updateRowWithTask(id, (task) => task.done = true);
|
|
},
|
|
async toggleDone(id) {
|
|
await updateRowWithTask(id, (task) => {
|
|
if (task.done) {
|
|
task.undone();
|
|
} else {
|
|
task.done = true;
|
|
}
|
|
});
|
|
},
|
|
async updateContent(id, content) {
|
|
await updateRowWithTask(id, (task) => task.content = content);
|
|
},
|
|
async archiveTasks(ids) {
|
|
for (const id of ids) {
|
|
await updateRowWithTask(id, (task) => task.archive());
|
|
}
|
|
},
|
|
async cancelTasks(ids) {
|
|
for (const id of ids) {
|
|
await updateRowWithTask(id, (task) => task.cancel());
|
|
}
|
|
},
|
|
async restoreTasks(ids) {
|
|
for (const id of ids) {
|
|
await updateRowWithTask(id, (task) => task.restore());
|
|
}
|
|
},
|
|
async deleteTask(id) {
|
|
await updateRowWithTask(id, (task) => task.delete());
|
|
},
|
|
async duplicateTask(id) {
|
|
const metadata = metadataByTaskId.get(id);
|
|
if (!metadata) return;
|
|
const { fileHandle, rowIndex } = metadata;
|
|
const file = await vault.read(fileHandle);
|
|
const rows = file.split("\n");
|
|
if (rowIndex >= rows.length) return;
|
|
const originalLine = rows[rowIndex];
|
|
if (!originalLine) return;
|
|
const newLine = createDuplicateLine(originalLine);
|
|
rows.splice(rowIndex + 1, 0, newLine);
|
|
await vault.modify(fileHandle, rows.join("\n"));
|
|
},
|
|
async viewFile(id, event2) {
|
|
const metadata = metadataByTaskId.get(id);
|
|
if (!metadata) {
|
|
return;
|
|
}
|
|
const { fileHandle, rowIndex } = metadata;
|
|
const leaf = workspace.getLeaf(import_obsidian7.Keymap.isModEvent(event2));
|
|
await leaf.openFile(fileHandle);
|
|
const editorView = workspace.getActiveViewOfType(import_obsidian7.MarkdownView);
|
|
editorView == null ? void 0 : editorView.editor.setCursor(rowIndex);
|
|
},
|
|
getTargetFile,
|
|
pickFileForNewTask(column, e, onFileSelected, forceShowPicker = false) {
|
|
if (!forceShowPicker) {
|
|
const targetFile = getTargetFile();
|
|
if (targetFile) {
|
|
onFileSelected(targetFile);
|
|
return;
|
|
}
|
|
}
|
|
const onFileSelectedWithPersist = (file) => {
|
|
setLastUsedTaskFile(file.path);
|
|
onFileSelected(file);
|
|
};
|
|
const files = vault.getMarkdownFiles().filter(
|
|
(file) => shouldIncludeFilePath(file.path, getFilenameFilter(), getExcludeFilter(), getBoardFolderPath())
|
|
).sort((a, b) => a.path.localeCompare(b.path));
|
|
const target = e.target;
|
|
if (!target) {
|
|
return;
|
|
}
|
|
const boundingRect = target.getBoundingClientRect();
|
|
const y = boundingRect.top + boundingRect.height / 2;
|
|
const x = boundingRect.left + boundingRect.width / 2;
|
|
const defaultTaskFilePath = getDefaultTaskFile();
|
|
let defaultFileState = null;
|
|
if (defaultTaskFilePath) {
|
|
const abstractFile = vault.getAbstractFileByPath(defaultTaskFilePath);
|
|
if (!(abstractFile instanceof import_obsidian7.TFile)) {
|
|
defaultFileState = {
|
|
error: `\u2605 ${defaultTaskFilePath} (not found)`
|
|
};
|
|
} else if (!shouldIncludeFilePath(
|
|
defaultTaskFilePath,
|
|
getFilenameFilter(),
|
|
getExcludeFilter(),
|
|
getBoardFolderPath()
|
|
)) {
|
|
defaultFileState = {
|
|
error: `\u2605 ${defaultTaskFilePath} (outside scope)`
|
|
};
|
|
} else {
|
|
defaultFileState = { file: abstractFile };
|
|
}
|
|
}
|
|
function createMenu(folder2, parentMenu) {
|
|
const menu = new import_obsidian7.Menu();
|
|
menu.addItem((i) => {
|
|
i.setTitle(parentMenu ? `\u2190 back` : "Choose a file").setDisabled(!parentMenu).onClick(() => {
|
|
parentMenu == null ? void 0 : parentMenu.showAtPosition({ x, y });
|
|
});
|
|
});
|
|
if (!parentMenu && defaultFileState) {
|
|
if ("file" in defaultFileState) {
|
|
const df = defaultFileState.file;
|
|
menu.addItem((i) => {
|
|
i.setTitle(`\u2605 ${df.path}`).onClick(() => {
|
|
onFileSelectedWithPersist(df);
|
|
});
|
|
});
|
|
} else {
|
|
menu.addItem((i) => {
|
|
i.setTitle(defaultFileState.error).setDisabled(
|
|
true
|
|
);
|
|
});
|
|
}
|
|
menu.addSeparator();
|
|
}
|
|
for (const [label, folderItem] of Object.entries(folder2)) {
|
|
menu.addItem((i) => {
|
|
i.setTitle(
|
|
folderItem instanceof import_obsidian7.TFile ? label : label + " \u2192"
|
|
).onClick(() => {
|
|
if (folderItem instanceof import_obsidian7.TFile) {
|
|
onFileSelectedWithPersist(folderItem);
|
|
} else {
|
|
createMenu(folderItem, menu);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
menu.showAtPosition({ x, y });
|
|
}
|
|
const folder = {};
|
|
for (const file of files) {
|
|
const segments = file.path.split("/");
|
|
let currFolder = folder;
|
|
for (const [i, segment] of segments.entries()) {
|
|
if (i === segments.length - 1) {
|
|
currFolder[segment] = file;
|
|
} else {
|
|
const nextFolder = currFolder[segment] || {};
|
|
if (nextFolder instanceof import_obsidian7.TFile) {
|
|
continue;
|
|
}
|
|
currFolder[segment] = nextFolder;
|
|
currFolder = nextFolder;
|
|
}
|
|
}
|
|
}
|
|
createMenu(folder, void 0);
|
|
},
|
|
async createTask(file, content, column) {
|
|
await updateRow(
|
|
vault,
|
|
file,
|
|
void 0,
|
|
`- [ ] ${content}${getPlacementTagsForColumn(column).map((tag2) => ` #${tag2}`).join("")}`
|
|
);
|
|
}
|
|
};
|
|
}
|
|
async function updateRow(vault, fileHandle, row, newText) {
|
|
const file = await vault.read(fileHandle);
|
|
const rows = file.split("\n");
|
|
if (row == null) {
|
|
row = rows.length;
|
|
}
|
|
if (rows.length < row) {
|
|
return;
|
|
}
|
|
if (newText === "") {
|
|
rows.splice(row, 1);
|
|
} else {
|
|
rows[row] = newText;
|
|
}
|
|
const newFile = rows.join("\n");
|
|
await vault.modify(fileHandle, newFile);
|
|
}
|
|
|
|
// src/ui/tasks/store.ts
|
|
function getMarkerSettings(settings) {
|
|
var _a5, _b3, _c2, _d;
|
|
return {
|
|
consolidateTags: (_a5 = settings.consolidateTags) != null ? _a5 : false,
|
|
doneStatusMarkers: (_b3 = settings.doneStatusMarkers) != null ? _b3 : DEFAULT_DONE_STATUS_MARKERS,
|
|
cancelledStatusMarkers: (_c2 = settings.cancelledStatusMarkers) != null ? _c2 : DEFAULT_CANCELLED_STATUS_MARKERS,
|
|
ignoredStatusMarkers: (_d = settings.ignoredStatusMarkers) != null ? _d : DEFAULT_IGNORED_STATUS_MARKERS
|
|
};
|
|
}
|
|
function createTasksStore(vault, workspace, registerEvent, columnDefinitionsStore, columnPlacementTagTableStore, getFilenameFilter, getExcludeFilter, getBoardFolderPath, settingsStore, requestSave) {
|
|
const tasksStore = writable([]);
|
|
let timer;
|
|
const tasksByTaskId = /* @__PURE__ */ new Map();
|
|
const metadataByTaskId = /* @__PURE__ */ new Map();
|
|
const taskIdsByFileHandle = /* @__PURE__ */ new Map();
|
|
const fileHandles = vault.getMarkdownFiles();
|
|
function debounceSetTasks() {
|
|
if (!timer) {
|
|
timer = window.setTimeout(() => {
|
|
timer = void 0;
|
|
tasksStore.set(
|
|
[...tasksByTaskId.values()].sort((a, b) => {
|
|
if (a.path !== b.path) {
|
|
return a.path.localeCompare(b.path);
|
|
}
|
|
return a.rowIndex - b.rowIndex;
|
|
})
|
|
);
|
|
}, 50);
|
|
}
|
|
}
|
|
function shouldHandle(file) {
|
|
return shouldIncludeFilePath(file.path, getFilenameFilter(), getExcludeFilter(), getBoardFolderPath());
|
|
}
|
|
function processFile(fileHandle) {
|
|
updateMapsFromFile({
|
|
fileHandle,
|
|
tasksByTaskId,
|
|
metadataByTaskId,
|
|
taskIdsByFileHandle,
|
|
vault,
|
|
columnDefinitionsStore,
|
|
columnPlacementTagTableStore,
|
|
...getMarkerSettings(get2(settingsStore))
|
|
}).then(() => {
|
|
debounceSetTasks();
|
|
});
|
|
}
|
|
function initialise() {
|
|
tasksByTaskId.clear();
|
|
metadataByTaskId.clear();
|
|
taskIdsByFileHandle.clear();
|
|
for (const fileHandle of fileHandles) {
|
|
if (!shouldHandle(fileHandle)) {
|
|
continue;
|
|
}
|
|
processFile(fileHandle);
|
|
}
|
|
}
|
|
registerEvent(
|
|
vault.on("modify", (fileHandle) => {
|
|
if (fileHandle instanceof import_obsidian8.TFile && shouldHandle(fileHandle)) {
|
|
processFile(fileHandle);
|
|
}
|
|
})
|
|
);
|
|
registerEvent(
|
|
vault.on("create", (fileHandle) => {
|
|
if (fileHandle instanceof import_obsidian8.TFile && shouldHandle(fileHandle)) {
|
|
processFile(fileHandle);
|
|
}
|
|
})
|
|
);
|
|
registerEvent(
|
|
vault.on("delete", (fileHandle) => {
|
|
if (fileHandle instanceof import_obsidian8.TFile) {
|
|
const tasksToDelete = taskIdsByFileHandle.get(fileHandle);
|
|
if (!tasksToDelete) return;
|
|
for (const taskId of tasksToDelete) {
|
|
tasksByTaskId.delete(taskId);
|
|
metadataByTaskId.delete(taskId);
|
|
}
|
|
taskIdsByFileHandle.delete(fileHandle);
|
|
}
|
|
})
|
|
);
|
|
registerEvent(
|
|
vault.on("rename", (fileHandle) => {
|
|
if (fileHandle instanceof import_obsidian8.TFile) {
|
|
initialise();
|
|
}
|
|
})
|
|
);
|
|
const taskActions = createTaskActions({
|
|
tasksByTaskId,
|
|
metadataByTaskId,
|
|
vault,
|
|
workspace,
|
|
getFilenameFilter,
|
|
getExcludeFilter,
|
|
getBoardFolderPath,
|
|
getPlacementTagsForColumn: (column) => {
|
|
var _a5;
|
|
return (_a5 = get2(columnPlacementTagTableStore)[column]) != null ? _a5 : [column];
|
|
},
|
|
getDefaultTaskFile: () => get2(settingsStore).defaultTaskFile || null,
|
|
getLastUsedTaskFile: () => get2(settingsStore).lastUsedTaskFile || null,
|
|
setLastUsedTaskFile: (path) => {
|
|
settingsStore.update((s) => ({ ...s, lastUsedTaskFile: path }));
|
|
requestSave();
|
|
}
|
|
});
|
|
return { tasksStore, taskActions, initialise };
|
|
}
|
|
|
|
// src/ui/settings/column_rename_migration.ts
|
|
function getChangedColumnMatchRules(oldSettings, newSettings) {
|
|
const oldColumnsById = new Map(oldSettings.columns.map((column) => [column.id, column]));
|
|
return newSettings.columns.flatMap((newColumn) => {
|
|
const oldColumn = oldColumnsById.get(newColumn.id);
|
|
if (!oldColumn) return [];
|
|
if (columnRuleSignature(oldColumn) === columnRuleSignature(newColumn)) return [];
|
|
return [{ id: newColumn.id, oldColumn, newColumn }];
|
|
});
|
|
}
|
|
async function applyChangedColumnTagUpdates({
|
|
vault,
|
|
oldSettings,
|
|
newSettings,
|
|
boardFolderPath,
|
|
updateChoices
|
|
}) {
|
|
const changedColumns = getChangedColumnMatchRules(oldSettings, newSettings).filter(
|
|
({ id }) => updateChoices[id] !== false
|
|
);
|
|
if (changedColumns.length === 0) {
|
|
return;
|
|
}
|
|
const newColumnData = createColumnData(newSettings.columns);
|
|
const oldSettingsScope = resolveScopeSettings(oldSettings, boardFolderPath);
|
|
const targetColumnIds = new Set(changedColumns.map(({ id }) => id));
|
|
const files = vault.getMarkdownFiles().filter(
|
|
(file) => shouldIncludeFilePath(
|
|
file.path,
|
|
oldSettingsScope.filenameFilter,
|
|
oldSettingsScope.excludeFilter,
|
|
boardFolderPath
|
|
)
|
|
);
|
|
for (const file of files) {
|
|
await updateFileForChangedColumns(
|
|
vault,
|
|
file,
|
|
targetColumnIds,
|
|
oldSettings.columns,
|
|
newColumnData.columnPlacementTagTable,
|
|
oldSettings
|
|
);
|
|
}
|
|
}
|
|
async function updateFileForChangedColumns(vault, file, targetColumnIds, oldColumnDefinitions, newPlacementTagTable, settings) {
|
|
var _a5, _b3, _c2, _d, _e, _f;
|
|
const contents = await vault.read(file);
|
|
const rows = contents.split("\n");
|
|
let changed = false;
|
|
for (let i = 0; i < rows.length; i += 1) {
|
|
const row = rows[i];
|
|
if (!row || !isTrackedTaskString(row, (_a5 = settings.ignoredStatusMarkers) != null ? _a5 : DEFAULT_IGNORED_STATUS_MARKERS)) {
|
|
continue;
|
|
}
|
|
const matchedColumn = resolveMatchedColumnDefinition(oldColumnDefinitions, getTagsFromContent(row));
|
|
const task = new Task2(
|
|
row,
|
|
file,
|
|
i,
|
|
oldColumnDefinitions,
|
|
newPlacementTagTable,
|
|
(_b3 = settings.consolidateTags) != null ? _b3 : false,
|
|
(_c2 = settings.doneStatusMarkers) != null ? _c2 : DEFAULT_DONE_STATUS_MARKERS,
|
|
(_d = settings.cancelledStatusMarkers) != null ? _d : DEFAULT_CANCELLED_STATUS_MARKERS,
|
|
(_e = settings.ignoredStatusMarkers) != null ? _e : DEFAULT_IGNORED_STATUS_MARKERS
|
|
);
|
|
const targetColumnId = (_f = task.column) != null ? _f : matchedColumn == null ? void 0 : matchedColumn.id;
|
|
if (!targetColumnId || targetColumnId === "archived" || !targetColumnIds.has(targetColumnId)) {
|
|
continue;
|
|
}
|
|
const nextRow = task.serialise();
|
|
if (nextRow !== row) {
|
|
rows[i] = nextRow;
|
|
changed = true;
|
|
}
|
|
}
|
|
if (changed) {
|
|
await vault.modify(file, rows.join("\n"));
|
|
}
|
|
}
|
|
function resolveScopeSettings(settings, boardFolderPath) {
|
|
var _a5, _b3;
|
|
let filenameFilter = null;
|
|
switch (settings.scope) {
|
|
case "everywhere":
|
|
filenameFilter = null;
|
|
break;
|
|
case "folder":
|
|
filenameFilter = boardFolderPath ? [boardFolderPath] : null;
|
|
break;
|
|
case "selectedFolders": {
|
|
const selected = (_a5 = settings.scopeFolders) != null ? _a5 : [];
|
|
filenameFilter = boardFolderPath ? [boardFolderPath, ...selected.filter((folder) => folder !== boardFolderPath)] : selected;
|
|
break;
|
|
}
|
|
}
|
|
const excludePaths = (_b3 = settings.excludePaths) != null ? _b3 : [];
|
|
return {
|
|
filenameFilter,
|
|
excludeFilter: excludePaths.length > 0 ? excludePaths : null
|
|
};
|
|
}
|
|
|
|
// src/ui/text_view.ts
|
|
var KANBAN_VIEW_NAME = "kanban-view";
|
|
var KanbanView = class extends import_obsidian9.TextFileView {
|
|
constructor(leaf) {
|
|
super(leaf);
|
|
this.filenameFilter = null;
|
|
this.excludeFilter = null;
|
|
this.boardFolderPath = null;
|
|
this.icon = "kanban-square";
|
|
this.settingsStore = createSettingsStore();
|
|
this.destroySettingsStore = this.settingsStore.subscribe((settings) => {
|
|
var _a5, _b3, _c2, _d, _e;
|
|
this.boardFolderPath = (_c2 = (_b3 = (_a5 = this.file) == null ? void 0 : _a5.parent) == null ? void 0 : _b3.path) != null ? _c2 : null;
|
|
switch (settings.scope) {
|
|
case "everywhere" /* Everywhere */:
|
|
this.filenameFilter = null;
|
|
break;
|
|
case "folder" /* Folder */: {
|
|
this.filenameFilter = this.boardFolderPath ? [this.boardFolderPath] : null;
|
|
break;
|
|
}
|
|
case "selectedFolders" /* SelectedFolders */: {
|
|
const selected = (_d = settings.scopeFolders) != null ? _d : [];
|
|
this.filenameFilter = this.boardFolderPath ? [this.boardFolderPath, ...selected.filter((f) => f !== this.boardFolderPath)] : selected;
|
|
break;
|
|
}
|
|
default:
|
|
this.filenameFilter = null;
|
|
break;
|
|
}
|
|
const excludePaths = (_e = settings.excludePaths) != null ? _e : [];
|
|
this.excludeFilter = excludePaths.length > 0 ? excludePaths : null;
|
|
});
|
|
const { columnDefinitions, columnTagTable, columnColourTable, columnPlacementTagTable, columnMatchTagTable } = createColumnStores(
|
|
this.settingsStore
|
|
);
|
|
this.columnDefinitionsStore = columnDefinitions;
|
|
this.columnTagTableStore = columnTagTable;
|
|
this.columnColourTableStore = columnColourTable;
|
|
this.columnPlacementTagTableStore = columnPlacementTagTable;
|
|
this.columnMatchTagTableStore = columnMatchTagTable;
|
|
const { tasksStore, taskActions, initialise } = createTasksStore(
|
|
this.app.vault,
|
|
this.app.workspace,
|
|
this.registerEvent.bind(this),
|
|
this.columnDefinitionsStore,
|
|
this.columnPlacementTagTableStore,
|
|
() => this.filenameFilter,
|
|
() => this.excludeFilter,
|
|
() => this.boardFolderPath,
|
|
this.settingsStore,
|
|
() => this.requestSave()
|
|
);
|
|
this.tasksStore = tasksStore;
|
|
this.taskActions = taskActions;
|
|
this.initialiseTasksStore = initialise;
|
|
}
|
|
async onLocalSettingsChange(newSettings, options) {
|
|
var _a5, _b3, _c2;
|
|
const previousSettings = structuredClone(get2(this.settingsStore));
|
|
try {
|
|
await applyChangedColumnTagUpdates({
|
|
vault: this.app.vault,
|
|
oldSettings: previousSettings,
|
|
newSettings,
|
|
boardFolderPath: (_c2 = (_b3 = (_a5 = this.file) == null ? void 0 : _a5.parent) == null ? void 0 : _b3.path) != null ? _c2 : null,
|
|
updateChoices: options.updateExistingTaskTagsByColumnId
|
|
});
|
|
} catch (error) {
|
|
console.error("Failed to update changed column task tags", error);
|
|
new import_obsidian9.Notice("Failed to update existing task tags for changed columns.");
|
|
return;
|
|
}
|
|
this.settingsStore.set(newSettings);
|
|
this.initialiseTasksStore();
|
|
this.requestSave();
|
|
}
|
|
openSettingsModal() {
|
|
var _a5, _b3, _c2;
|
|
const settingsModal = new SettingsModal(
|
|
this.app,
|
|
structuredClone(get2(this.settingsStore)),
|
|
(newSettings, options) => this.onLocalSettingsChange(newSettings, options),
|
|
(_c2 = (_b3 = (_a5 = this.file) == null ? void 0 : _a5.parent) == null ? void 0 : _b3.path) != null ? _c2 : null
|
|
);
|
|
settingsModal.open();
|
|
return new Promise((resolve) => {
|
|
settingsModal.onClose = () => {
|
|
resolve();
|
|
settingsModal.onClose = () => void 0;
|
|
};
|
|
});
|
|
}
|
|
getViewType() {
|
|
this.leaf.openFile;
|
|
return KANBAN_VIEW_NAME;
|
|
}
|
|
getViewData() {
|
|
const parsed = (0, import_front_matter.default)(this.data + "\n");
|
|
parsed.attributes["kanban_plugin"] = toSettingsString(
|
|
get2(this.settingsStore)
|
|
);
|
|
return `---
|
|
${Object.entries(parsed.attributes).map(([key2, value]) => `${key2}: '${value}'`).join("\n")}
|
|
---
|
|
${parsed.body}
|
|
`;
|
|
}
|
|
setViewData(data, clear) {
|
|
this.data = data;
|
|
this.settingsStore.set(this.getInitialSettings(data));
|
|
this.initialiseTasksStore();
|
|
}
|
|
getInitialSettings(data) {
|
|
var _a5;
|
|
const parsed = (0, import_front_matter.default)(data + "\n");
|
|
return parseSettingsString((_a5 = parsed.attributes.kanban_plugin) != null ? _a5 : "");
|
|
}
|
|
clear() {
|
|
}
|
|
async onOpen() {
|
|
this.component = new Main({
|
|
target: this.contentEl,
|
|
props: {
|
|
app: this.app,
|
|
tasksStore: this.tasksStore,
|
|
taskActions: this.taskActions,
|
|
columnTagTableStore: this.columnTagTableStore,
|
|
columnColourTableStore: this.columnColourTableStore,
|
|
columnMatchTagTableStore: this.columnMatchTagTableStore,
|
|
openSettings: () => this.openSettingsModal(),
|
|
settingsStore: this.settingsStore,
|
|
requestSave: () => this.requestSave()
|
|
}
|
|
});
|
|
}
|
|
async onClose() {
|
|
var _a5;
|
|
(_a5 = this.component) == null ? void 0 : _a5.$destroy();
|
|
this.destroySettingsStore();
|
|
}
|
|
};
|
|
|
|
// src/entry.ts
|
|
var Base = class extends import_obsidian10.Plugin {
|
|
async onload() {
|
|
this.registerView(KANBAN_VIEW_NAME, (leaf) => new KanbanView(leaf));
|
|
this.registerHoverLinkSource("kanban-view", {
|
|
display: "Kanban",
|
|
defaultMod: false
|
|
});
|
|
this.switchToKanbanAfterLoad();
|
|
this.registerEvent(
|
|
this.app.workspace.on("active-leaf-change", () => {
|
|
this.switchToKanbanAfterLoad();
|
|
})
|
|
);
|
|
this.registerEvent(
|
|
this.app.workspace.on("file-menu", (menu, file) => {
|
|
menu.addItem((item) => {
|
|
item.setTitle("New kanban").setIcon("square-kanban").onClick(async () => {
|
|
var _a5;
|
|
const newFile = await this.app.vault.create(
|
|
file.path + "/Kanban-" + Date.now() + ".md",
|
|
`---
|
|
kanban_plugin: {}
|
|
---
|
|
`
|
|
);
|
|
(_a5 = this.app.workspace.getActiveViewOfType(import_obsidian10.MarkdownView)) == null ? void 0 : _a5.leaf.openFile(newFile);
|
|
});
|
|
});
|
|
})
|
|
);
|
|
}
|
|
onunload() {
|
|
}
|
|
switchToKanbanAfterLoad() {
|
|
this.app.workspace.onLayoutReady(() => {
|
|
let leaf;
|
|
for (leaf of this.app.workspace.getLeavesOfType("markdown")) {
|
|
if (leaf.view instanceof import_obsidian10.MarkdownView && this.isKanbanFile(leaf.view.file)) {
|
|
this.setKanbanView(leaf);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
isKanbanFile(file) {
|
|
if (!file) {
|
|
return false;
|
|
}
|
|
const fileCache = this.app.metadataCache.getFileCache(file);
|
|
return !!(fileCache == null ? void 0 : fileCache.frontmatter) && !!fileCache.frontmatter["kanban_plugin"];
|
|
}
|
|
async setKanbanView(leaf) {
|
|
await leaf.setViewState({
|
|
type: KANBAN_VIEW_NAME,
|
|
state: leaf.view.getState()
|
|
});
|
|
}
|
|
};
|
|
|
|
/* nosourcemap */ |