mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0337a2981d
Summary:
We are working on making the empty object literal `{}` have the type `{}` - i.e. exact empty object - rather than being unsealed.
Making this change exposes a variety of errors. We can prevent these errors by annotating what we want the type of the empty object to be.
Reduces Xplat error diff to 2.3k
- Announcement: [post](https://fb.workplace.com/groups/flowlang/posts/903386663600331)
- Support group: [Flow Support](https://fb.workplace.com/groups/flow)
drop-conflicts
Format:
```
arc f
```
Sort imports
```
hg l -n | xargs js1 lint --fix --rule 'fb-tools/sort-requires'
```
Changelog: [Internal]
Reviewed By: samwgoldman
Differential Revision: D36086696
fbshipit-source-id: 90447279f2e6e38f44189b74ec0297719f7adf58
124 lines
3.1 KiB
JavaScript
124 lines
3.1 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {PlatformConfig} from '../AnimatedPlatformConfig';
|
|
|
|
const NativeAnimatedHelper = require('../NativeAnimatedHelper');
|
|
const AnimatedNode = require('./AnimatedNode');
|
|
const AnimatedWithChildren = require('./AnimatedWithChildren');
|
|
|
|
class AnimatedTransform extends AnimatedWithChildren {
|
|
_transforms: $ReadOnlyArray<Object>;
|
|
|
|
constructor(transforms: $ReadOnlyArray<Object>) {
|
|
super();
|
|
this._transforms = transforms;
|
|
}
|
|
|
|
__makeNative(platformConfig: ?PlatformConfig) {
|
|
this._transforms.forEach(transform => {
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
value.__makeNative(platformConfig);
|
|
}
|
|
}
|
|
});
|
|
super.__makeNative(platformConfig);
|
|
}
|
|
|
|
__getValue(): $ReadOnlyArray<Object> {
|
|
return this._transforms.map(transform => {
|
|
const result: {[string]: any} = {};
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
result[key] = value.__getValue();
|
|
} else {
|
|
result[key] = value;
|
|
}
|
|
}
|
|
return result;
|
|
});
|
|
}
|
|
|
|
__getAnimatedValue(): $ReadOnlyArray<Object> {
|
|
return this._transforms.map(transform => {
|
|
const result: {[string]: any} = {};
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
result[key] = value.__getAnimatedValue();
|
|
} else {
|
|
// All transform components needed to recompose matrix
|
|
result[key] = value;
|
|
}
|
|
}
|
|
return result;
|
|
});
|
|
}
|
|
|
|
__attach(): void {
|
|
this._transforms.forEach(transform => {
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
value.__addChild(this);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
__detach(): void {
|
|
this._transforms.forEach(transform => {
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
value.__removeChild(this);
|
|
}
|
|
}
|
|
});
|
|
super.__detach();
|
|
}
|
|
|
|
__getNativeConfig(): any {
|
|
const transConfigs = [];
|
|
|
|
this._transforms.forEach(transform => {
|
|
for (const key in transform) {
|
|
const value = transform[key];
|
|
if (value instanceof AnimatedNode) {
|
|
transConfigs.push({
|
|
type: 'animated',
|
|
property: key,
|
|
nodeTag: value.__getNativeTag(),
|
|
});
|
|
} else {
|
|
transConfigs.push({
|
|
type: 'static',
|
|
property: key,
|
|
value: NativeAnimatedHelper.transformDataType(value),
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
NativeAnimatedHelper.validateTransform(transConfigs);
|
|
return {
|
|
type: 'transform',
|
|
transforms: transConfigs,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = AnimatedTransform;
|