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-subscription

v1.0.6

Published

A type-safe 🔥 & tiny ⭐️ super-charged ref ⚡️ / eventBus replacement in Vue 💚.

Downloads

20

Readme

vue-subscription

A type-safe 🔥 and tiny ⭐️ super-charged ref ⚡️ or eventBus replacement in Vue 💚. Compatible with Vue 2 ( 2.7.0 and above ) and Vue 3. Provides ESM and Common JS exports.

Find it on npm - https://www.npmjs.com/package/vue-subscription.

Table of Contents

Introduction

Only 1.3 kB or gzip: 0.7 kB in size, the useSubscription composable takes an initial value and returns an object with a reactive value that is by default shallow and only deep when explicitly enabled. The value property, $value is not automatically unwrapped in template. Additionally, it also provides explicit getter and setter if you like more control over the state.

The package also provides a simple way to create reactive subscriptions that can be used to observe changes to a value and execute a list of subscribers when the value changes. It also includes methods to mutate the value for complex objects and trigger subscribers manually if and when needed rarely. Check out the usage examples.

Installation

To use this package, you can install it via npm (or yarn or pnpm):

# In your console
npm install vue-subscription
// In your file
import { useSubscription } from 'vue-subscription';
const mySubscription = useSubscription('hello'); // Type will be string

API

Using in template

To display the state in template, you can either use the $read or $get. If you need 2-way data binding you can also use $value.

<template>
	<div>{{ mySubscription.$value }}</div>
	<!-- Readonly version of the state -->
	<div>{{ mySubscription.$get() }}</div>
	<div>{{ mySubscription.$read.value }}</div>
</template>

$value / $get()

This property/method returns the current value of the subscription.

const value = mySubscription.$value;
const value = mySubscription.$get();

$value = val / $set(val)

This property/method sets the current value of the subscription. Also the $set can be passed down a child component to update the state in parent.

mySubscription.$value = 42;
mySubscription.$set(42);

The $set method can also accept a mutator function that takes the current value as an argument and returns the new value:

mySubscription.$set(value => value + 1);

$read

This is a read-only version of the subscription value. It wraps the subscription in a readonly ref.

const readonlySubscription = mySubscription.$read;
console.log(readonlySubscription.value);

$addSub

This method adds a subscriber to the subscription. A subscriber is a function that takes the new value as an argument and is executed whenever the value changes. The subscriber can be an async function. It is cleaned up automatically inside components.

function logValue(value) {
	console.log(`New value: ${value}`);
}

mySubscription.$addSub(logValue);

$deleteSub

This method removes a subscriber from the subscription.

subscription.$deleteSub(logValue);

$clearSubs

Clears all subscribers. Easy for cleanup in beforeUnmount.

subscription.$clearSubs();

$triggerSubs

This method manually triggers all subscribers to the subscription. Should only be needed rarely.

subscription.$triggerSubs();

$mutate

This method mutates the subscription value with a mutator function. The mutator function takes the current value as an argument and returns the new value.

subscription.$mutate(value => {
	value.name = 'John';
	return value;
});

Usage

All examples given below can be copy pasted into a file and tried out if needed.

Basic Example

const mySubscription = useSubscription('hello'); // Type will be string

// Get the current value
console.log(mySubscription.$value); // 'hello'

// Subscribers can `async`
async function mySubscriber(value: string) {
	return new Promise((resolve, reject) => {
		setTimeout(() => {
			console.log(`The value is now: ${value}`);
		}, 1);
	});
}

// Add a subscriber
mySubscription.$addSub(mySubscriber);
// Manually trigger the subscribers if needed(rarely)
mySubscription.$triggerSubs(); // 'The value is now: hello'

// Set the value
mySubscription.$value = 'world';

// Subscriber runs here -  'The value is now: world'

// Remove a subscriber. It is cleaned up automatically inside components.
mySubscription.$deleteSub(mySubscriber);
// OR to remove all subs at once.
mySubscription.$clearSubs();

// Use the readonly version of the value
const myReadonlyValue = mySubscription.$read;
console.log(myReadonlyValue.value); // 'world'

Complex state

Example uses a complex objects which won't be tracked deeply by default. Unless the subscription is used in template, watch, watchEffect or computed you don't need to add the deep flag.

const mySubscription = useSubscription(
	{
		user: {
			name: 'John',
			isActive: false
		}
	},
	// You can pass `true` as the deep flag to make the subscription deeply reactive if used in templates
	true
);
// Add a subscriber
mySubscription.$addSub(data => {
	console.log(`The data is now: ${JSON.stringify(data)}`);
});

function myMutator(data: typeof mySubscription.$value) {
	data.user.isActive = true;
	return data;
}

// Trigger the subscribers
mySubscription.$triggerSubs(); // 'The data is now: { user: { name: 'John', isActive: false }}'

function tester() {
	// Mutate the value (only works if the value is an object)
	mySubscription.$mutate(myMutator);
	// Subscriber runs here -  'The data is now: { user: { name: 'John', isActive: true }}'
}
tester();

Destructured ( Getter and Setter )

You can also destructure the properties to have a seperate getter and setter.

const { $get, $set, $read, $addSub } = useSubscription('hello');

// Get the current value
console.log($get()); // 'hello'

function mySubscriber(value: string) {
	console.log(`The value is now: ${value}`);
}

// Add a subscriber
$addSub(mySubscriber);

// Set the value
$set('world');

// Subscriber runs here -  'The value is now: world'

$set(val => `Hello ${val}`);
// Subscriber runs here -  'The value is now: Hello world'

// Use the readonly version of the value
console.log($read.value); // 'Hello world'

Type-Definition

T is a generic.

function useSubscription<T>(
	value: T,
	deep?: boolean
): {
	$value: T;
	$get: () => T;
	$set: (value: T | ((value: T) => T)) => void;
	$read: Readonly<Ref<T>>;
	$addSub: (subscriber: (value: T) => Promise<void> | void) => void;
	$deleteSub: (subscriber: (value: T) => Promise<void> | void) => void;
	$clearSubs: () => void;
	$triggerSubs: () => void;
	$mutate: (mutator: (value: T) => T) => void;
};

TLDR

Arguments

value - The initial value of the subscription. Throws an error if value is absent.

deep (optional) - Whether to create a shallow or deep reactive subscription. Defaults to false. Unless the subscription is used in template, watch, watchEffect or computed you don't need to add the deep flag.

Return Value

An object with the following properties (Type def above):

  • $value - The current value of the subscription. Doesn't unwrap in template.
  • $get - A function that returns the current value of the subscription.
  • $set - A function that sets the value of the subscription. If a function is passed, it will receive the current value of the subscription as its argument and should return the new value.
  • $read - A readonly reactive reference to the current value of the subscription.
  • $addSub - A method for adding a subscriber to the subscription. It can be async. The subscriber is a function that will be executed whenever the value of the subscription changes. It can provides the new value of the subscription as its argument and is cleaned up automatically inside components.
  • $deleteSub - A method for removing a subscriber from the subscription.
  • $clearSubs - A method for clearing all subscribers.
  • $triggerSubs - A method for manually triggering all subscribers. Should only be needed rarely.
  • $mutate - A method for updating the value of the subscription with a function that takes the current value as its argument and returns the new value. This should only be used for updating complex objects.

Demo

The demo shows the subscription being used with the eventBus APIs. You can checkout the demo to test locally or on StackBlitz. Make sure to run npm install in the root folder or copy the Vue components over from the demo here :-
https://github.com/srav001/vue-subscription/tree/main/demo