contexture-mongo
Version:
Mongo Provider for Contexture
73 lines (72 loc) • 2.79 kB
JavaScript
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 __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 key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || 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 text_exports = {};
__export(text_exports, {
default: () => text_default
});
module.exports = __toCommonJS(text_exports);
var import_futil = __toESM(require("futil"));
var import_fp = __toESM(require("lodash/fp.js"));
let joinmap = {
all: "$and",
any: "$or",
none: "$nor"
};
let hasValue = import_fp.default.flow(
// NOTE: Don't change the below, otherwise things will explode!
// Cascade can take a third arg which causes this to behave weird (since hasValue is actually called with extra args like the schema, etc)
// See https://github.com/smartprocure/futil-js/issues/218
(x) => import_futil.default.cascade(["value", "values"], x),
import_fp.default.castArray,
import_fp.default.compact,
import_fp.default.negate(import_fp.default.isEmpty)
);
var text_default = {
hasValue,
filter: (node) => ({
[joinmap[node.join || "all"]]: import_fp.default.map(
(val) => ({
[node.field]: {
$regex: {
containsWord: val,
startsWith: `^${val}`,
wordStartsWith: `\\b${val}`,
endsWith: `${val}$`,
wordEndsWith: `${val}\\b`,
is: `^${val}$`,
containsExact: `\\b${val}\\b`
}[node.operator],
$options: "i"
}
}),
node.values || [node.value]
)
})
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {});