index.js 1.57 KB
Newer Older
邓晓峰's avatar
邓晓峰 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
import { PdRender, parseScheme } from '@wisdom-cesium/cesium';
import { useRef, useEffect } from 'react';
import { connect } from 'react-redux';
import { actionCreators } from '@/containers/App/store';
const cesiumMap = props => {
  // eslint-disable-next-line react-hooks/rules-of-hooks
  const ref = useRef(null);
  // eslint-disable-next-line react-hooks/rules-of-hooks
  const storeRef = useRef(null);
  // eslint-disable-next-line react-hooks/rules-of-hooks
  useEffect(() => {
    const mapConfig3d = props.globalConfig?.mapConfig3d;
    if (
      !(
        props.globalConfig.mapsettings?.areasettings &&
        // eslint-disable-next-line no-undef
        globalConfig.mapsettings?.basemaps?.length > 0
      )
    )
      return;
    if (storeRef.current) return;
    const { widgets } = mapConfig3d;
    const schemes = parseScheme.parseSchemes(mapConfig3d);
    const schemeData = parseScheme.parseDatas(schemes);
    const pdView = new PdRender({
      el: ref.current,
      widgets,
      ...schemeData,
    });
    storeRef.current = pdView;
    props.updatePdCesiumView(pdView);
  }, [props]);

  return (
    // eslint-disable-next-line react/react-in-jsx-scope
    <div
      style={{
        inset: 0,
        position: 'absolute',
      }}
      ref={ref}
    />
  );
};

const mapStateToProps = state => ({
  globalConfig: state.getIn(['global', 'globalConfig']),
});

const mapDispatchToProps = dispatch => ({
  updatePdCesiumView(pdView) {
    dispatch(actionCreators.updatePdCesiumView(pdView));
  },
});

export default connect(
  mapStateToProps,
  mapDispatchToProps,
)(cesiumMap);