mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-09 09:27:20 +00:00
1e25870f5d
Remove redundant toString calls / type transforms. The view managers handle the different types natively.
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
import React from "react";
|
|
import "./Path"; // must import Path first, don`t know why. without this will throw an `Super expression must either be null or a function, not undefined`
|
|
import { requireNativeComponent } from "react-native";
|
|
import { pathProps, numberProp } from "../lib/props";
|
|
import { RectAttributes } from "../lib/attributes";
|
|
import extractProps from "../lib/extract/extractProps";
|
|
import Shape from "./Shape";
|
|
|
|
export default class extends Shape {
|
|
static displayName = "Rect";
|
|
|
|
static propTypes = {
|
|
...pathProps,
|
|
x: numberProp.isRequired,
|
|
y: numberProp.isRequired,
|
|
width: numberProp.isRequired,
|
|
height: numberProp.isRequired,
|
|
rx: numberProp,
|
|
ry: numberProp,
|
|
};
|
|
|
|
static defaultProps = {
|
|
x: 0,
|
|
y: 0,
|
|
width: 0,
|
|
height: 0,
|
|
rx: 0,
|
|
ry: 0,
|
|
};
|
|
|
|
setNativeProps = props => {
|
|
this.root.setNativeProps(props);
|
|
};
|
|
|
|
render() {
|
|
const { props } = this;
|
|
const { x, y, width, height, rx, ry } = props;
|
|
return (
|
|
<RNSVGRect
|
|
ref={ele => {
|
|
this.root = ele;
|
|
}}
|
|
{...extractProps(
|
|
{
|
|
...props,
|
|
x: null,
|
|
y: null,
|
|
},
|
|
this,
|
|
)}
|
|
x={x}
|
|
y={y}
|
|
width={width}
|
|
height={height}
|
|
rx={rx}
|
|
ry={ry}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
const RNSVGRect = requireNativeComponent("RNSVGRect", null, {
|
|
nativeOnly: RectAttributes,
|
|
});
|