@evlop/commons 1.0.144 → 1.0.145
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTemplate.d.ts","sourceRoot":"","sources":["../../../src/hooks/useTemplate.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useTemplate.d.ts","sourceRoot":"","sources":["../../../src/hooks/useTemplate.tsx"],"names":[],"mappings":"AAcA,eAAO,MAAM,WAAW,oBAAqB,MAAM,QAqBlD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -6,13 +6,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.useTemplate = void 0;
|
|
7
7
|
const react_1 = require("react");
|
|
8
8
|
const useScope_1 = require("./useScope");
|
|
9
|
+
const lodash_1 = require("lodash");
|
|
10
|
+
const uuid_1 = require("uuid");
|
|
9
11
|
const handlebars_min_js_1 = __importDefault(require("handlebars/dist/handlebars.min.js"));
|
|
12
|
+
const handlebarsCompile = lodash_1.memoize((stringValue) => handlebars_min_js_1.default.compile(stringValue, { noEscape: true }), (stringValue) => {
|
|
13
|
+
if (lodash_1.size(stringValue) < 100)
|
|
14
|
+
return stringValue;
|
|
15
|
+
return uuid_1.v5(stringValue, '060c30f4-309d-4054-a62e-7d7390c63cce');
|
|
16
|
+
});
|
|
10
17
|
const useTemplate = (templateString) => {
|
|
11
18
|
const scope = useScope_1.useScope();
|
|
12
19
|
const applyTemplate = react_1.useCallback((stringValue) => {
|
|
13
20
|
if (stringValue !== undefined && typeof stringValue === "string") {
|
|
14
21
|
try {
|
|
15
|
-
const template =
|
|
22
|
+
const template = handlebarsCompile(stringValue);
|
|
16
23
|
return template(scope, { allowProtoMethodsByDefault: true, allowProtoPropertiesByDefault: true });
|
|
17
24
|
}
|
|
18
25
|
catch (e) { }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTemplate.js","sourceRoot":"","sources":["../../../src/hooks/useTemplate.tsx"],"names":[],"mappings":";;;;;;AAAA,iCAA2C;AAC3C,yCAAoC;AACpC,0FAA2D;
|
|
1
|
+
{"version":3,"file":"useTemplate.js","sourceRoot":"","sources":["../../../src/hooks/useTemplate.tsx"],"names":[],"mappings":";;;;;;AAAA,iCAA2C;AAC3C,yCAAoC;AACpC,mCAAuC;AACvC,+BAAoC;AACpC,0FAA2D;AAE3D,MAAM,iBAAiB,GAAG,gBAAO,CACzB,CAAC,WAAkB,EAAE,EAAE,CAAC,2BAAU,CAAC,OAAO,CAAC,WAAW,EAAE,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC,EACzE,CAAC,WAAW,EAAE,EAAE;IACZ,IAAG,aAAI,CAAC,WAAW,CAAC,GAAC,GAAG;QAAE,OAAO,WAAW,CAAA;IAC5C,OAAO,SAAM,CAAC,WAAW,EAAE,sCAAsC,CAAC,CAAA;AACtE,CAAC,CACJ,CAAA;AAEE,MAAM,WAAW,GAAG,CAAC,cAAuB,EAAC,EAAE;IAElD,MAAM,KAAK,GAAG,mBAAQ,EAAE,CAAC;IACzB,MAAM,aAAa,GAAG,mBAAW,CAAC,CAAC,WAAmB,EAAC,EAAE;QACrD,IAAI,WAAW,KAAK,SAAS,IAAI,OAAO,WAAW,KAAM,QAAQ,EAAE;YAC/D,IAAG;gBACC,MAAM,QAAQ,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC;gBAChD,OAAO,QAAQ,CAAC,KAAK,EAAE,EAAC,0BAA0B,EAAE,IAAI,EAAE,6BAA6B,EAAE,IAAI,EAAC,CAAC,CAAC;aACnG;YAAC,OAAM,CAAC,EAAC,GAAE;SACf;QACD,OAAO,WAAW,CAAC;IACvB,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAA;IAEX,MAAM,UAAU,GAAG,eAAO,CAAC,GAAE,EAAE;QAC3B,IAAG,cAAc;YAAE,OAAO,aAAa,CAAC,cAAc,CAAC,CAAC;QACxD,OAAO,cAAc,CAAC;IAC1B,CAAC,EAAE,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC,CAAC;IAEpC,IAAG,cAAc,KAAK,SAAS;QAAE,OAAO,aAAa,CAAC;IAEtD,OAAO,UAAU,CAAC;AACtB,CAAC,CAAC;AArBW,QAAA,WAAW,eAqBtB;AAEF,kBAAe,mBAAW,CAAC"}
|