Have any way can edit notification message after norification showed?
as the title, thx!
With the current API, no.
Can you provide a scenario for this?
I use notification for showing loading status, for example, if socket is disconnected, I will reconnect after 30 seconds, I would like to keep notification and countdown at waiting seconds.

+1 for this, handy when displaying you are fetching data and when success update the same notification
Here is bad solution, it's working but it doesn't affect level and autoDismiss
// update existing notification if notification is valid (if not, addNotification throw an exception)
if (this._notificationSystem.addNotification(notification) == false){
// get the current notifications list
var notifications = this._notificationSystem.state.notifications;
// prepare the new notification list
var newNotifications = [];
// push all the notifications in the new list
notifications.forEach(function (item) {
if (item.uid == notification.uid){
// update old notification with the new one
item = notification;
}
newNotifications.push(item);
});
// update notificationSystem's notification list
this._notificationSystem.setState({
notifications: newNotifications
});
}
Sounds reasonable enough. I'll take a look at this task and attempt to provide a PR by the end of the week.