2022-12-28 01:27:12 -08:00
|
|
|
/**
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
Consolidate JavaScript Flavors (#1433)
Summary:
Fixes https://github.com/facebook/yoga/issues/1417
This dramatically simplifies the matrix of Node vs web, ASM vs WASM, sync vs async compilation, or CommonJS vs ES Modules. We have one variant, using wasm, with ESModule top-level await to do async compilation. Web/node share the same binary, and we base64 encode the WASM into a wrapper JS file for compatibility with Node and bundlers.
This has some downsides, like requiring an environment with top level await, but also has upsides, like a consistent, sync looking API compatible with older Yoga, and mitigating TypeScript issues with package exports and typings resolution.
As part of this work I also removed `ts-node` from the toolchain (at the cost of a couple of config files needing to be vanilla JS).
Pull Request resolved: https://github.com/facebook/yoga/pull/1433
Test Plan:
1. `yarn test`
2. `yarn lint`
3. `yarn tsc`
4. `yarn benchmark`
5. `yarn build` website-next
6. `yarn lint` website-next
7. Locally test website-next
8. Examine package artifact created by GitHub
9. All Automation passes
Reviewed By: yungsters
Differential Revision: D50453324
Pulled By: NickGerleman
fbshipit-source-id: fe1192acc69e57fa69a1ff056dd7b5844d2198d5
2023-10-31 20:41:38 -07:00
|
|
|
// @ts-nocheck
|
|
|
|
|
|
|
|
import {Unit, Direction} from './generated/YGEnums.ts';
|
|
|
|
import YGEnums from './generated/YGEnums.ts';
|
|
|
|
|
2022-12-28 01:27:12 -08:00
|
|
|
import type {
|
|
|
|
Align,
|
|
|
|
Display,
|
2022-12-30 14:21:08 -08:00
|
|
|
Edge,
|
2023-04-27 13:53:45 -07:00
|
|
|
Errata,
|
2022-12-28 01:27:12 -08:00
|
|
|
ExperimentalFeature,
|
2022-12-30 14:21:08 -08:00
|
|
|
FlexDirection,
|
|
|
|
Gutter,
|
|
|
|
Justify,
|
|
|
|
MeasureMode,
|
|
|
|
Overflow,
|
|
|
|
PositionType,
|
|
|
|
Wrap,
|
Consolidate JavaScript Flavors (#1433)
Summary:
Fixes https://github.com/facebook/yoga/issues/1417
This dramatically simplifies the matrix of Node vs web, ASM vs WASM, sync vs async compilation, or CommonJS vs ES Modules. We have one variant, using wasm, with ESModule top-level await to do async compilation. Web/node share the same binary, and we base64 encode the WASM into a wrapper JS file for compatibility with Node and bundlers.
This has some downsides, like requiring an environment with top level await, but also has upsides, like a consistent, sync looking API compatible with older Yoga, and mitigating TypeScript issues with package exports and typings resolution.
As part of this work I also removed `ts-node` from the toolchain (at the cost of a couple of config files needing to be vanilla JS).
Pull Request resolved: https://github.com/facebook/yoga/pull/1433
Test Plan:
1. `yarn test`
2. `yarn lint`
3. `yarn tsc`
4. `yarn benchmark`
5. `yarn build` website-next
6. `yarn lint` website-next
7. Locally test website-next
8. Examine package artifact created by GitHub
9. All Automation passes
Reviewed By: yungsters
Differential Revision: D50453324
Pulled By: NickGerleman
fbshipit-source-id: fe1192acc69e57fa69a1ff056dd7b5844d2198d5
2023-10-31 20:41:38 -07:00
|
|
|
} from './generated/YGEnums.ts';
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
type Layout = {
|
|
|
|
left: number;
|
|
|
|
right: number;
|
|
|
|
top: number;
|
|
|
|
bottom: number;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
2023-03-14 04:15:36 -07:00
|
|
|
};
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
type Size = {
|
|
|
|
width: number;
|
|
|
|
height: number;
|
2023-03-14 04:15:36 -07:00
|
|
|
};
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
type Value = {
|
2022-12-30 14:21:08 -08:00
|
|
|
unit: Unit;
|
2022-12-28 01:27:12 -08:00
|
|
|
value: number;
|
2023-03-14 04:15:36 -07:00
|
|
|
};
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
export type Config = {
|
|
|
|
free(): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
isExperimentalFeatureEnabled(feature: ExperimentalFeature): boolean;
|
2022-12-28 01:27:12 -08:00
|
|
|
setExperimentalFeatureEnabled(
|
|
|
|
feature: ExperimentalFeature,
|
2023-05-09 15:35:42 -07:00
|
|
|
enabled: boolean,
|
2023-03-14 04:15:36 -07:00
|
|
|
): void;
|
|
|
|
setPointScaleFactor(factor: number): void;
|
2023-05-03 16:11:20 -07:00
|
|
|
getErrata(): Errata;
|
|
|
|
setErrata(errata: Errata): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
useWebDefaults(): boolean;
|
|
|
|
setUseWebDefaults(useWebDefaults: boolean): void;
|
2022-12-28 01:27:12 -08:00
|
|
|
};
|
|
|
|
|
2023-05-03 16:11:20 -07:00
|
|
|
export type DirtiedFunction = (node: Node) => void;
|
|
|
|
|
2022-12-28 01:27:12 -08:00
|
|
|
export type MeasureFunction = (
|
|
|
|
width: number,
|
2022-12-30 14:21:08 -08:00
|
|
|
widthMode: MeasureMode,
|
2022-12-28 01:27:12 -08:00
|
|
|
height: number,
|
2023-05-09 15:35:42 -07:00
|
|
|
heightMode: MeasureMode,
|
2022-12-28 01:27:12 -08:00
|
|
|
) => Size;
|
|
|
|
|
|
|
|
export type Node = {
|
2023-07-17 14:27:32 -07:00
|
|
|
calculateLayout(
|
2023-12-12 09:06:58 -08:00
|
|
|
width: number | 'auto' | undefined,
|
|
|
|
height: number | 'auto' | undefined,
|
2023-07-17 14:27:32 -07:00
|
|
|
direction?: Direction,
|
|
|
|
): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
copyStyle(node: Node): void;
|
|
|
|
free(): void;
|
|
|
|
freeRecursive(): void;
|
|
|
|
getAlignContent(): Align;
|
|
|
|
getAlignItems(): Align;
|
|
|
|
getAlignSelf(): Align;
|
|
|
|
getAspectRatio(): number;
|
|
|
|
getBorder(edge: Edge): number;
|
|
|
|
getChild(index: number): Node;
|
|
|
|
getChildCount(): number;
|
|
|
|
getComputedBorder(edge: Edge): number;
|
|
|
|
getComputedBottom(): number;
|
|
|
|
getComputedHeight(): number;
|
|
|
|
getComputedLayout(): Layout;
|
|
|
|
getComputedLeft(): number;
|
|
|
|
getComputedMargin(edge: Edge): number;
|
|
|
|
getComputedPadding(edge: Edge): number;
|
|
|
|
getComputedRight(): number;
|
|
|
|
getComputedTop(): number;
|
|
|
|
getComputedWidth(): number;
|
|
|
|
getDisplay(): Display;
|
|
|
|
getFlexBasis(): Value;
|
|
|
|
getFlexDirection(): FlexDirection;
|
|
|
|
getFlexGrow(): number;
|
|
|
|
getFlexShrink(): number;
|
|
|
|
getFlexWrap(): Wrap;
|
|
|
|
getHeight(): Value;
|
|
|
|
getJustifyContent(): Justify;
|
|
|
|
getGap(gutter: Gutter): Value;
|
|
|
|
getMargin(edge: Edge): Value;
|
|
|
|
getMaxHeight(): Value;
|
|
|
|
getMaxWidth(): Value;
|
|
|
|
getMinHeight(): Value;
|
|
|
|
getMinWidth(): Value;
|
|
|
|
getOverflow(): Overflow;
|
|
|
|
getPadding(edge: Edge): Value;
|
|
|
|
getParent(): Node | null;
|
|
|
|
getPosition(edge: Edge): Value;
|
|
|
|
getPositionType(): PositionType;
|
|
|
|
getWidth(): Value;
|
|
|
|
insertChild(child: Node, index: number): void;
|
|
|
|
isDirty(): boolean;
|
2023-05-03 16:11:20 -07:00
|
|
|
isReferenceBaseline(): boolean;
|
2023-03-14 04:15:36 -07:00
|
|
|
markDirty(): void;
|
|
|
|
removeChild(child: Node): void;
|
|
|
|
reset(): void;
|
|
|
|
setAlignContent(alignContent: Align): void;
|
|
|
|
setAlignItems(alignItems: Align): void;
|
|
|
|
setAlignSelf(alignSelf: Align): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setAspectRatio(aspectRatio: number | undefined): void;
|
|
|
|
setBorder(edge: Edge, borderWidth: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setDisplay(display: Display): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setFlex(flex: number | undefined): void;
|
|
|
|
setFlexBasis(flexBasis: number | 'auto' | `${number}%` | undefined): void;
|
|
|
|
setFlexBasisPercent(flexBasis: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setFlexBasisAuto(): void;
|
|
|
|
setFlexDirection(flexDirection: FlexDirection): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setFlexGrow(flexGrow: number | undefined): void;
|
|
|
|
setFlexShrink(flexShrink: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setFlexWrap(flexWrap: Wrap): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setHeight(height: number | 'auto' | `${number}%` | undefined): void;
|
2023-05-03 16:11:20 -07:00
|
|
|
setIsReferenceBaseline(isReferenceBaseline: boolean): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setHeightAuto(): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setHeightPercent(height: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setJustifyContent(justifyContent: Justify): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setGap(gutter: Gutter, gapLength: number | undefined): Value;
|
|
|
|
setMargin(
|
|
|
|
edge: Edge,
|
|
|
|
margin: number | 'auto' | `${number}%` | undefined,
|
|
|
|
): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setMarginAuto(edge: Edge): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setMarginPercent(edge: Edge, margin: number | undefined): void;
|
|
|
|
setMaxHeight(maxHeight: number | `${number}%` | undefined): void;
|
|
|
|
setMaxHeightPercent(maxHeight: number | undefined): void;
|
|
|
|
setMaxWidth(maxWidth: number | `${number}%` | undefined): void;
|
|
|
|
setMaxWidthPercent(maxWidth: number | undefined): void;
|
2023-05-03 16:11:20 -07:00
|
|
|
setDirtiedFunc(dirtiedFunc: DirtiedFunction | null): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setMeasureFunc(measureFunc: MeasureFunction | null): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setMinHeight(minHeight: number | `${number}%` | undefined): void;
|
|
|
|
setMinHeightPercent(minHeight: number | undefined): void;
|
|
|
|
setMinWidth(minWidth: number | `${number}%` | undefined): void;
|
|
|
|
setMinWidthPercent(minWidth: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setOverflow(overflow: Overflow): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setPadding(edge: Edge, padding: number | `${number}%` | undefined): void;
|
|
|
|
setPaddingPercent(edge: Edge, padding: number | undefined): void;
|
|
|
|
setPosition(edge: Edge, position: number | `${number}%` | undefined): void;
|
|
|
|
setPositionPercent(edge: Edge, position: number | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setPositionType(positionType: PositionType): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setWidth(width: number | 'auto' | `${number}%` | undefined): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
setWidthAuto(): void;
|
2023-12-12 09:06:58 -08:00
|
|
|
setWidthPercent(width: number | undefined): void;
|
2023-05-03 16:11:20 -07:00
|
|
|
unsetDirtiedFunc(): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
unsetMeasureFunc(): void;
|
2024-01-08 20:28:49 -08:00
|
|
|
setAlwaysFormsContainingBlock(alwaysFormsContainingBlock: boolean): void;
|
2022-12-28 01:27:12 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
export type Yoga = {
|
|
|
|
Config: {
|
2023-03-14 04:15:36 -07:00
|
|
|
create(): Config;
|
2023-05-03 16:11:20 -07:00
|
|
|
destroy(config: Config): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
};
|
2022-12-28 01:27:12 -08:00
|
|
|
Node: {
|
2023-05-03 16:11:20 -07:00
|
|
|
create(config?: Config): Node;
|
2023-03-14 04:15:36 -07:00
|
|
|
createDefault(): Node;
|
|
|
|
createWithConfig(config: Config): Node;
|
2023-05-03 16:11:20 -07:00
|
|
|
destroy(node: Node): void;
|
2023-03-14 04:15:36 -07:00
|
|
|
};
|
2022-12-28 01:27:12 -08:00
|
|
|
} & typeof YGEnums;
|
|
|
|
|
Consolidate JavaScript Flavors (#1433)
Summary:
Fixes https://github.com/facebook/yoga/issues/1417
This dramatically simplifies the matrix of Node vs web, ASM vs WASM, sync vs async compilation, or CommonJS vs ES Modules. We have one variant, using wasm, with ESModule top-level await to do async compilation. Web/node share the same binary, and we base64 encode the WASM into a wrapper JS file for compatibility with Node and bundlers.
This has some downsides, like requiring an environment with top level await, but also has upsides, like a consistent, sync looking API compatible with older Yoga, and mitigating TypeScript issues with package exports and typings resolution.
As part of this work I also removed `ts-node` from the toolchain (at the cost of a couple of config files needing to be vanilla JS).
Pull Request resolved: https://github.com/facebook/yoga/pull/1433
Test Plan:
1. `yarn test`
2. `yarn lint`
3. `yarn tsc`
4. `yarn benchmark`
5. `yarn build` website-next
6. `yarn lint` website-next
7. Locally test website-next
8. Examine package artifact created by GitHub
9. All Automation passes
Reviewed By: yungsters
Differential Revision: D50453324
Pulled By: NickGerleman
fbshipit-source-id: fe1192acc69e57fa69a1ff056dd7b5844d2198d5
2023-10-31 20:41:38 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export default function wrapAssembly(lib: any): Yoga {
|
|
|
|
function patch(prototype, name, fn) {
|
|
|
|
const original = prototype[name];
|
|
|
|
|
|
|
|
prototype[name] = function (...args) {
|
|
|
|
return fn.call(this, original, ...args);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const fnName of [
|
|
|
|
'setPosition',
|
|
|
|
'setMargin',
|
|
|
|
'setFlexBasis',
|
|
|
|
'setWidth',
|
|
|
|
'setHeight',
|
|
|
|
'setMinWidth',
|
|
|
|
'setMinHeight',
|
|
|
|
'setMaxWidth',
|
|
|
|
'setMaxHeight',
|
|
|
|
'setPadding',
|
|
|
|
]) {
|
|
|
|
const methods = {
|
|
|
|
[Unit.Point]: lib.Node.prototype[fnName],
|
|
|
|
[Unit.Percent]: lib.Node.prototype[`${fnName}Percent`],
|
|
|
|
[Unit.Auto]: lib.Node.prototype[`${fnName}Auto`],
|
|
|
|
};
|
|
|
|
|
|
|
|
patch(lib.Node.prototype, fnName, function (original, ...args) {
|
|
|
|
// We patch all these functions to add support for the following calls:
|
|
|
|
// .setWidth(100) / .setWidth("100%") / .setWidth(.getWidth()) / .setWidth("auto")
|
|
|
|
|
|
|
|
const value = args.pop();
|
|
|
|
let unit, asNumber;
|
|
|
|
|
|
|
|
if (value === 'auto') {
|
|
|
|
unit = Unit.Auto;
|
|
|
|
asNumber = undefined;
|
|
|
|
} else if (typeof value === 'object') {
|
|
|
|
unit = value.unit;
|
|
|
|
asNumber = value.valueOf();
|
|
|
|
} else {
|
|
|
|
unit =
|
|
|
|
typeof value === 'string' && value.endsWith('%')
|
|
|
|
? Unit.Percent
|
|
|
|
: Unit.Point;
|
|
|
|
asNumber = parseFloat(value);
|
2023-12-12 09:06:58 -08:00
|
|
|
if (
|
|
|
|
value !== undefined &&
|
|
|
|
!Number.isNaN(value) &&
|
|
|
|
Number.isNaN(asNumber)
|
|
|
|
) {
|
Consolidate JavaScript Flavors (#1433)
Summary:
Fixes https://github.com/facebook/yoga/issues/1417
This dramatically simplifies the matrix of Node vs web, ASM vs WASM, sync vs async compilation, or CommonJS vs ES Modules. We have one variant, using wasm, with ESModule top-level await to do async compilation. Web/node share the same binary, and we base64 encode the WASM into a wrapper JS file for compatibility with Node and bundlers.
This has some downsides, like requiring an environment with top level await, but also has upsides, like a consistent, sync looking API compatible with older Yoga, and mitigating TypeScript issues with package exports and typings resolution.
As part of this work I also removed `ts-node` from the toolchain (at the cost of a couple of config files needing to be vanilla JS).
Pull Request resolved: https://github.com/facebook/yoga/pull/1433
Test Plan:
1. `yarn test`
2. `yarn lint`
3. `yarn tsc`
4. `yarn benchmark`
5. `yarn build` website-next
6. `yarn lint` website-next
7. Locally test website-next
8. Examine package artifact created by GitHub
9. All Automation passes
Reviewed By: yungsters
Differential Revision: D50453324
Pulled By: NickGerleman
fbshipit-source-id: fe1192acc69e57fa69a1ff056dd7b5844d2198d5
2023-10-31 20:41:38 -07:00
|
|
|
throw new Error(`Invalid value ${value} for ${fnName}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!methods[unit])
|
|
|
|
throw new Error(
|
|
|
|
`Failed to execute "${fnName}": Unsupported unit '${value}'`,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (asNumber !== undefined) {
|
|
|
|
return methods[unit].call(this, ...args, asNumber);
|
|
|
|
} else {
|
|
|
|
return methods[unit].call(this, ...args);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function wrapMeasureFunction(measureFunction) {
|
|
|
|
return lib.MeasureCallback.implement({
|
|
|
|
measure: (...args) => {
|
|
|
|
const {width, height} = measureFunction(...args);
|
|
|
|
return {
|
|
|
|
width: width ?? NaN,
|
|
|
|
height: height ?? NaN,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
patch(lib.Node.prototype, 'setMeasureFunc', function (original, measureFunc) {
|
|
|
|
// This patch is just a convenience patch, since it helps write more
|
|
|
|
// idiomatic source code (such as .setMeasureFunc(null))
|
|
|
|
if (measureFunc) {
|
|
|
|
return original.call(this, wrapMeasureFunction(measureFunc));
|
|
|
|
} else {
|
|
|
|
return this.unsetMeasureFunc();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function wrapDirtiedFunc(dirtiedFunction) {
|
|
|
|
return lib.DirtiedCallback.implement({dirtied: dirtiedFunction});
|
|
|
|
}
|
|
|
|
|
|
|
|
patch(lib.Node.prototype, 'setDirtiedFunc', function (original, dirtiedFunc) {
|
|
|
|
original.call(this, wrapDirtiedFunc(dirtiedFunc));
|
|
|
|
});
|
|
|
|
|
|
|
|
patch(lib.Config.prototype, 'free', function () {
|
|
|
|
// Since we handle the memory allocation ourselves (via lib.Config.create),
|
|
|
|
// we also need to handle the deallocation
|
|
|
|
lib.Config.destroy(this);
|
|
|
|
});
|
|
|
|
|
|
|
|
patch(lib.Node, 'create', (_, config) => {
|
|
|
|
// We decide the constructor we want to call depending on the parameters
|
|
|
|
return config
|
|
|
|
? lib.Node.createWithConfig(config)
|
|
|
|
: lib.Node.createDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
patch(lib.Node.prototype, 'free', function () {
|
|
|
|
// Since we handle the memory allocation ourselves (via lib.Node.create),
|
|
|
|
// we also need to handle the deallocation
|
|
|
|
lib.Node.destroy(this);
|
|
|
|
});
|
|
|
|
|
|
|
|
patch(lib.Node.prototype, 'freeRecursive', function () {
|
|
|
|
for (let t = 0, T = this.getChildCount(); t < T; ++t) {
|
|
|
|
this.getChild(0).freeRecursive();
|
|
|
|
}
|
|
|
|
this.free();
|
|
|
|
});
|
|
|
|
|
|
|
|
patch(
|
|
|
|
lib.Node.prototype,
|
|
|
|
'calculateLayout',
|
|
|
|
function (original, width = NaN, height = NaN, direction = Direction.LTR) {
|
|
|
|
// Just a small patch to add support for the function default parameters
|
|
|
|
return original.call(this, width, height, direction);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
return {
|
|
|
|
Config: lib.Config,
|
|
|
|
Node: lib.Node,
|
|
|
|
...YGEnums,
|
|
|
|
};
|
|
|
|
}
|