React 15 项目不能很好地与使用版本 16 的 React 组件库一起使用

React 15 Project not playing well with a React component library using version 16

我有一个大型 React 项目(项目 A),我正在创建一个组件库(项目 B)以在该项目中使用。项目 B 使用依赖项 'react-responsive-carousel' 创建幻灯片卡,我想在多个项目中使用它,包括项目 A。

在项目 B 的故事书下查看时,幻灯片和卡片看起来很棒并且按预期工作。将卡片组件(位于项目 B 中)加载到项目 A 时,我 运行 出现以下反应错误(以及损坏的幻灯片): "Unable to find node on an unmounted component."

如果我删除使用第三方依赖项 react-responsive-carousel 的幻灯片,错误就会消失,我可以在项目 A 中看到我的卡片。我也使用了 npm link作为通过本地文件路径安装依赖项,不良行为会同时发生。

项目 B(组件库)正在使用 React 16.3.2。 项目 A 正在使用 React 15.6.2。

我已经尝试将项目 A 的 React 版本降级到 15.6.2,但这会导致 Storybook 出错,我想继续使用它来共享组件目录。

将项目 A 更新到 16.3.2 是一种可能性,但我宁愿现在不这样做,因为引入新版本的 React 会破坏项目 A 的风险。此处介绍了此解决方案:

我可以使用对等依赖来解决这个问题吗?对等依赖是否已弃用?有没有其他我可以探索的潜在解决方案,或者我应该接受它并更新项目 A?

根据要求,这是一些代码。我已经简化了很多,尽量只保留与这个问题有关的内容。

项目 B 的依赖项:

"devDependencies": {
    "@storybook/addon-knobs": "^3.3.13",
    "@storybook/react": "^3.4.0",
    "react": "^16.3.2",        
    "react-dom": "^16.3.1",
    "react-hot-loader": "^4.2.0",
    "react-redux": "^5.0.7",
    "react-responsive-carousel": "^3.1.37",
    "styled-components": "^3.2.5"
  }

项目 A 的依赖项:

"devDependencies": {
    "my-component-library": "file:../../my-component-library",
    "react": "^15.6.2",
    "react-addons-create-fragment": "^15.6.0",
    "react-addons-css-transition-group": "^15.6.0",
    "react-addons-test-utils": "^15.6.0",
    "react-dom": "^15.6.2",
    "react-responsive-carousel": "3.1.34",
  }

项目 B 中的 Card 组件:

    import React from 'react';
    import styled from 'styled-components';

    import { Carousel } from 'react-responsive-carousel';

    //styled components css/js for 
    //CardContainer that has been taken out to keep the post short

    const Card = ({
        stuff, 
        stuff, 
        stuff //simplified for post
    }) => {
        return (
        <CardContainer>
            <div className="carousel-container">

                <Carousel 
                    showThumbs={false}
                    showStatus={false}
                    emulateTouch={true}
                    infiniteLoop={true}> 
                        <img src="whatever.jpg" />
                        <img src="whatever.jpg" />
                        <img src="whatever.jpg" />
                </Carousel>
            </div>
        </CardContainer>
        );
    };
export default Card;

在项目 B 中,我只是导入卡并使用它:

import { Card } from 'my-component-library';
<Card stuff={stuff} />

Would I be able to use peer dependencies to solve this? Are peer dependencies deprecated? Are there other potential solutions I can explore, or should I just suck it up and update Project A?

如果那是版本冲突,那么当然 - 你应该使用 peerDependencies 因为它们没有被弃用,这对他们来说是一个很好的用例 - 这正是 create-react-app or nextjs 这样的框架不这样做的原因强加给你应该在你的项目中使用哪个版本的反应,但你可以安装你的项目需要的特定版本。