marko/components/renderer.js
Patrick Steele-Idem 261528e5db Fixes #599 - [v4] Bug: when rerendering, custom events may not be attached correctly when reusing components
The fix is to always reattach custom events even if the UI component is preserved.
2017-02-24 12:19:05 -07:00

202 lines
7.0 KiB
JavaScript

var componentsUtil = require('./util');
var componentLookup = componentsUtil.$__componentLookup;
var emitLifecycleEvent = componentsUtil.$__emitLifecycleEvent;
var nextRepeatedId = require('./nextRepeatedId');
var repeatedRegExp = /\[\]$/;
var ComponentsContext = require('./ComponentsContext');
var registry = require('./registry');
var extend = require('raptor-util/extend');
var WIDGETS_BEGIN_ASYNC_ADDED_KEY = '$wa';
function resolveComponentKey(out, key, scope) {
if (key.charAt(0) === '#') {
return key.substring(1);
} else {
var resolvedId;
if (repeatedRegExp.test(key)) {
resolvedId = nextRepeatedId(out, scope, key);
} else {
resolvedId = scope + '-' + key;
}
return resolvedId;
}
}
function preserveComponentEls(existingComponent, out, componentsContext) {
var rootEls = existingComponent.$__getRootEls({});
for (var elId in rootEls) {
var el = rootEls[elId];
// We put a placeholder element in the output stream to ensure that the existing
// DOM node is matched up correctly when using morphdom.
out.element(el.tagName, { id: elId });
componentsContext.$__preserveDOMNode(elId); // Mark the element as being preserved (for morphdom)
}
existingComponent.$__reset(); // The component is no longer dirty so reset internal flags
return true;
}
function handleBeginAsync(event) {
var parentOut = event.parentOut;
var asyncOut = event.out;
var componentsContext = asyncOut.global.components;
var componentStack;
if (componentsContext && (componentStack = componentsContext.$__componentStack)) {
// All of the components in this async block should be
// initialized after the components in the parent. Therefore,
// we will create a new ComponentsContext for the nested
// async block and will create a new component stack where the current
// component in the parent block is the only component in the nested
// stack (to begin with). This will result in top-level components
// of the async block being added as children of the component in the
// parent block.
var nestedComponentsContext = new ComponentsContext(asyncOut, componentStack[componentStack.length-1]);
asyncOut.data.components = nestedComponentsContext;
}
asyncOut.data.$w = parentOut.data.$w;
}
function createRendererFunc(templateRenderFunc, componentProps, renderingLogic) {
if (typeof renderingLogic == 'function') {
var ctor = renderingLogic;
renderingLogic = renderingLogic.prototype;
renderingLogic.onCreate = renderingLogic.onCreate || ctor;
}
renderingLogic = renderingLogic || {};
var onInput = renderingLogic.onInput;
var typeName = componentProps.type;
var roots = componentProps.roots;
var assignedId = componentProps.id;
var split = componentProps.split;
return function renderer(input, out) {
var outGlobal = out.global;
if (!out.isSync()) {
if (!outGlobal[WIDGETS_BEGIN_ASYNC_ADDED_KEY]) {
outGlobal[WIDGETS_BEGIN_ASYNC_ADDED_KEY] = true;
out.on('beginAsync', handleBeginAsync);
}
}
var component = outGlobal.$w;
var isRerender = component !== undefined;
var id = assignedId;
var isExisting;
var customEvents;
var scope;
if (component) {
id = component.id;
isExisting = true;
outGlobal.$w = null;
} else {
var componentArgs = input && input.$w || out.data.$w;
if (componentArgs) {
scope = componentArgs[0];
if (scope) {
scope = scope.id;
}
var key = componentArgs[1];
if (key != null) {
key = key.toString();
}
id = id || resolveComponentKey(out, key, scope);
customEvents = componentArgs[2];
delete input.$w;
}
}
var componentsContext = ComponentsContext.$__getComponentsContext(out);
id = id || componentsContext.$__nextComponentId();
if (registry.$__isServer) {
component = registry.$__createComponent(
renderingLogic,
id,
input,
out,
typeName,
customEvents,
scope);
input = component.$__updatedInput;
component.$__updatedInput = undefined; // We don't want $__updatedInput to be serialized to the browser
} else {
if (!component) {
if (isRerender) {
// Look in in the DOM to see if a component with the same ID and type already exists.
component = componentLookup[id];
if (component && component.$__type !== typeName) {
component = undefined;
}
}
if (component) {
isExisting = true;
} else {
isExisting = false;
// We need to create a new instance of the component
component = registry.$__createComponent(typeName, id);
if (split) {
split = false;
extend(component.constructor.prototype, renderingLogic);
}
}
// Set this flag to prevent the component from being queued for update
// based on the new input. The component is about to be rerendered
// so we don't want to queue it up as a result of calling `setInput()`
component.$__updateQueued = true;
component.$__setCustomEvents(customEvents, scope);
if (!isExisting) {
emitLifecycleEvent(component, 'create', input, out);
}
input = component.$__setInput(input, onInput, out);
if (isExisting) {
if (!component.$__isDirty || !component.shouldUpdate(input, component.$__state)) {
preserveComponentEls(component, out, componentsContext);
return;
}
}
}
emitLifecycleEvent(component, 'render', out);
}
var componentDef = componentsContext.$__beginComponent(component);
componentDef.$__roots = roots;
componentDef.$__isExisting = isExisting;
// Render the template associated with the component using the final template
// data that we constructed
templateRenderFunc(input, out, componentDef, component.$__rawState);
componentDef.$__end();
};
}
module.exports = createRendererFunc;
// exports used by the legacy renderer
createRendererFunc.$__resolveComponentKey = resolveComponentKey;
createRendererFunc.$__preserveComponentEls = preserveComponentEls;
createRendererFunc.$__handleBeginAsync = handleBeginAsync;