Skip to main content
Answered

Custom Notifications for MIRO board

  • June 2, 2021
  • 1 reply
  • 188 views

I wan to show a custom message bar on top of all the board across my team. I can push a message on the board through web plugin using showNotification() method but if I use method, the notification disappears after few seconds.

I want to ensure this message never disappears from the board and every time user open the board, this message is visible. What's the best way of achieving this.

Best answer by Anthony Roux

Hi @anupam UJJWAL,

 

It is not possible to use showNotification() for a long time message display and we do not have any other component offering such a feature. The only way would be to create something on the board directly. I will raise this feedback to the team to add it to our backlog to be prioritised.

 

Regarding the event, the closest one we offer is:

 

You can use it like this:

miro.addListener('ONLINE_USERS_CHANGED', widget => {
  miro.showNotification("Hello new user");
})

 

View original
Was it helpful?

1 reply

Anthony Roux
Mironeer
Forum|alt.badge.img+1
  • Mironeer
  • 215 replies
  • Answer
  • June 4, 2021

Hi @anupam UJJWAL,

 

It is not possible to use showNotification() for a long time message display and we do not have any other component offering such a feature. The only way would be to create something on the board directly. I will raise this feedback to the team to add it to our backlog to be prioritised.

 

Regarding the event, the closest one we offer is:

 

You can use it like this:

miro.addListener('ONLINE_USERS_CHANGED', widget => {
  miro.showNotification("Hello new user");
})

 


Reply