2

上下文 我创建了一个上下文并导出了生产者和消费者。我现在用 Producer 包装我的应用程序级示例。我希望能够在由不同包提供服务的模块中使用 ContextConsumer。

但是,当我尝试在此类模块中使用 ContextConsumer 时,它会抛出错误,cannot call function of undefined.

代码结构 下面是我的代码结构。

上下文-v1 包

上下文.js

import React, { Component, createContext } from 'react';
import PropTypes from 'prop-types';
import ZIndexUtils from './zIndexUtils';

const { node } = PropTypes;
const { Provider, Consumer: IDSContextConsumer } = createContext();

class IDSContextProvider extends Component {
  static propTypes = {
    children: node.isRequired
  };

  state = {
    topZIndex: ZIndexUtils.getTopZIndex(),
    incrementTopZIndex: ZIndexUtils.incrementTopZIndex
  };

  render() {
    return (
      <Provider
        value={{
          topZIndex: this.state.topZIndex,
          incrementTopZIndex: this.state.incrementTopZIndex
        }}
      >
        {this.props.children}
      </Provider>
    );
  }
}

export { IDSContextProvider };

export default IDSContextConsumer;

index.js

import IDSContextConsumer, { IDSContextProvider } from './Context';

export {
  IDSContextProvider,
  IDSContextConsumer
};

Dropdown-v1 包 这个组件使用了另一个名为 Menu-v1 的组件,我试图在其中使用 Consumer 访问我从应用程序级别示例传递下来的增量函数。

import { IDSContextConsumer } from '@ids/context-v1';
...
...
render() {
  return (
    <IDSContextConsumer>
      {
        (context) => (
          <ZIndex assignZIndex getTopZindex={context.incrementTopZIndex}>
            <MenuList
              className={className}
              autoFocus={autoFocus}
              aria-label={this.props['aria-label']}
              onKeyDown={this.handleKeyDown}
              onBlur={this.handleMenuBlur}
              reference={reference}
              ref={refReactDom}
              style={style}
            >
              {items}
            </MenuList>
          </ZIndex>
        )
      }
    </IDSContextConsumer>
  )
}

应用程序示例 最后,我尝试在我的应用程序中使用这个 Dropdown 模块。这是我希望看到增量函数通过上下文传递的地方。

从'@ids/context-v1'导入{ IDSContextProvider };从'@ids/dropdown'导入{下拉菜单项};

render() {
    return (
      <div>
        <IDSContextProvider>
          <Modal
            open={this.state.openModalDialog}
            onCloseModalDialog={this.handleModalClosing}
            title="Modal with Dropdown"
          >
            <Dropdown
              onBlur={() => console.log('Dropdown blurrrrr')}
              label="Name"
              value={this.state.value}
              onChange={this.handleDropdownChange}
            >
              <MenuItem value="1">Banana</MenuItem>
              <MenuItem value="2">Apple</MenuItem>
              <MenuItem value="3">Guava</MenuItem>
              <MenuItem value="4">Mango</MenuItem>
            </Dropdown>
          </Modal>
        </IDSContextProvider>
        <button className="divRenderButton" onClick={this.handleModalOpening}>Open Modal</button>
      </div>
    );
  }

我的示例中的模态组件

<Portal>
        <Transition
          enterClassName={`${prefix}--slideIn`}
          transition={open ? transitions.enter : transitions.exit}
          onEntered={onShow}
          onExited={onClose}
          exitClassName={`${prefix}--slideOut`}
          unmountOnExit
        >
          <IDSContextConsumer>
            {
              (context) => (
                <ZIndex
                  assignZIndex={open}
                  underlay
                  getTopZindex={context.incrementTopZIndex}
                >
                  <div
                    className={open ? 'divContainerWithUnderlay' : ''}
                  >
                    {
                      open &&
                      <div>
                        <h1 className="divContent">{title}</h1>
                        {
                          this.props.children ? this.props.children : null
                        }
                        <button className="divRenderButton" onClick={this.closeModalDialog}>Close Modal</button>
                      </div>
                    }
                  </div>
                </ZIndex>
              )
            }
          </IDSContextConsumer>
        </Transition>
      </Portal>

请求对此的热切帮助。我之前尝试过这个论坛的解决方案,但找不到任何方法让来自不同包的模块共享上下文。

4

0 回答 0