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

v-tostini

v1.5.1

Published

Toasts notifications plugin for Vue.js 2.x

Downloads

509

Readme

v-Tostini

npm Lint License

v-Tostini is really plain toast notifications mechanism for Vue.js 2.x. There is no CSS included, which means that you need to add your own flavor for it. Just like with tostini - no one will tell you how it should look like ;)

Demo

https://codesandbox.io/embed/vtostini-demo-btc4g

Getting Started

Prerequisites

This package is using UMD pattern.

Usage

  1. Install it (or download):

    npm i v-tostini
  2. Require in your project:

    const vTostini = require('v-tostini');
  3. Tell Vue to use it:

    Vue.use(vTostini);
  4. Now simply place tostini-plate in your HTML:

    <tostini-plate />
  5. Call from any Vue instance:

    this.$tostini({
      message: 'Delicious!',
      type: 'success'
    });

Usage with Nuxt.js

You can easely use tostini inside Nuxt.js by creating a plugin:

import Vue from 'vue'
import tostini from 'v-tostini'

Vue.use(tostini)

// If you want to use tostini inside your store modules
// the same way you use it in components
// you will need to inject it
export default (ctx, inject) => {
  inject('tostini', Vue.prototype.$tostini)
}

tostini supports >2%, IE11, Safari 10 but if your Nuxt project has different browser targets - you can easely compile it yourself from the available source. To do that you need to add transpile section to you nuxt.config.js build settings:

build: {
    transpile: ['v-tostini']
}

don't forget to target src folder inside the plugin

import Vue from 'vue'
import tostini from 'v-tostini/src'

Features

Use String as an argument

You can also use as argument a string:

this.$tostini('Yupi!');

Above will be the same as:

this.$tostini({
  message: 'Yupi!'
});

Notification Duration

By default duration is calculated by the length of given message. The formula I have created is based on an experiment carried out on colleagues from work. I checked what is the average time that an adult needs to notice and read the technical text that one saw for the first time. Since I have implemented it, complaining that someone did not manage to read the text - ended :)

Of course you can set your own duration:

this.$tostini({
  message: 'This message will be visible for 2s.',
  duration: 2000
});

Types

type field in toastini config is set as data-type in added tostini to tostini-plate. So basicly it's up to you how you will use it.

HTML Support

You can display HTML-based message. Just set html: true flag:

this.$tostini({
  message: 'Wow! Great <b>success</b>!',
  html: true
});

Caution! Sanitization needs to be done on your side!

Custom Template

It's possible to create custom template for your messages:

<tostini-plate class="tostini-plate" v-slot="{ type, message }">
  <div class="tostini" :data-type="type">
    {{ message }}
  </div>
</tostini-plate>

Transitions

You can specify transition name with:

<tostini-plate transition-name="fade" />

Close Button in the Message

<tostini-plate class="tostini-plate" v-slot="{ type, message, close }">
  <div class="tostini" :data-type="type">
    {{ message }}
    <button @click="close">OK</button>
  </div>
</tostini-plate>

Exmaple CSS

So this is CSS that I'm using. As you can see I'm using types:

  • default
  • success
  • error
  • warning
  • info
.tostini-plate {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto !important;
}
.tostini-plate .tostini {
  padding: 0.75rem;
  width: calc(100vw - 3.5rem);
  margin: 0.5rem auto;
  max-width: 40rem;
  color: white;
}
.tostini-plate .tostini[data-type="default"] {
  background: rgba(0, 0, 0, 0.5);
}
.tostini-plate .tostini[data-type="success"] {
  background: rgba(45, 148, 27, 0.95);
}
.tostini-plate .tostini[data-type="error"] {
  background: rgba(148, 27, 27, 0.95);
}
.tostini-plate .tostini[data-type="warning"] {
  background: rgba(216, 143, 9, 0.95);
}
.tostini-plate .tostini[data-type="info"] {
  background: rgba(0, 147, 204, 0.95);
}

Contributors

License

This project is licensed under the Apache-2.0 - see the LICENSE file for details