From 405e52004060d6db628010c8593d5663ea1f3032 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Fri, 2 Jun 2023 09:36:48 -0300 Subject: Revert "infra: report who sourced unfulfilled relations" This reverts commit e09e11f1b933fa67f07c9f5e4340466f89672c8b. --- src/content-function.js | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) (limited to 'src/content-function.js') diff --git a/src/content-function.js b/src/content-function.js index ede5bb74..921b5bcd 100644 --- a/src/content-function.js +++ b/src/content-function.js @@ -206,8 +206,6 @@ export function fulfillDependencies({ return newFulfilledDependencies; } -export const sourceAnnotation = Symbol('Source'); - export function getRelationsTree(dependencies, contentFunctionName, wikiData, ...args) { const relationIdentifier = Symbol('Relation'); @@ -236,11 +234,7 @@ export function getRelationsTree(dependencies, contentFunctionName, wikiData, .. const relationFunction = (name, ...args) => { const relationSymbol = Symbol(relationSymbolMessage(name)); - relationSlots[relationSymbol] = { - name, - args, - [sourceAnnotation]: contentFunctionName, - }; + relationSlots[relationSymbol] = {name, args}; return {[relationIdentifier]: relationSymbol}; }; @@ -258,7 +252,6 @@ export function getRelationsTree(dependencies, contentFunctionName, wikiData, .. ])); return { - [sourceAnnotation]: contentFunctionName, layout: relationsLayout, slots: relationSlots, tree: relationsTree, @@ -296,7 +289,6 @@ export function flattenRelationsTree({ name: slots[slot].name, args: slots[slot].args, relations: tree[slot]?.layout ?? null, - [sourceAnnotation]: slots[slot][sourceAnnotation], }; } } @@ -443,16 +435,11 @@ export function quickEvaluate({ const slotResults = {}; - function runContentFunction({ - name, - args, - relations: flatRelations, - [sourceAnnotation]: sourceName, - }) { + function runContentFunction({name, args, relations: flatRelations}) { const contentFunction = fulfilledContentDependencies[name]; if (!contentFunction) { - throw new Error(`Content function ${name} unfulfilled or not listed (from ${sourceName})`); + throw new Error(`Content function ${name} unfulfilled or not listed`); } const sprawl = -- cgit 1.3.0-6-gf8a5