0

我正在尝试使用 rxjs(没有 setTimeout())添加工具提示延迟(300ms强调文本)。我的目标是在 TooltipPopover 组件中包含这个逻辑,稍后将被重用,延迟将作为道具传递(如果需要)。

我不确定如何使用 rxjs 在 TooltipPopover 组件中添加“延迟”逻辑?

Portal.js

const Portal = ({ children }) => {
  const mount = document.getElementById("portal-root");
  const el = document.createElement("div");

  useEffect(() => {
    mount.appendChild(el);
    return () => mount.removeChild(el);
  }, [el, mount]);

  return createPortal(children, el);
};

export default Portal;

TooltipPopover.js

import React from "react";

const TooltipPopover = ({ delay??? }) => {

  return (
    <div className="ant-popover-title">Title</div>
    <div className="ant-popover-inner-content">{children}</div>
  );
};

应用程序.js

const App = () => {

  return (
        <Portal>
          <TooltipPopover>
            <div>
              Content...
            </div>
          </TooltipPopover>
        </Portal>
  );
};

然后,我在不同的地方渲染 TooltipPopover:

ReactDOM.render(<TooltipPopover delay={1000}>
                        <SomeChildComponent/>
                </TooltipPopover>, rootEl)
4

1 回答 1

0

这是我的方法:

mouseenter$.pipe(
  // by default, the tooltip is not shown
  startWith(CLOSE_TOOLTIP),

  switchMap(
    () => concat(timer(300), NEVER).pipe(
      mapTo(SHOW_TOOLTIP),
      takeUntil(mouseleave$),
      endWith(CLOSE_TOOLTIP),
    ),
  ),

  distinctUntilChanged(),
)

我对 React with RxJS 的最佳实践不是很熟悉,但这就是我的理由。所以,流程是这样的:

  • on mouseenter$,启动计时器。concat(timer(300), NEVER)之所以使用,是因为虽然在 300 毫秒后应该显示工具提示,但我们只想在mouseleave$发出时隐藏它。
  • 300 毫秒后,显示工具提示并将关闭mouseleave$
  • 如果mouseleave$在 300 毫秒之前CLOSE_TOOLTIP发出,则会发出,但你可以避免(我认为)在帮助下不必要的重新渲染distinctUntilChanged
于 2020-08-30T12:06:36.743 回答