0.0.6 • Published 2 years ago

@alamtheinnov/flashtoast v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

flashtoast

Install

  npm install --save @alamtheinnov/flashtoast

Configuration

import { flashToast } from '@alamtheinnov/flashtoast';
const app = createApp(App);
app.use(flashToast)
    ...
    .mount('#app');

Declare

In root vue file.

<FlashToast /> 

// OR with all available options

<FlashToast :position="'top-right'" :direction="'rtl'" v-zIndex:3000 v-class:any-class />

CSS inside your app.scss or any.

@import '@alamtheinnov/flashtoast/dist/flashtoast.css';

Usage

Use inject to make available in your component.

import { inject } from 'vue'
export default {
    name: 'ComponentName',
    setup() {
        const toast = inject('toast');

        // Examples
        function showSuccessMessage() {
            toast.success({
                title: 'Success!',
                message: 'Hello world!',
                delay: 50000
            });
        }

        function showInfoMessage() {
            toast.info({
                title: 'Info!',
                message: 'You can\'t perform this action',
                delay: 50000
            });
        }

        function showWarningMessage() {
            toast.warning({
                title: 'Warning!',
                message: 'You can\'t perform this action',
                delay: 50000
            });
        }

        function showErrorMessage() {
            toast.error({
                title: 'Error!',
                message: 'You can\'t perform this action',
                delay: 50000
            });
        }

        return {
            showSuccessMessage,
            showInfoMessage,
            showWarningMessage,
            showErrorMessage
        }
    }
}

Example

Example

Directive

NameTypeDefaultDesciption
classStringCan be use for changing the style.
zIndexString3000You can give z-index of your choice according to your Application.

Props

NameTypeDefaultDesciption
positionString'top-right'To change the position of like, top-right, bottom-right, bottom-left, top-left & center`
directionString'ltr'Change direction according to the language of application, possible options ltr & rtl

License

Flashtoast is open-sourced software licensed under the MIT license.