React-raphael 组件的渲染顺序(如 z-index)

The rendering order of the React-raphael components (like z-index)

我希望按照我需要的顺序绘制 Raphael-react 组件(以创建不同的层或诸如 z-index 之类的东西)。如何控制组件“Path”在“Paper”上的位置?

这是简化视图:

<Paper>
 <Set>
   <Path .../>
   <Path .../>
   <Path .../>
 </Set>             
</Paper>

Raphael好像不支持z-index,但是如果把所有的数据都放在一个数组里面local state(或者Redux)就可以达到目的:

  const [data, setData] = useState([
    { x: 50, y: 50, r: 40, attr: { stroke: "#0b8ac9", "stroke-width": 5 }},
    ... 
  ])

然后,如果您想要更改元素的 z-Index,只需将其移动到数组中即可:

  zIndexOrder = [ ..., -1, 0, 1,  ...] // last element has big z-index

我用奥运五环为您准备了演示,我只是在其中洗牌。

  const randomizeZIndex = () => {
    const temp = [...data];
    temp.sort(() => Math.random() - 0.5);
    setData(temp);
  };

可以看到here

当然,random也没用。您需要在每个元素上维护一个 zOrder 才能正常工作。

如果您想使用所有数字,您可以添加 polymorphism。并保存元素的类型(圆、线等)[=​​20=]

const elements = [{
  type: "Rect",
  key: "FirstRect",
  zOrder: 0,
  options: {
     x:30, y:148, width:240,height:150, 
     attr:{"fill":"#10a54a","stroke":"#f0c620","stroke-width":5
   }
 }}, ...];

代码应该是这样的:

import React, {Fragment} from 'react';
import { Raphael, Paper, Set, Rect, Line } from "react-raphael";

const RaphaelElement = {
  Line: function line({options}) {
    return <Line {...options}/>; // react-raphael Line
  },
  Rect: function rect({options}) {
    return <Rect {...options}/>; // react-raphael Rect
  }
}

const AllElements = ({elements}) => {
  return (
     <Fragment>
      { // with polymorphism
        elements.map(({options, key, type}) => {
          const CurrRaphaelElement = RaphaelElement[type];
          return <CurrRaphaelElement key={key} options={options} />
        })
      }
     </Fragment> 
  )
}