Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function unstable_renderSubtreeIntoContainer(parentComponent, vNode, container, callback) {
const wrapperVNode: VNode = createComponentVNode(VNodeFlags.ComponentClass, WrapperComponent, {
children: vNode,
context: parentComponent.context
});
render(wrapperVNode, container, null);
const component = vNode.children;
if (callback) {
// callback gets the component as context, no other argument.
callback.call(component);
}
return component;
}
it('setState should apply state during componentWillReceiveProps', done => {
render(createComponentVNode(VNodeFlags.ComponentClass, TestCWRP, {}), container);
expect(renderCount).toBe(1);
render(
createComponentVNode(VNodeFlags.ComponentClass, TestCWRP, {
foo: 1
}),
container
);
expect(renderCount).toBe(2);
done();
});
});
function renderIntoDocument(input) {
return render(createComponentVNode(VNodeFlags.ComponentClass, Wrapper, { children: input }), container);
}
function renderIntoDocument(input) {
return render(createComponentVNode(VNodeFlags.ComponentClass, Wrapper, { children: input }), container);
}
function renderIntoDocument(input) {
return React.render(createComponentVNode(VNodeFlags.ComponentClass, Wrapper, { children: input }), container);
}
public render(): VNode {
return createComponentVNode(VNodeFlags.ComponentClass, Router, {
children: this.props.children,
history: this.history
});
}
}
const stack = [vNode];
let _vNode;
let flags;
let children;
while (stack.length > 0) {
_vNode = stack.pop();
if (_vNode.dom === DOM) {
return true;
}
flags = _vNode.flags;
children = _vNode.children;
if (flags & VNodeFlags.ComponentClass) {
stack.push(children.$LI);
} else if (flags & VNodeFlags.ComponentFunction) {
stack.push(children);
} else {
flags = _vNode.childFlags;
if (flags & ChildFlags.MultipleChildren) {
let i = children.length;
while (i--) {
stack.push(children[i]);
}
} else if (flags & ChildFlags.HasVNodeChildren) {
stack.push(children);
}
}
function hydrateVNode(vNode: VNode, parentDOM: Element, currentDom: Element, context: Object, isSVG: boolean, lifecycle: Function[]): Element | null {
const flags = (vNode.flags |= VNodeFlags.InUse);
if (flags & VNodeFlags.Component) {
return hydrateComponent(vNode, parentDOM, currentDom, context, isSVG, (flags & VNodeFlags.ComponentClass) > 0, lifecycle);
}
if (flags & VNodeFlags.Element) {
return hydrateElement(vNode, parentDOM, currentDom, context, isSVG, lifecycle);
}
if (flags & VNodeFlags.Text) {
return hydrateText(vNode, parentDOM, currentDom);
}
if (flags & VNodeFlags.Void) {
return (vNode.dom = currentDom);
}
if (flags & VNodeFlags.Fragment) {
return hydrateFragment(vNode, parentDOM, currentDom, context, isSVG, lifecycle);
}
if (process.env.NODE_ENV !== 'production') {
throwError(`hydrate() expects a valid VNode, instead it received an object with the type "${typeof vNode}".`);
public render(): VNode {
return createComponentVNode(VNodeFlags.ComponentClass, Router, {
children: this.props.children,
history: this.history
});
}
}