mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
47b003a828
* Extract base Jest config This makes it easier to change the source config without affecting the build test config. * Statically import the host config This changes react-reconciler to import HostConfig instead of getting it through a function argument. Rather than start with packages like ReactDOM that want to inline it, I started with React Noop and ensured that *custom* renderers using react-reconciler package still work. To do this, I'm making HostConfig module in the reconciler look at a global variable by default (which, in case of the react-reconciler npm package, ends up being the host config argument in the top-level scope). This is still very broken. * Add scaffolding for importing an inlined renderer * Fix the build * ES exports for renderer methods * ES modules for host configs * Remove closures from the reconciler * Check each renderer's config with Flow * Fix uncovered Flow issue We know nextHydratableInstance doesn't get mutated inside this function, but Flow doesn't so it thinks it may be null. Help Flow. * Prettier * Get rid of enable*Reconciler flags They are not as useful anymore because for almost all cases (except third party renderers) we *know* whether it supports mutation or persistence. This refactoring means react-reconciler and react-reconciler/persistent third-party packages now ship the same thing. Not ideal, but this seems worth how simpler the code becomes. We can later look into addressing it by having a single toggle instead. * Prettier again * Fix Flow config creation issue * Fix imprecise Flow typing * Revert accidental changes
141 lines
3.6 KiB
JavaScript
141 lines
3.6 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import * as ARTRenderer from 'react-reconciler/inline.art';
|
|
import Transform from 'art/core/transform';
|
|
import Mode from 'art/modes/current';
|
|
import FastNoSideEffects from 'art/modes/fast-noSideEffects';
|
|
|
|
import {TYPES, childrenAsString} from './ReactARTInternals';
|
|
|
|
Mode.setCurrent(
|
|
// Change to 'art/modes/dom' for easier debugging via SVG
|
|
FastNoSideEffects,
|
|
);
|
|
|
|
/** Declarative fill-type objects; API design not finalized */
|
|
|
|
const slice = Array.prototype.slice;
|
|
|
|
class LinearGradient {
|
|
constructor(stops, x1, y1, x2, y2) {
|
|
this._args = slice.call(arguments);
|
|
}
|
|
|
|
applyFill(node) {
|
|
node.fillLinear.apply(node, this._args);
|
|
}
|
|
}
|
|
|
|
class RadialGradient {
|
|
constructor(stops, fx, fy, rx, ry, cx, cy) {
|
|
this._args = slice.call(arguments);
|
|
}
|
|
|
|
applyFill(node) {
|
|
node.fillRadial.apply(node, this._args);
|
|
}
|
|
}
|
|
|
|
class Pattern {
|
|
constructor(url, width, height, left, top) {
|
|
this._args = slice.call(arguments);
|
|
}
|
|
|
|
applyFill(node) {
|
|
node.fillImage.apply(node, this._args);
|
|
}
|
|
}
|
|
|
|
/** React Components */
|
|
|
|
class Surface extends React.Component {
|
|
componentDidMount() {
|
|
const {height, width} = this.props;
|
|
|
|
this._surface = Mode.Surface(+width, +height, this._tagRef);
|
|
|
|
this._mountNode = ARTRenderer.createContainer(this._surface);
|
|
ARTRenderer.updateContainer(this.props.children, this._mountNode, this);
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
const props = this.props;
|
|
|
|
if (props.height !== prevProps.height || props.width !== prevProps.width) {
|
|
this._surface.resize(+props.width, +props.height);
|
|
}
|
|
|
|
ARTRenderer.updateContainer(this.props.children, this._mountNode, this);
|
|
|
|
if (this._surface.render) {
|
|
this._surface.render();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
ARTRenderer.updateContainer(null, this._mountNode, this);
|
|
}
|
|
|
|
render() {
|
|
// This is going to be a placeholder because we don't know what it will
|
|
// actually resolve to because ART may render canvas, vml or svg tags here.
|
|
// We only allow a subset of properties since others might conflict with
|
|
// ART's properties.
|
|
const props = this.props;
|
|
|
|
// TODO: ART's Canvas Mode overrides surface title and cursor
|
|
const Tag = Mode.Surface.tagName;
|
|
|
|
return (
|
|
<Tag
|
|
ref={ref => (this._tagRef = ref)}
|
|
accessKey={props.accessKey}
|
|
className={props.className}
|
|
draggable={props.draggable}
|
|
role={props.role}
|
|
style={props.style}
|
|
tabIndex={props.tabIndex}
|
|
title={props.title}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
class Text extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
// We allow reading these props. Ideally we could expose the Text node as
|
|
// ref directly.
|
|
['height', 'width', 'x', 'y'].forEach(key => {
|
|
Object.defineProperty(this, key, {
|
|
get: function() {
|
|
return this._text ? this._text[key] : undefined;
|
|
},
|
|
});
|
|
});
|
|
}
|
|
render() {
|
|
// This means you can't have children that render into strings...
|
|
const T = TYPES.TEXT;
|
|
return (
|
|
<T {...this.props} ref={t => (this._text = t)}>
|
|
{childrenAsString(this.props.children)}
|
|
</T>
|
|
);
|
|
}
|
|
}
|
|
|
|
/** API */
|
|
|
|
export const ClippingRectangle = TYPES.CLIPPING_RECTANGLE;
|
|
export const Group = TYPES.GROUP;
|
|
export const Shape = TYPES.SHAPE;
|
|
export const Path = Mode.Path;
|
|
export {LinearGradient, Pattern, RadialGradient, Surface, Text, Transform};
|