0.1.0 • Published 5 years ago

fiy v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

fiy

基于 React Hooks 的数据流方案。

如何使用

声明 Store

// src/stores/materials.js
export default {
  dataSource: [],
  async refresh() {
    this.dataSourde = await fetch(/* api */);
  },
  add(project) {
    this.dataSourde = [].concat(this.dataSource).concat([project]) };
  },
  async action() {
    // ...
  },
  actionSync() {
    // ...
  },
};

注册 Store

// src/stores/index.js
import materials from './materials';
import Fiy from 'fiy';

const fiy = new Fiy();
fiy.registerStore('materials', materials);

export default fiy;

在 View 中使用

import React, { useEffect } from 'react';
import stores from '@src/stores';

const Material = () => {
  const materials = stores.useStore('materials');
  const {  dataSource } = materials;

  useEffect(() => {
    materials.refresh();
  }, []);

  return (
    <div>
      <h2>Material</h2>
      <div>
        {dataSource.map(({ name }) => name)}
      </div>
    </div>
  );
};

export default Material;
0.1.0

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

0.0.1-0

5 years ago

0.0.0

5 years ago