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

@homing/wechat

v1.1.3

Published

Homing in wechat.

Downloads

14

Readme

@homing/wechat

@homing/wechat 是一个用于微信小程序的状态管理库。

✨特性

它利用homing库为小程序的页面和组件提供了响应式功能。

  • 自动观察: 通过 autoObserver 将页面和组件自动变为响应式的观察者。
  • 共享 store: 多个页面或组件之间共享同一数据源。
  • data 响应式更新: data 之间相互依赖自动更新。
  • props 响应式更新: dataprops 之间相互依赖自动更新。
  • 最小更新: 只有真正更改的数据部分会被更新。
  • 聚合更新: 在16ms内的多次更新会合并为一次,减少性能开销。

这些特性的目的是提高数据的响应性,使数据更易于管理,并优化性能。

📦安装

确保安装并了解 homing 的使用。

npm i @homing/wechat

使用

@homing/wechat 提供了以下 API

  • observerPageParams: 观察页面参数
  • observerComponentParams: 观察组件参数
  • observerPage: 观察页面
  • observerComponent: 观察组件
  • ReactivePage: 响应式页面
  • ReactiveComponent: 响应式组件
  • autoObserver: 自动观察

观察

首先我们需要先建立 homingwechat 之间的观察关系。

自动观察

为了方便,我们提供了自动观察方法,只需要代码上下文最前方使用 autoObserver

import { autoObserver } from '@homing/wechat';

autoObserver();

这样 @homing/wechat 就会自动注入 PageComponent,将他们变成响应式的观察者。

手动观察

如果你不希望每一个页面和组件都是响应式的,那么你可以使用 ReactivePageReactiveComponent 来分别创建组件和页面。

import { ReactivePage, ReactiveComponent } from '@homing/wechat';

ReactivePage({
    data: {}
})

ReactiveComponent({
    data: {}
})

这样就可以按需使用了。

依赖

接下来我们看下如何使用 homing 创建的 Store

import { userStore } from './store.ts';

Page({
    data: {
        get userInfo(){
            return userStore.userInfo
        }
    }
})

我们只需要在 data 中的 getter 中引用返回即可。

效果

我们可以看看具体使用中会有哪些效果。

共享 store

你可以创建一个共享的 store,并通过使用 observable 使其可观察。

页面内的数据可以基于这个共享store进行定义和更新。

class Store {
  value1 = 1;

  constructor() {
    return observable(this);
  }
}

const store = new Store();

Page({
  data: {
    get value2() {
      return store.value1 + 10;
    }
  }
});

通过直接更改 store 内的值,可以影响依赖于该 store 的页面数据。

store.value1++;

data 响应式更新

使用 get 关键字,你可以定义一个属性,该属性的值取决于其他属性。

例如在页面内,当 value1 的值更改时,由于 value2 是基于 value1 的,value2 的值也会相应地更改。

Page({
  data: {
    value1: 1,
    get value2() {
      return this.data.value1 + 10;
    }
  }
});

更新方式 1

this.data.value1++;

更新方式 2

this.setDate({
  value1: this.data.value1 + 1
});

props 响应式更新

在组件内,你可以使用 properties 定义一个属性,并使用 dataget 关键字使其基于该属性动态更改。

因此如下所示,当 value1 更改时,value2 也会随之更改。

Component({
  properties: {
    value1: {
      type: Number
    }
  },
  data: {
    get value2() {
      return this.properties.value1 + 10;
    }
  }
});

通过依赖收集生成最小的更新数据

在复杂数据类型中,我们会根据数据的路径依赖进行最小范围的更新。

先看如下示例:

class Store {
  info = { infoA: 1, infoB: 2 };

  constructor() {
    return observable(this);
  }
}

const store = new Store();

Page({
  data: {
    get Info() {
      return store.info;
    }
  }
});

当我们更新时:

store.infoA++;

对应的效果:

this.setData({
  'Info.infoA': 2
});

聚合更新

所有更新每 16 毫秒收集一次变更数据,同时触发,减少 setData 的真实触发次数。

先看如下示例:

class Store {
  info = { infoA: 1, infoB: 2 };

  constructor() {
    return observable(this);
  }
}

const store = new Store();

Page({
  data: {
    get Info() {
      return store.info;
    }
  }
});

当我们更新时:

store.infoA++;
store.infoA++;

对应的效果:

this.setData({
  'Info.infoA': 3
});

示例

示例仓库

小程序预览码:

homing_wechat_qrcode

可以打开小程序性能调试,将 Homing 和原生进行性能对比。