diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 17:33:58 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 17:33:58 -0400 |
commit | edad98e0408571e4c6cabceaa5234510cefaaea5 (patch) | |
tree | 39811827bca3a2ba1b93640a6c9dac635f68d991 /src/find-reverse.js | |
parent | 7a30ec426d9cb4049c663441a510bd1525deed40 (diff) |
reverse: bindTo 'wikiData'
Diffstat (limited to 'src/find-reverse.js')
-rw-r--r-- | src/find-reverse.js | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/find-reverse.js b/src/find-reverse.js index 1e897a5c..f31d3c45 100644 --- a/src/find-reverse.js +++ b/src/find-reverse.js @@ -108,20 +108,24 @@ export function bind(wikiData, opts1, { if (!spec.bindTo) continue; const behavior = prepareBehavior(spec); - const thingData = wikiData[spec.bindTo]; + + const data = + (spec.bindTo === 'wikiData' + ? wikiData + : wikiData[spec.bindTo]); bound[key] = (opts1 ? (ref, opts2) => (opts2 - ? behavior(ref, thingData, {...opts1, ...opts2}) - : behavior(ref, thingData, opts1)) + ? behavior(ref, data, {...opts1, ...opts2}) + : behavior(ref, data, opts1)) : (ref, opts2) => (opts2 - ? behavior(ref, thingData, opts2) - : behavior(ref, thingData))); + ? behavior(ref, data, opts2) + : behavior(ref, data))); - bound[key][boundData] = thingData; + bound[key][boundData] = data; bound[key][boundOptions] = opts1 ?? {}; } |