npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue3-headless-flash

v0.1.46

Published

Vue3 headless flash component, make your flash looks like yours

Downloads

356

Readme

Vue 3 Headless Flash (Toaster)

Headless refers to no css by default at all. It allows you to flash the message with your custom template as you want.

Demo: https://vue3-headless-flash.netlify.app/

Installation

yarn add vue3-headless-flash

Uses

Basic uses

Step 1: Import the FlashContainer and Flash

// App.vue

<script>
    import { defineComponent } from "vue"
    import { Flash, FlashContainer } from "vue3-headless-flash"
    import "vue3-headless-flash/dist/style.css"

    export default defineComponent({
        components: {
            FlashContainer
        },
        setup() {
            return {
                Flash
            }
        }
    })
</script>

Step 2: Place the FlashContainer component in bash layout. Addling a button as well to demonstrate the flash action.


<template>
    <button @click="Flash.success('Hello I am success')"></button>
    <FlashContainer/>
</template>

Complete Example Looks Like:

<template>
    <button @click="Flash.success('Hello I am success')"></button>
    <FlashContainer/>
</template>
<script>
    import { defineComponent } from "vue"
    import { Flash, FlashContainer } from "vue3-headless-flash"

    export default defineComponent({
        components: {
            FlashContainer
        },
        setup() {
            return {
                Flash
            }
        }
    })
</script>
Custom Layout
<template>
    <FlashContainer
        :option="OPTIONS"
        :timeout="5000"
        wrapper-class="absolute w-[200px] right-[20px] bottom-[20px]"
        v-slot="slotProps">
        <div class="relative flex justify-between rounded-md px-6 py-3 mb-2" :class="slotProps.option.class">
            <div class="flex items-center">
                <button type="button" @click.stop="slotProps.click(slotProps.flash.timestamp)">
                    &times;
                </button>
                <div class="ml-2" :class="slotProps.option.textClass">
                    {{ slotProps.flash.message }}
                </div>
            </div>
            <component :is="slotProps.option.icon" class="w-6 h-6" :class="slotProps.option.iconClass"/>
        </div>
    </FlashContainer>
</template>
<script>
    import { defineComponent } from "vue"
    import { SucessIcon }      from "./IconPath"
    import { ErrorIcon }       from "./IconPath"
    import { WarningIcon }     from "./IconPath"
    import { InfoIcon }        from "./IconPath"

    const OPTIONS = {
        success: {
            icon: SuccessIcon,
            class: "bg-green-500",
            textClass: "text-white",
            iconClass: "stroke-[#fff]",
        },
        error: {
            icon: ErrorIcon,
            class: "bg-red-200",
            textClass: "text-red-500",
            iconClass: "stroke-red-500",
        },
        info: {
            icon: InfoIcon,
            class: "bg-gray-300",
            textClass: "text-gray-600",
            iconClass: "stroke-gray-600",
        },
        warning: {
            icon: WarningIcon,
            class: "bg-yellow-400",
            textClass: "text-gray-800",
            iconClass: "stroke-gray-800",
        },
    }

    export default defineComponent({
        setup() {
            return {
                OPTIONS
            }
        }
    })
</script>

Here all the options properties you have passed as params will access through slot's properties.

License

MIT © https://github.com/JoBinsJP/vue3-headless-flash