https://github.com/kyvg/vue3-notification
Vue 3 notification library 💬
https://github.com/kyvg/vue3-notification
Last synced: 4 months ago
JSON representation
Vue 3 notification library 💬
- Host: GitHub
- URL: https://github.com/kyvg/vue3-notification
- Owner: kyvg
- License: mit
- Created: 2021-04-14T21:58:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T21:18:23.000Z (12 months ago)
- Last Synced: 2025-04-15T00:51:38.857Z (8 months ago)
- Language: TypeScript
- Homepage: https://kyvg.github.io/vue3-notification/
- Size: 2.09 MB
- Stars: 390
- Watchers: 3
- Forks: 69
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-vue - @kyvg/vue3-notification - Vue 3 notification library ` 📝 11 days ago` (UI Components [🔝](#readme))
- fucking-awesome-vue - @kyvg/vue3-notification - Vue 3 notification library (Components & Libraries / UI Components)
- awesome-vue - @kyvg/vue3-notification - Vue 3 notification library (Components & Libraries / UI Components)
- awesome-vue - @kyvg/vue3-notification - Vue 3 notification library (Components & Libraries / UI Components)
README
[](https://www.npmjs.com/package/@kyvg/vue3-notification)

## Upgrade to v3.x
### Breaking changes
- `title` and `text` no longer render with [`v-html`](https://vuejs.org/api/built-in-directives.html#v-html). Use `dangerouslySetInnerHtml` prop to render `title` and `text` with [`v-html`](https://vuejs.org/api/built-in-directives.html#v-html)
# Vue.js notifications
This is a fork and port of Vue 2 [vue-notifications](https://github.com/euvl/vue-notification) created by [euvl](https://github.com/euvl) to now support Vue 3. If you're using Vue 2.x use his version.
## Setup
```bash
npm install --save @kyvg/vue3-notification
yarn add @kyvg/vue3-notification
```
Add dependencies to your `main.js`:
```javascript
import { createApp } from 'vue'
import Notifications from '@kyvg/vue3-notification'
const app = createApp({...})
app.use(Notifications)
```
Add the global component to your `App.vue`:
```vue
```
Please note that this library does not inherently support Nuxt 3. To enable compatibility with Nuxt 3, use the [`nuxt3-notifications`](https://github.com/windx-foobar/nuxt3-notifications) wrapper
## Usage
Trigger notifications from your `.vue` files:
```javascript
// simple
this.$notify("Hello user!");
// using options
this.$notify({
title: "Important message",
text: "Hello user!",
});
```
Or trigger notifications from other files, for example, your router:
```javascript
import { notify } from "@kyvg/vue3-notification";
notify({
title: "Authorization",
text: "You have been logged in!",
});
```
Or use Composition API style:
```javascript
import { useNotification } from "@kyvg/vue3-notification";
const { notify } = useNotification()
notify({
title: "Authorization",
text: "You have been logged in!",
});
```
### Migration
#### Vue 2.x syntax
```javascript
Vue.notify({
title: "Vue 2 notification",
});
```
#### Vue 3.x syntax
```javascript
import { notify } from "@kyvg/vue3-notification";
notify({
title: "Vue 3 notification 🎉",
});
```
#### Vue 3.x Composition API syntax
```javascript
import { useNotification } from "@kyvg/vue3-notification";
const notification = useNotification()
notification.notify({
title: "Vue 3 notification 🎉",
});
```
Also you can use [destructuring assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
```javascript
import { useNotification } from "@kyvg/vue3-notification";
const { notify } = useNotification()
notify({
title: "Vue 3 notification 🎉",
});
```
### Component props
The majority of settings for the Notifications component are configured using props:
```vue
```
Note that all props are optional.
| Name | Type | Default | Description |
| ---------------- | ------------- | ------------------ | ----------------------------------------------------------------------------------------------------------------------- |
| position | String/Array | 'top right' | Part of the screen where notifications will pop out |
| width | Number/String | 300 | Width of notification holder, can be `%`, `px` string or number.
Valid values: '100%', '200px', 200 |
| classes | String/Array | 'vue-notification' | List of classes that will be applied to notification element |
| group | String | null | Name of the notification holder, if specified |
| duration | Number | 3000 | Time (in ms) to keep the notification on screen (if **negative** - notification will stay **forever** or until clicked) |
| speed | Number | 300 | Time (in ms) to show / hide notifications |
| animation-type | String | 'css' | Type of animation, currently supported types are `css` and `velocity` |
| animation-name | String | null | Animation name required for `css` animation |
| animation | Object | Custom | Animation configuration for [Velocity](#Animation]) animation |
| max | Number | Infinity | Maximum number of notifications that can be shown in notification holder |
| reverse | Boolean | false | Show notifications in reverse order |
| ignoreDuplicates | Boolean | false | Ignore repeated instances of the same notification |
| closeOnClick | Boolean | true | Close notification when clicked |
| pauseOnHover | Boolean | false | Keep the notification open while mouse hovers on notification |
| dangerouslySetInnerHtml | Boolean | false | Use [v-html](https://vuejs.org/api/built-in-directives.html#v-html) to set `title` and `text` |
### Component events
| Name | Type | Description |
| ---------------- | -------------------------------- | -------------------------------------------- |
| click | (item: NotificationItem) => void | The callback function that is triggered when notification was clicked
| destroy | (item: NotificationItem) => void | The callback function that is triggered when notification was destroyes
| start | (item: NotificationItem) => void | The callback function that is triggered when notification was appeared
### API
Notifications are triggered via the API:
```javascript
this.$notify({
// (optional)
// Name of the notification holder
group: 'foo',
// (optional)
// Title (will be wrapped in div.notification-title)
title: 'This is the title',
// Content (will be wrapped in div.notification-content)
text: 'This is some content',
// (optional)
// Class that will be assigned to the notification
type: 'warn',
// (optional, override)
// Time (in ms) to keep the notification on screen
duration: 10000,
// (optional, override)
// Time (in ms) to show / hide notifications
speed: 1000
// (optional)
// Data object that can be used in your template
data: {}
})
```
To remove notifications, include the `clean: true` parameter.
```javascript
this.$notify({
group: "foo", // clean only the foo group
clean: true,
});
```
### Plugin Options
Configure the plugin itself using an additional options object:
```js
app.use(Notifications, { name: "alert" });
```
All options are optional:
| Name | Type | Default | Description |
| ------------- | ------ |----------------|-------------------------------------------------------------------------------|
| name | String | notify | Defines the instance name. It's prefixed with the dollar sign. E.g. `$notify` |
| componentName | String | Notifications | The component's name |
| velocity | Object | undefined | A Velocity library object (see **Animation**) |
> **Note**: setting `componentName` can cause issues when using SSR.
## TypeScript Support
This library is written with TypeScript. Since the notification component is registered globally, you need to register its types.
You can do this manually:
```ts
import type { FunctionalComponent } from 'vue';
import type { Notifications } from '@kyvg/vue3-notification';
declare module 'vue' {
export interface GlobalComponents {
Notifications: FunctionalComponent;
}
}
```
Or, you can use built-in `unplugin-vue-components` resolver. This resolver allows you to seamlessly integrate this library with Vue projects using [`unplugin-vue-components`](https://github.com/unplugin/unplugin-vue-components). It automates the import of components, making your development process more efficient.
### Installation
To get started, install the necessary packages using npm or yarn:
```bash
npm install --save @kyvg/vue3-notification unplugin-vue-components
# or
yarn add @kyvg/vue3-notification unplugin-vue-components
```
### Configuration
To configure the resolver, update your Vue project's plugin settings. For example, in a Vite project, modify vite.config.js:
```js
import Components from 'unplugin-vue-components/vite';
import NotificationsResolver from '@kyvg/vue3-notification/auto-import-resolver';
export default {
plugins: [
Components({
resolvers: [NotificationsResolver()],
}),
],
}
```
Specify the custom component's name if you have configured it:
```js
// main.js
// ...
app.use(Notifications, { componentName: "Alert" });
```
Note that component name should be in PascalCase
```js
import Components from 'unplugin-vue-components/vite';
import NotificationsResolver from '@kyvg/vue3-notification/auto-import-resolver';
export default {
plugins: [
Components({
resolvers: [NotificationsResolver("Alert")],
}),
],
}
```
## Features
### Position
Position the component on the screen using the `position` prop:
```vue
```
It requires a `string` with **two keywords** for vertical and horizontal postion.
Format: `" "`.
- Horizontal options: `left`, `center`, `right`
- Vertical options: `top`, `bottom`
Default is `"top right"`.
### Width
Width can be set using a `number` or `string` with optional `%` or `px` extensions:
```vue
```
### Type
Set the `type` of a notification (**warn**, **error**, **success**, etc) by adding a `type` property to the call:
```js
this.$notify({ type: "success", text: "The operation completed" });
```
This will add the `type` (i.e. "success") as a CSS class name to the `.vue-notification` element.
See the [Styling](#styling) section for how to hook onto the class and style the popup.
### Groups
For different classes of notifications, i.e...
- authentication errors (top center)
- app notifications (bottom-right)
...specify the `group` attribute:
```vue
```
Trigger a notification for a specific group by specifying it in the API call:
```javascript
this.$notify({ group: "auth", text: "Wrong password, please try again" });
```
## Customisation
### Styling
Vue Notifications comes with default styling, but it's easy to replace with your own.
Specify one or more class hooks via the `classes` prop on the global component:
```vue
```
This will add the supplied class/classes to individual notification elements:
```html
Info
You have been logged in
```
Then include custom css rules to style the notifications:
```scss
// style of the notification itself
.my-notification {
/*...*/
// style for title line
.notification-title {
/*...*/
}
// style for content
.notification-content {
/*...*/
}
// additional styling hook when using`type` parameter, i.e. this.$notify({ type: 'success', message: 'Yay!' })
&.success {
/*...*/
}
&.info {
/*...*/
}
&.error {
/*...*/
}
}
```
Note that the default rules are:
```scss
.vue-notification {
// styling
margin: 0 5px 5px;
padding: 10px;
font-size: 12px;
color: #ffffff;
// default (blue)
background: #44a4fc;
border-left: 5px solid #187fe7;
// types (green, amber, red)
&.success {
background: #68cd86;
border-left-color: #42a85f;
}
&.warn {
background: #ffb648;
border-left-color: #f48a06;
}
&.error {
background: #e54d42;
border-left-color: #b82e24;
}
}
```
### Content
To completely replace notification content, use Vue's slots system:
```vue
{{ props.item.title }}
```
The `props` object has the following members:
| Name | Type | Description |
| ----- | -------- | ------------------------------------ |
| item | Object | Notification object |
| close | Function | A function to close the notification |
### Animation
Vue Notification can use the [Velocity](https://github.com/julianshapiro/velocity) library to power the animations using JavaScript.
To use, manually install `velocity-animate` & pass the library to the `vue-notification` plugin (the reason for doing that is to reduce the size of this plugin).
In your `main.js`:
```javascript
import { createApp } from 'vue'
import Notifications from '@kyvg/vue3-notification'
import velocity from 'velocity-animate'
const app = createApp({...})
app.use(Notifications, { velocity })
```
In the template, set the `animation-type` prop:
```vue
```
The default configuration is:
```js
{
enter: { opacity: [1, 0] },
leave: { opacity: [0, 1] }
}
```
To assign a custom animation, use the `animation` prop:
```vue
```
Note that `enter` and `leave` can be an `object` or a `function` that returns an `object`:
```javascript
computed: {
animation () {
return {
/**
* Animation function
*
* Runs before animating, so you can take the initial height, width, color, etc
* @param {HTMLElement} element The notification element
*/
enter (element) {
let height = element.clientHeight
return {
// animates from 0px to "height"
height: [height, 0],
// animates from 0 to random opacity (in range between 0.5 and 1)
opacity: [Math.random() * 0.5 + 0.5, 0]
}
},
leave: {
height: 0,
opacity: 0
}
}
}
}
```
## Programatically Closing
```javascript
const id = Date.now() // This can be any unique number
this.$notify({
id,
text: 'This message will be removed immediately'
});
this.$notify.close(id);
```
Or with composition API style:
```javascript
import { useNotification } from "@kyvg/vue3-notification"
const notification = useNotification()
const id = Date.now() // This can be any unique number
notification.notify({
id,
text: 'This message will be removed immediately'
})
notification.notify.close(id)
```
## FAQ
Check closed issues with `FAQ` label to get answers for most asked questions.
## Development
To contribute to the library:
```bash
# build main library
npm install
npm run build
# run tests
npm run test
# watch unit tests
npm run unit:watch
```