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

husky-event-notify

v0.1.13

Published

--- > 这是一个基于发布订阅模式的消息队列框架,可用于`react`做组件间的事件通知.最好是没有任何关系并且不存在数据交互的事件通知,因为有数据的事件通知将会导致数据流的混乱.当然用于有数据传输的事件通知也没有什么不可,这个小框架也是具备这个功能的,哈哈!!

Downloads

19

Readme

react-component-event-queue 基于发布订阅模式的事件通知方式在react上的实践


这是一个基于发布订阅模式的消息队列框架,可用于react做组件间的事件通知.最好是没有任何关系并且不存在数据交互的事件通知,因为有数据的事件通知将会导致数据流的混乱.当然用于有数据传输的事件通知也没有什么不可,这个小框架也是具备这个功能的,哈哈!!

  1. API列表

    • subscribe(eventName, eventFunc) :订阅一个事件,同时返回一个eventHandle

      用来订阅一个事件,不可重复调用,会导致绑定多个事件

      • eventName:订阅的事件名称,
      • eventFunc:接收到订阅事件时的操作,事件携带的data将会以第一个参数传递给该函数参数
    • run(eventName, data):触发一个事件到所有的订阅者

      事件发生时用来通知订阅者,会执行订阅时传入的回调函数

      • eventName:发布的事件名称
      • data:发布事件的时候携带的数据,推荐用{key:value}形式
    • cancel(eventName, eventHandle):取消一个事件(取消订阅)

      用来取消订阅的事件,如果eventHandle不传,将会把整个事件删除

  2. 框架说明

    • UML图 UML

      • EventQueue:事件队列管理类
      • EventHandleManager:事件句柄管理类
      • EventManager: 事件回调管理类
    • 框架运行原理 队列管理图: map

      该框架在运行时一直维护着两个队列,说是队列,其实是两个Map,一个是eventMap,称之为事件回调队列,一个是eventHandleMap,称之为事件句柄队列.

      • eventMap: 由EventManager管理. 该map中每一项都是key=>value格式. 其中key为自动生成的不重复的uuid,用来做该回调时间的唯一key值,可以通过该key直接找到该回调事件. value为函数,回调函数,订阅者订阅事件的时候传入
      • eventHandleMap: 由EventHandleManager管理. 该map中每一项都是key=>value格式. 其中key值为用户自定义的函数名称,可用于订阅者订阅该事件. value为一个数组,包含多个在eventMap中的key,可以通过valueeventMap中找到事件回调函数
    • 流程说明:

      • 订阅流程:

        1. 组件1调用EventQueue.publish('EVENT1'),发布一个事件,此时EventHandleManage将会在eventHandleMap中添加一个事件句柄,此时该队列中的数据为{'EVENT1'=>[]}
        2. 组件2调用EventQueue.subscribe('EVENT1',function(){})订阅EVENT1,此时EventManager将会在eventMap中添加一个事件回调函数,此时该队列中的数据为
        {'02469657-1765-4282-8288-9aac44edfb83'=>function(){}}

        接着EventHandleMap将会将该事件回调函数的key,也就是句柄加入到EVENT1的事件句柄队列中,此时该队列的数据为

        {'EVENT1'=>['02469657-1765-4282-8288-9aac44edfb83']}
        1. 组件3调用EventQueue.subscribe('EVENT1',function(){})订阅EVENT1eventMap中的数据为
        {'02469657-1765-4282-8288-9aac44edfb83'=>function(){},
        'f85bb99b-5717-4a48-9764-5879c72e5fac'=>function(){}}

        eventHandleMap中的数据为

        {'EVENT1'=>['02469657-1765-4282-8288-9aac44edfb83',
                    'f85bb99b-5717-4a48-9764-5879c72e5fac']}
        1. 如果这时候3中的组件调用的是EventQueue.subscribe('EVENT2',function(){}),注意此时EVENT2并未发布,但是并不会影响该程序运行,它将会自动发布该事件,此时eventMap中的数据为
        {'02469657-1765-4282-8288-9aac44edfb83'=>function(){},
         'f85bb99b-5717-4a48-9764-5879c72e5fac'=>function(){},
         '90543d90-759e-4c2d-8389-a4d6b49531d0'=>function(){}}

        ,eventHandleMap中的数据为

        {'EVENT1'=>['02469657-1765-4282-8288-9aac44edfb83',
                    'f85bb99b-5717-4a48-9764-5879c72e5fac'],
         'EVENT2'=>['90543d90-759e-4c2d-8389-a4d6b49531d0']}
        1. 当组件1调用EventQueue.run('EVENT1'),则EventHandleManager将会找出keyEVENT1中的句柄,同时根据句柄去eventMap中找到所有的事件毁掉函数并执行,这时候,所有订阅了该事件的订阅的将会执行他们订阅该事件时绑定的额回调函数.
        2. 当组件2或者3调用EventQueue.cancle('Event1','02469657-1765-4282-8288-9aac44edfb83')时,将会从eventHandleMap中删除掉EVENT1key=02469657-1765-4282-8288-9aac44edfb83的记录,并从eventMap中将key=02469657-1765-4282-8288-9aac44edfb83的记录删除,以保持队列整洁.
        3. 当组件1调用EventQueue.cancel('EVENT1)时,将会从eventHandleMapkey=EVENT1的记录直接删除,从而所有的订阅者将无法订阅该事件,并且所有的事件回调函数将从eventMap中移除
  3. 项目运行方式

    • npm install : 安装依赖包
    • npm start : 运行项目
    • npm run test : 运行单元测试
    • npm run build :打包项目