Message
The message component can be used to provide a note to the user. One use case could be to notify the user of upcoming maintenance to your platform. If you want to permanently display the message without any interactivity then the default behaviour provided by Bulma will be perfect. However, should you wish to create messages via Javascript, automatically dismiss messages or provide a dismiss button you’ll need BulmaJS’s message component?
Creating a message
BulmaJS doesn’t stop you from creating a message via HTML. In fact, this is the easiest way to get started. However, in some situation, you may need to create your message via Javascript. With BulmaJS this is easy!
Bulma.create('message', {
title: 'Optional title',
body: 'I\'m a large message.',
parent: document.getElementById('size-message')
});
In the above example, we’re providing a title
, body
and parent
. title
and body
are self-explanatory, these will be placed in the same positions within the message component. parent
is where you supply the parent element. This element will be the container for this message. The message will be appended to its parent once it has been constructed.
You can also supply additional options to a message when you’re creating it. These include:
isDismissable
- This is a boolean value and determines if the close button is added to the message.dismissInterval
- This is an integer and specifies the number of milliseconds the message is visible before it is automatically hidden.destroyOnDismiss
- This is a boolean value and determines if the message should be removed from the DOM when it is dismissed via the button or automatically after thedismissInterval
has passed.color
- This is a string value and determines the color of the message. Any color property from Bulma is supported such assuccess
orinfo
. This simply adds a class to the element for exampleis-success
and so can be used with your own color modifiers.size
- This is a string value and determines the size of the message. Any size property from Bulma is supported such aslarge
orsmall
. This simply adds a class to the element for exampleis-large
and so can be used with your own size modifiers.
Showing/hiding a message
In some situations, you may wish to show/hide a message via Javascript. Creating a message via the Javascript API returns the message
object allowing you to call the show()
and hide()
messages on it.
Bulma.create('message', {
title: 'Optional title',
body: 'I\'m a large message.',
parent: document.getElementById('size-message')
}).show();
Without Javascript
If you would rather stay away from writing your own Javascript, you don’t have too! BulmaJS extends the message component’s HTML to allow you to specify the options via data attributes. The only one you will need to use is the data-dismiss-interval
this will take an integer of the number of milliseconds to wait before hiding the message.
If you would like to provide the user with the ability to dismiss a message, simply include the delete button!