Reaction Reaction-Bootstrap-如何从外部组件关闭模式窗口

React react-bootstrap - How do I close a modal window from an outside component(Reaction Reaction-Bootstrap-如何从外部组件关闭模式窗口)
本文介绍了Reaction Reaction-Bootstrap-如何从外部组件关闭模式窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用版本:

react@16.8.6
react-bootstrap@1.0.0-beta.8

我有一个简单的模式组件:

import React, { Component } from 'react'

import { Modal } from "react-bootstrap";
import { ProgressBar } from "react-bootstrap";

class ProgressModal extends Component {
  constructor(...args) {
    super(...args);

    this.state = { showModal: false, titleText: ((this.props.titletext === undefined || this.props.titletext === null || this.props.titletext === "") ? "Working..." : this.props.titletext)};

    this.open = this.open.bind(this);
    this.close = this.close.bind(this);
  }

  open() {
    this.setState({showModal: true});
  }

  close() {
    this.setState({showModal: false});
  }

  render() {
    return (
      <Modal centered backdrop="static" keyboard={false} {...this.props}>
        <Modal.Header>
          <Modal.Title className="font-weight-bold">{this.state.titleText}</Modal.Title>
        </Modal.Header>
        <Modal.Body>
          <ProgressBar animated striped now={100} />
        </Modal.Body>
      </Modal>
    );
  }
}

export default ProgressModal;

这是为更长时间运行的活动(如登录)打开的。我想在用户单击登录按钮时打开它,然后在登录完成时关闭它。我很难找到一种方法来关闭它,除了使用模式窗口中的关闭按钮:

<Button className="btn-block" variant="danger" onClick={this.props.onHide}>Close</Button>
当然,这只允许用户在需要的时候关闭它。我已在组件中添加了要从外部组件调用的打开和关闭方法。

我尝试了许多方法:

添加id,使用getElementById找到它,然后触发该方法。

Adding a ref to the opening component as described here.

Doing it programmatically as described here.

I got some ideas from this question on how to call methods in other components.

尽管如此,我仍然无法从模式组件本身外部自动关闭模式窗口。

推荐答案

这是我最终要做的事情。我无法使‘ref’逻辑工作,所以我最终在构造函数中使用了全局引用:

window.progressModal = this;

我还需要更改关闭代码,因为将showModal状态变量设置为FALSE并不会关闭模式窗口。但是,将showMoal设置为True确实会打开窗口:

<Modal id={"progress-bar-modal-window"} show={this.state.showModal} centered  backdrop="static" keyboard={false} {...this.props}>

open() {
  this.setState({showModal: true});
}

close() {
  this.props.onHide();
}

现在外部组件可以使用以下命令打开模式窗口:

window.progressModal.open();

他们可以使用以下命令关闭它:

window.progressModal.close();

这篇关于Reaction Reaction-Bootstrap-如何从外部组件关闭模式窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

本文给大家介绍Javascript js中实现和PHP一样的时间戳格式化函数的方法,具有一定的参考借鉴价值,需要的朋友可以参考下,我们知道在php中有一个date()函数,可以方便的把时间戳格式化为时间字符串。可是在js中,我们要想实现这种效果,要写好
需求是模板字符串中不允许出现script 标签、不允许有javascript: 和 .js 文件引用,主要方法如下: clearScriptTag (str) { const reg = /script[^]*([\S\s]*?)\/script/gim; // 清除标签内 相关 xss 安全代码 const reg1 = /javascript:/gim; const reg2 = / *.js/gim; if (reg.test(str)) { str
javascript中Replace全部替换字符用法实例代码,替换1次和多次,主要是正则表达式 var r= "1\n2\n3\n";//将字母\n替换成分号alert(r.replace("\n",";"));//结果:1;2\n3\n 只替换了第一个var r= "1\n2\n3\n";//将字母\n替换成分号alert(r.replace(/\n/g, ";"));//结果:1;2;3; replac
js输出当前日期和时间的实例代码,具体实例代码如下,有兴趣的朋友可以尝试运行下。 !doctype htmlhtml lang="en" head meta charset="UTF-8" title获取当前时间/title /head body script type="text/javascript" /** *获取当前时间 *format=1精确到天 *format=2精确到秒 */ function
p5.js WebGL 3d graphics covered by 2d background when rotated(P5.js旋转时被2D背景覆盖的WebGL 3D图形)
Static vector field with classic arrows at every point on p5.js(P5.js上每个点都有经典箭头的静态向量场)