Basically I want to show message to user after he successfully submitted form. Like Thanks. Product added. And after few seconds I want this message to disappear.
Currently my code is pretty straightforward and contains 3 action types for AJAX request (ADD_PRODUCT_REQUEST, ADD_PRODUCT_SUCCESS, ADD_PRODUCT_FAILURE).  
My component containing form connected to redux via mapDispatchToProps:
import {addProduct} from '../actions/product';
const mapDispatchToProps = dispatch => ({
    onSubmit(productName) {
        dispatch(addProduct(productName))
    }
});
class AddProduct extends React.Component {
    addProduct() {
        const {onSubmit} = this.props; 
        onSubmit(this.productNameInput.val);
    }
    render() {
       return (
          <form onSubmit={::this.addProduct}>...</form>
       )
    }
}
And my action creator is also pretty straightforward (pseudocode):
export const addProduct = (name) => dispatch => {
    dispatch(addProductRequest())
    fetch(...).then(addProductSuccess()).catch(e => addProductFailure(error))     
}
How I can using this "standard" react-redux architecture know that AJAX request executed successfully on component side?
I have only 1 idea - add some value to state informing that product was added, like added:true, but I think it's bad idea. 
 
     
    