web-dev-qa-db-ja.com

トーストはレンダリングされません(react-toastifyコンポーネント)

react-toastifyを使用していますが、単純なトーストをレンダリングできません...

import React from "react";
import { toast } from 'react-toastify';

class MyView extends React.Component<{}, {}> {

    constructor() {
        super();
        this.state = {

        };
    }

    componentDidMount() {
        toast("Hello", { autoClose: false });
    }

    notify = () => toast("Hello", { autoClose: false });

    render() {
        return (
           <div>
             <button onClick={this.notify}>Notify</button>
           </div>
      )}
}

package.json(「依存関係」セクション)

"react": "^16.2.0",
"react-toastify": "^3.2.2"

デバッグすると、トーストがキューに入っていることがわかります。_EventManager2は、通常キューからトーストを発行する_constant.ACTION.MOUNTEDイベントを取得しません...

/**
 * Wait until the ToastContainer is mounted to dispatch the toast
 * and attach isActive method
 */
_EventManager2.default.on(_constant.ACTION.MOUNTED, function (containerInstance) {
  container = containerInstance;

  toaster.isActive = function (id) {
    return container.isToastActive(id);
  };

  queue.forEach(function (item) {
    _EventManager2.default.emit(item.action, item.content, item.options);
  });
  queue = [];
});

..そのため、ToastContainerに何か問題があるかもしれませんが、何ですか?ドキュメントのサンプルコードを使用するだけです。

ご協力ありがとうございました!

9
kevinob

また、import 'react-toastify/dist/ReactToastify.css';

  import React, { Component } from 'react';
  import { ToastContainer, toast } from 'react-toastify';
  import 'react-toastify/dist/ReactToastify.css';
  // minified version is also included
  // import 'react-toastify/dist/ReactToastify.min.css';

  class App extends Component {
    notify = () => toast("Wow so easy !");

    render(){
      return (
        <div>
        <button onClick={this.notify}>Notify !</button>
          <ToastContainer />
        </div>
      );
    }
  }
20
Karan Shaw