https://github.com/markmead/alpinejs-notifications
Simple notifications in your projects using Alpine JS 🙋♀️
https://github.com/markmead/alpinejs-notifications
alpine-js alpinejs alpinejs-notification alpinejs-plugin javascript-notification notifications
Last synced: 2 months ago
JSON representation
Simple notifications in your projects using Alpine JS 🙋♀️
- Host: GitHub
- URL: https://github.com/markmead/alpinejs-notifications
- Owner: markmead
- License: mit
- Created: 2022-10-31T11:30:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T11:05:48.000Z (about 1 year ago)
- Last Synced: 2024-10-14T08:24:38.518Z (8 months ago)
- Topics: alpine-js, alpinejs, alpinejs-notification, alpinejs-plugin, javascript-notification, notifications
- Language: JavaScript
- Homepage: https://js.hyperui.dev/examples/alert-notifications
- Size: 28.3 KB
- Stars: 29
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alpine JS Notifications
Simple notifications in your projects using Alpine JS 🙋♀️
## Install
### With a CDN
```html
```
### With a Package Manager
```shell
yarn add -D alpinejs-notifynpm install -D alpinejs-notify
``````js
import Alpine from 'alpinejs'
import notifications from 'alpinejs-notify'Alpine.plugin(notifications)
Alpine.start()
```## Example
Let's create a simple notification that appears in the top right of the page and
disappears after 5s.```html
Notify
{notificationText}
```### Options
`notificationText`
This is the string that will be rendered in the notification.
_It is not part of the {}_
`wrapperId`
This is the wrapping element of the notification.
`templateId`
This is the notification component HTML that will be added to the wrapper.
`templateFile`
This is an alternative choice to `templateId` which will get the notification
component HTML from the file specified.`autoClose`
This will set the attribute `data-notify-show` to `false` once the duration (in
milliseconds) is up.`autoRemove`
Here you have two options.
**Duration**
If you use a duration (in milliseconds) then it will remove the notification
from the DOM once duration is up.This works for most situations, however it can get a little tricky calculating
when the removal should happen when working with animations. This is what the
boolean approach solves.**Boolean**
Using a boolean will trigger the removal of the notification once the animation
has ended. It will play the animation in full and then remove once complete.`classNames`
A string of classes to add to the notification.
### Default Options
You don't need to pass the same options for multiple notifications. If all your
notifications are using the options from the example you can do this instead.```html
window.notificationOptions = {
wrapperId: 'notificationWrapper',
templateId: 'notificationAlert',
autoClose: 3000,
autoRemove: 4000,
}```
Then all notifications that don't specify their own `notificationOptions` will
use this.## Animating Notifications
In this example I'll be using Tailwind CSS, but you can easily replicate this
with CSS.Let's say you want the notification to slide in from the right and then slide
out, you could do the following.```html
```
The `animate-slide-` classes have been added to the Tailwind CSS config.
```js
module.exports = {
theme: {
extend: {
animation: {
'slide-in': 'slide-in 0.15s ease-in forwards',
'slide-out': 'slide-out 0.15s ease-in forwards',
},
keyframes: {
'slide-in': {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0)' },
},
'slide-out': {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(100%)' },
},
},
},
},
}
```## Dismiss Notification
If you want to have dismissible notifications you can add Alpine JS logic to
your notification template.```html
```
## Using a File
If preferred, you can create HTML files for your notification templates.
```html
Notify
```
This is now looking for a file called `notification.html` which might look
something like this.```html
{notificationText}
```It works the exact same as `templateId` but it means you don't have ``
tags in your HTML for your notification templates.## Stats



