Socket
Socket
Sign inDemoInstall

vue-msg-bag

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-msg-bag

Simple message bag plugin for Vue.js.


Version published
Maintainers
1
Install size
6.93 kB
Created

Readme

Source

vue-msg-bag

Simple message bag plugin for Vue.js.

Usage

Vue.use(require('vue-msg-bag'), options);

The default objects stored in the message bag (if not parsed) will contain three parameters; msg, type and container.

To tweak the msg stored in the message bag check the parseMsg option below.

<template>
    <div>
        <div v-for="msg in $msgBag.all()" v-if="msg.container === 'main'">
            <div class="alert-{{ msg.type }}">{{ msg.msg }}</div>
        </div>
    </div>

    <router-view></router-view>
</template>

In the above example the messages will automatically clear after some timeout (which can be set in options).

However messages can also be cleared manually by setting timeout to null. In this case the clear(msg) method can be used to remove the item from the message bag.

<div>
    <div v-for="msg in $msgBag.all()" v-if="msg.container === 'main'">
        <div class="alert-{{ msg.type }}">
            {{ msg.msg }}
            <span v-on:click="$msgBag.clear(msg)">x</span>
        </div>
    </div>
</div>

Methods

**success()** **warning()** **error()** **fatal()**

All follow the same format.

this.$msgBag.success(msg);
this.$msgBag.success(msg, 'some-container');

NOTE: The msg can be an Object, Array or String. The array itself can also be an array of objects or strings or even more arrays.

**clear()**

Clear the message bag. A specific message can also be cleared by passing it in.

this.$msgBag.clear();
this.$msgBag.clear(msg);

**all()**

Get all the messages.

this.$msgBag.all();

**parse()**

Manually parse a message without using any queues.

var msgs = this.$msgBag.parse('error', msg);

**keys()**

Manually parse a message by keys where field and msg are the keys to parse on.

var msgs = this.$msgBag.parse(msgs, field, msg);

Options

**timeout**

default: 1500

The timeout before clearing a message. To prevent clearing of messages set timeout to null.

**container**

default: 'main'

Arbitrary field for container name. This allows multiple containers. A good example could be displaying errors in a modal versus in some global container.

**parseMsg**

default: function

Allows parsing of the messages stored in the message bag. Pretty much anything can be stored in the message bag as it's just an array.

Vue.use(require('vue-msg-bag'), {
    parseMsg: function (msg) {
        
        // Do some stuff

        return msg;
    }
});

Keywords

FAQs

Last updated on 22 May 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc