Implement caching in the JS version
This commit is contained in:
@@ -385,7 +385,7 @@ var computeLayout = (function() {
|
|||||||
return -getPosition(node, trailing[axis]);
|
return -getPosition(node, trailing[axis]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function layoutNode(node, parentMaxWidth, /*css_direction_t*/parentDirection) {
|
function layoutNodeImpl(node, parentMaxWidth, /*css_direction_t*/parentDirection) {
|
||||||
var/*css_direction_t*/ direction = resolveDirection(node, parentDirection);
|
var/*css_direction_t*/ direction = resolveDirection(node, parentDirection);
|
||||||
var/*(c)!css_flex_direction_t*//*(java)!int*/ mainAxis = resolveAxis(getFlexDirection(node), direction);
|
var/*(c)!css_flex_direction_t*//*(java)!int*/ mainAxis = resolveAxis(getFlexDirection(node), direction);
|
||||||
var/*(c)!css_flex_direction_t*//*(java)!int*/ crossAxis = getCrossFlexDirection(mainAxis, direction);
|
var/*(c)!css_flex_direction_t*//*(java)!int*/ crossAxis = getCrossFlexDirection(mainAxis, direction);
|
||||||
@@ -1069,7 +1069,31 @@ var computeLayout = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function layoutNode(node, parentMaxWidth, parentDirection) {
|
||||||
|
if (!node.lastLayout ||
|
||||||
|
node.lastLayout.requestedHeight !== node.layout.height ||
|
||||||
|
node.lastLayout.requestedWidth !== node.layout.width ||
|
||||||
|
node.lastLayout.parentMaxWidth !== parentMaxWidth) {
|
||||||
|
|
||||||
|
if (!node.lastLayout)
|
||||||
|
node.lastLayout = {};
|
||||||
|
|
||||||
|
node.lastLayout.requestedWidth = node.layout.width;
|
||||||
|
node.lastLayout.requestedHeight = node.layout.height;
|
||||||
|
node.lastLayout.parentMaxWidth = parentMaxWidth;
|
||||||
|
|
||||||
|
layoutNodeImpl(node, parentMaxWidth, parentDirection);
|
||||||
|
|
||||||
|
for (var key in node.layout)
|
||||||
|
node.lastLayout[key] = node.layout[key];
|
||||||
|
} else {
|
||||||
|
for (var key in node.layout)
|
||||||
|
node.layout[key] = node.lastLayout[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
layoutNodeImpl: layoutNodeImpl,
|
||||||
computeLayout: layoutNode,
|
computeLayout: layoutNode,
|
||||||
fillNodes: fillNodes
|
fillNodes: fillNodes
|
||||||
};
|
};
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
var layoutTestUtils = require('./Layout-test-utils.js');
|
var layoutTestUtils = require('./Layout-test-utils.js');
|
||||||
var computeLayout = require('./Layout.js').computeLayout;
|
var computeLayout = require('./Layout.js').layoutNodeImpl;
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
var JavaTranspiler = require('./JavaTranspiler.js');
|
var JavaTranspiler = require('./JavaTranspiler.js');
|
||||||
var CSharpTranspiler = require('./CSharpTranspiler.js');
|
var CSharpTranspiler = require('./CSharpTranspiler.js');
|
||||||
|
Reference in New Issue
Block a user