1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

prettier - auto

This commit is contained in:
Michael Shanks 2020-02-23 22:07:28 +00:00
parent c3cb67cc3a
commit fd810c9910

View file

@ -189,14 +189,14 @@ const _setup = (
binding.fallback,
binding.source
)
}
}
if (isBound && binding.source === "context") {
initialProps[propName] = !context
? propValue
: getState(context, binding.path, binding.fallback, binding.source)
}
}
if (isEventType(propValue)) {
const handlersInfos = []
for (let event of propValue) {
@ -211,20 +211,18 @@ const _setup = (
if (!paramBinding) {
resolvedParams[paramName] = () => paramValue
continue
}
}
let paramValueSource;
let paramValueSource
if (paramBinding.source === "context") paramValueSource = context;
if (paramBinding.source === "state") paramValueSource = getCurrentState();
if (paramBinding.source === "context") paramValueSource = context;
if (paramBinding.source === "context") paramValueSource = context
if (paramBinding.source === "state")
paramValueSource = getCurrentState()
if (paramBinding.source === "context") paramValueSource = context
// The new dynamic event parameter bound to the relevant source
resolvedParams[paramName] = () => getState(
paramValueSource,
paramBinding.path,
paramBinding.fallback
);
resolvedParams[paramName] = () =>
getState(paramValueSource, paramBinding.path, paramBinding.fallback)
}
handlerInfo.parameters = resolvedParams
@ -260,4 +258,4 @@ const makeHandler = (handlerTypes, handlerInfo) => {
}
handlerType.execute(parameters)
}
}
}