A very lean dependency free javascript library to display toast messages on web pages.
npm install prophetjsA very lean dependency free javascript library to display toast messages on web pages.
This project adheres to Semantic Versioning. Sometimes I do screw up though. Prophet currently supports:
- Chrome upto v26
- Firefox upto v20
- IE upto v10 (sorry)
- Safari upto v5
#### Version 1.0.0
#### Table of Contents
- Installation
- Download
- Install
- Usage
- Simplest Display
- Callback
- Options
- Custom Toast Types
- Contributing
- License
- clone from github git clone https://github.com/binarybaba/prophetjs.git
- Install from bower bower install prophetjs --save
dist
├── css
│ ├── prophet.css
│ └── prophet.min.css
└── js
├── prophet.js
├── prophet.js.map
└── prophet-min.js
`
$3
Include the css and js files in your webpage:
API
Prophet exposes a Message API. All customizations and configurations are done through this API.
To show a message, you will have to instantiate an instance of
Message.The toast message stays for a default duration of 4000 milliseconds or until the user clicks on it. After which,
the toast message is removed from the DOM.
#### Simplest display
var toast = new Message('Harambe for president!').show();#### Callback
You can also provide a callback to every toast message. The callback will be triggered after the toast message is removed or
when the user clicks on it. The callback sends the autogenerated ID of the toast message (which can be overridden).
`
var toast = new Message("Awesome! We'll contact you soon!", function(id){
console.log('Message ID:', id);
// some more code...
});
toast.show();
}
`#### Options
You can also optionally include a set of options as a second argument (followed by the callback if any ) on every toast message. If the values are not implemented, the default values take up.
(Prophet was written in TypeScript which enforces type checking for development. Hence, it implements an interface IMessageOptions. More on that here...)
The following are the keys that options takes
-
id
The id is autogenerated per toast message.
- default: auto-generated
- Type: number
- type
Prophet has 3 presets types: success, error and default. You can also set more presets. Click here to see how. !error
- default:
"default"
- Type: string
- duration
The time each toast message stays on the web page before disappearing. Takes value in miliseconds.
- default: 4000
- Type: number -
class
You can further customize the look of every toast message by providing extra CSS classes to override. Takes a single string of class names seperated by spaces.
- default: ""
- Type: string ##### Example
`
var ppap = new Message("Awesome! Pen Pineapple Apple Pen.", {
id:i++, //i defined somewhere up above
duration: 8000,
type: 'success',
class : 'blue-background white-text thin-border'
}).show();
`Custom Types
You can also add more types by providing the background-color, color and type for more uses. Please note, all the keys are mandatory.`
Message.config.types({
type: "tip",
backgroundColor:"#fafafa",
color:"#313131"
})
`Now you can use the type while invoking a new Message:
`
var ppap = new Message("Awesome! Pen Pineapple Apple Pen.", { type: 'tip'}, function(id){
console.log(id);
})
ppap.show();
``
#### License
Open source under the MIT License.
All rights reserved.