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-snackbar-reactive

v1.1.0

Published

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

Downloads

7

Readme

vue3-snackbar-reactive

vue3-snackbar-reactive is a lightweight, reactive snackbar/notification component designed for Vue 3 applications. It offers a simple and flexible way to display temporary messages to the user, such as information, success, error, and warning notifications.

Installation

First, install vue3-snackbar-reactive via npm or yarn:

npm install vue3-snackbar-reactive
# or
yarn add vue3-snackbar-reactive

Setup

To use vue3-snackbar-reactive in your Vue 3 project, follow these steps:

1- Import the SnackbarComponent and SnackbarParam in your main app file (e.g., main.js or main.ts).

import { createApp } from 'vue';
import App from './App.vue';
import { SnackbarComponent, SnackbarParam } from 'vue3-snackbar-reactive';
import 'vue3-snackbar-reactive/styles';

const app = createApp(App);

2- Register the SnackbarComponent and provide the SnackbarParam.

app.component('SnackbarMessage', SnackbarComponent);
app.provide('snackbar', SnackbarParam);

3-a- Add the component to the main layout of your project or wherever you want the snackbar notifications to appear.

<template>
  <div>
    <!-- Your app's content -->
    <snackbarMessage/>
  </div>
</template>

Usage

To display a snackbar/notification, you need to inject the snackbar into your component and use its show method. The show method allows you to specify the message, status (info, success, error, warning), and display time.

1- Import inject from Vue within the component you want to display the notification.

import { inject } from 'vue';

2- Use inject to access the snackbar in the setup function.

setup() {
  const snackbar = inject('snackbar');

  return {
    // Other setup properties
    snackbar,
  };
}

3- Use the snackbar.show method to display a notification.

// Example: Displaying an information message for 3 seconds
snackbar.show('This is an info message.', 'info', 3000);

// Example: Displaying a success message
snackbar.show('Operation successful!', 'success');

The show method parameters are:

message: The message to display.
status: The type of notification (info, success, error, warning). Default is info.
time: The display duration of the message in milliseconds. Default is 3000ms.

Advanced Usage with Slots

vue3-snackbar-reactive supports slot usage for custom notification rendering. If you opt not to use a slot, the component uses its default internal rendering mechanism. Here's how to engage with slots for a personalized touch:

Slot Props

The slot exposes three properties:

message: string - The notification message.
status: 'info' | 'success' | 'error' | 'warning' - The notification type.
visible: boolean - The visibility state of the notification.

Example

Incorporate the component with a slot to tailor its display:

<snackbarMessage>
  <template v-slot:default="{ message, status, visible }">
    <div v-if="visible" :class="`snackbar snackbar-${status}`">
      {{ message }}
    </div>
  </template>
</snackbarMessage>

Styling the Snackbar

You can style the snackbar based on the status prop to differentiate between info, success, error, and warning messages:

.snackbar {
  padding: 10px;
  border-radius: 4px;
  margin: 10px 0;
  color: #fff;
}

.snackbar-info { background-color: #2196F3; }
.snackbar-success { background-color: #4CAF50; }
.snackbar-error { background-color: #F44336; }
.snackbar-warning { background-color: #FFC107; }

Using slots allows you to craft a more detailed and user-centric notification system within your Vue 3 application, enhancing the UX with tailored messaging and styles.