Answer the question
In order to leave comments, you need to log in
Is it possible to render a react component imperatively?
Given:
Service for react, most of the work of which lies behind authentication.
Singleton for ajax that doesn't know anything about react. Just an abstract class.
The Alert component is the framework for the notification itself. And AlertRenderer is a wrapper for alerts that portals them (ReactDOM.createPortal(...)) into a general alert wrapper at the App.js level Need
to:
Create a mechanism for handling common errors from the server. That is, ajax catches an error, and if its processing by me is forbidden by the options for calling the ajax method, then it is imperative to call the render of a specific component, giving props to it as imperatively.
That is, I would like something like
import Alert from './components/common/Alert'
.catch(error) {
Alert.set({textError: `${error.code}: ${error.message}`})
}
Answer the question
In order to leave comments, you need to log in
https://ru.reactjs.org/blog/2015/10/01/react-rende...
class AlertCaller {
constructor(options) {
this.state = {
children: options.textError
}
this._render();
}
_render() {
ReactDOM.render(
<Alert {...this.state} />,
document.getElementById("alerts")
);
}
destroy() {
ReactDOM.unmountComponentAtNode(this._container);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question