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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vuex-action-monitor

v1.0.35

Published

vuex action monitor

Readme

vuex-action-monitor

npm version npm downloads npm license github stars PRs Welcome

Table of Contents / 目录


Introduction

vuex-action-monitor is a Vue 2 plugin that monitors the start and end of all Vuex actions, providing real-time loading state via getters and Vue prototype methods.

vuex-action-monitor 是一个 Vue 2 插件,用于监听所有 Vuex action 的开始和结束状态,通过 getter 和 Vue 原型方法提供实时 loading 状态。

Install

npm install vuex-action-monitor
npm install vuex-action-monitor

Usage

In Store

// store.js or store.ts
import Vue from 'vue'
import Vuex from 'vuex'
import actionMonit from 'vuex-action-monitor'

const actionMonitor = actionMonit({
  log: true,
  key: 'loading',
})

Vue.use(Vuex)
Vue.use(actionMonitor)

const store = new Vuex.Store({
  plugins: [actionMonitor],
  state: {},
  mutations: {},
  actions: {
    async foo(context, payload) {
      await new Promise((resolve) => {
        setTimeout(() => resolve(), 3000)
      })
    },
    async bar(context, payload) {
      await new Promise((resolve) => {
        setTimeout(() => resolve(), 3000)
      })
    },
  },
})

export default store

在 store 中引入并注册为插件即可。

In Component

<template>
  <div class="page">
    <!-- count: sum of active counts for ['foo', 'bar'] -->
    <!-- 计数:['foo', 'bar'] 中正在执行的 action 总数 -->
    <span> {{ $loadingC(['foo', 'bar']) }} </span>

    <!-- boolean: true if ANY of ['foo', 'bar'] is active (OR logic) -->
    <!-- 布尔:['foo', 'bar'] 中任意一个在执行即为 true -->
    <span> {{ $loadingB(['foo', 'bar']) }} </span>

    <!-- boolean: true only if ALL of ['foo', 'bar'] are active (AND logic) -->
    <!-- 布尔:[['foo', 'bar']] 中全部在执行才为 true -->
    <span> {{ $loadingB([['foo', 'bar']]) }} </span>

    <!-- raw state access / 直接访问 state -->
    {{ $store.state.loading.b }}
  </div>
</template>

<script>
export default {
  computed: {
    fooLoadingCount() {
      return this.$loadingC('foo')
    },
    fooLoading() {
      return this.$loadingB('foo')
    },
    // you can also use getters directly / 也可以直接使用 getter
    fooLoadingCount2() {
      return this.$store.getters['loading/stateC']('foo')
    },
  },
}
</script>

TypeScript

Import the plugin and its types:

import actionMonit, { type ActionSubOption } from 'vuex-action-monitor'

const options: ActionSubOption = {
  log: true,
  key: 'loading',
  logIgnore: ['noisyAction'],
}

const actionMonitor = actionMonit(options)

导入插件及其类型。

For TypeScript support in Vue components, add the following augmentation to a *.d.ts file in your project:

在 Vue 组件中获得类型提示,需要将以下声明添加到项目中的 *.d.ts 文件:

// If using the default key 'loading' / 使用默认 key 'loading' 时:
import 'vuex-action-monitor/src/shims-vue'

// If using a custom key (e.g. 'api'), declare your own / 使用自定义 key(如 'api')时:
declare module 'vue/types/vue' {
  interface Vue {
    $apiB(path: string | string[]): boolean
    $apiC(path: string | string[]): number
  }
}

Then in your components / 然后在组件中:

export default {
  computed: {
    fooLoading(): boolean {
      return this.$loadingB('foo')   // ✅ typed / 有类型
    },
    totalActive(): number {
      return this.$loadingC(['foo', 'bar'])  // ✅ typed / 有类型
    },
  },
}

Options

| Option | Required | Default | Description | |--------|----------|---------|-------------| | log | no | false | Whether to print action dispatch events to the console / 是否在控制台打印 action 执行日志 | | key | no | 'loading' | The module key registered in the Vuex store / 在 Vuex store 中注册的 module 名称 | | logIgnore | no | [] | Action type names to exclude from logging / 不需要打印日志的 action 名称列表 |

API

actionSubscribe(opt?: ActionSubOption): ActionSubscribeReturn

Returns a plugin function with an install method for Vue.use().

返回一个带有 install 方法的插件函数,可用于 Vue.use()

ActionSubOption

interface ActionSubOption {
  log?: boolean        // enable console logging / 启用控制台日志
  key?: string         // module name in store, default: 'loading' / store 中的 module 名称,默认 'loading'
  logIgnore?: string[] // action names to skip logging / 跳过日志的 action 名称
}

Prototype Methods / 原型方法 (added to / 挂载到 Vue.prototype)

| Method | Signature | Description | |--------|-----------|-------------| | $loadingB | (path: string \| (string \| string[])[]) => boolean | Returns true if any of the given actions is active. Flat arrays use OR logic, nested arrays use AND logic / 给定 action 中任意一个为 active 则返回 true。一维数组为 OR 逻辑,嵌套数组为 AND 逻辑 | | $loadingC | (path: string \| string[]) => number | Returns the sum of active counts for the given actions / 返回给定 action 的 active 计数总和 |

Getters / (registered under / 注册在 store.getters['<key>/...'])

| Getter | Signature | Description | |--------|-----------|-------------| | stateB | (path: string \| (string \| string[])[]) => boolean | Boolean loading state — OR for flat array, AND for nested / 布尔值 loading 状态 — 一维数组 OR,嵌套数组 AND | | stateC | (path: string \| string[]) => number | Sum of loading counts / loading 计数总和 |

License

MIT

⬆ Back to Top / 回到顶部