Giter VIP home page Giter VIP logo

svelte-eventbus's Introduction

svelte-eventbus

Simple eventbus realization based on internal Svelte's tools only.

Use when you need handle events from deeply-nested child components without events forwarding.

Features

  • You can set event listeners on Eventbus component and catch any event created with createEventbusDispatcher in any child component.

  • Events are isolated inside of Eventbus component instance. You can have more than one Eventbus in the parent component. Each will listen events from it's child components only.

  • If you have several nested Eventbus components, events will bubble through them while needed event listener will be occurred.

Usage example:

Parent - App.svelte

<script>
    import {Eventbus} from 'svelte-eventbus';
    import Child from './Child.svelte';

    let totalclicks = 0;
</script>

<p>Total clicks: {totalclicks}</p>

<Eventbus on:button_click={()=>totalclicks++}>
    <!-- There can be childs in any nest level-->
    <Child />
</Eventbus>

Nested - Child.svelte

<script>
    import {createEventbusDispatcher} from 'svelte-eventbus';
    const dispatch = createEventbusDispatcher();
</script>

<button on:click={()=>dispatch('button_click')}>Click</button>

svelte-eventbus's People

Contributors

alexxnb avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

svelte-eventbus's Issues

NPM package seems broken

I tried to install svelte-eventbus using pnpm and it seems the package is broken. svelte-eventbus package can't be resolved, there is not dist/ folder, only the sources.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.