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

vue-expose-inject

v1.0.0

Published

A React context-like solution for Vue.js

Downloads

142

Readme

A React context-like solution for Vue.js

Latest Version on NPM Software License Build Status

Exposes a set of properties to all of a components descendants.

// Expose a property...
const vm = new Vue({
    mixins: [expose],

    data: () => ({
        bus: new Bus(),
    }),

    expose() {
        return {
            bus: this.bus,
        };
    },
});

// ...to be able to inject it in a child component
const child = new Vue({
    parent: vm,

    computed: {
        ...inject(['bus']),
    },
});

child.bus; // EventBus instance

Postcardware

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.

You're free to use this package (it's MIT-licensed), but if it makes it to your production environment we'd appreciate if you send us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.

The best postcards will get published on the open source page on our website.

Install

You can install the package via yarn:

yarn add vue-expose-inject

Use Cases

This package is based on React's context feature. Exposes and inject are useful for giving your components access to global-ish objects, like event busses or authentication data. Expose/inject can make your application harder to reason about, and depends on a certain hierarchy with your components, so use with care!

Usage

Child components can inject properties that are exposed by one of their ancestors. This goes beyond parent-child communitation, the distance between the parent and child, grandchild, etc. doesn't matter.

To get started, expose an object from a parent component by adding the expose mixin and an expose function, which returns the object:

// Parent.js

import { expose } from 'vue-expose-inject';

export default {
    mixins: [expose],

    expose() {
        return {
            bus: new Bus(),
        };
    },
}

Vue instance properties can also be exposed by passing their names in an array:

export default {
    mixins: [expose],

    data: () => ({
        bus: new Bus(),
    }),

    expose: ['bus'],
}

Descendant components can then inject the property using the inject helper function, which uses the same syntax as Vuex's map helpers:

// Child.js

import { inject } from 'vue-expose-inject';

export default {
    parent: vm,

    computed: {
        ...inject(['bus']),
    },
}

If you try to inject a property that hasn't been exposed by an ancestor, an error gets thrown

Injected properties can be renamed by passing in an object instead of an array:

export default {
    // ...

    computed: {
        ...inject({
            myBus: 'bus',
        }),
    },
}

If you're not using the spread operator, you can assign the properties:

export default {
    // ...
    
    computed: Object.assign(inject(['bus']), {
        // My computed properties...
    }),
}

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ npm run test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please contact Sebastian De Deyne instead of using the issue tracker.

Credits

About Spatie

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.

License

The MIT License (MIT). Please see License File for more information.