@4geit/rct-account-store 中文文档教程
@4geit/rct-account-store
可重复使用的帐户商店包
Demo
可以使用实时故事书查看商店的外观 @ http://react-packages.ws3.4ge.it
Installation
- A recommended way to install @4geit/rct-account-store is through npm package manager using the following command:
npm i @4geit/rct-account-store --save
或使用 yarn
使用以下命令:
yarn add @4geit/rct-account-store
- Depending on where you want to use the store you will need to import the class instance
accountStore
or inject it to your project JS file.
如果您愿意在组件中使用它,那么你必须使用 mobx-react
库提供的 inject
装饰器。
例如,如果你想在你的 App.js
组件中使用这个商店,你可以在 JSX 代码中使用 RctAccountStore 商店,如下所示:
import React, { Component } from 'react'
import { inject } from 'mobx-react'
// ...
@inject('accountStore')
class App extends Component {
handleClick() {
this.props.accountStore.setVar1('dummy value')
}
render() {
return (
<div className="App">
<button onClick={ this.handleClick.bind(this) } >Click here</button>
</div>
)
}
}
如果你愿意在另一个商店类中使用类实例,然后您可以按如下方式导入实例:
import accountStore from '@4geit/rct-account-store'
class DummyStore {
@action doSomething() {
accountStore.setVar1('dummy value')
}
}
- If you want to use the store class in the storybook, add accountStore within
stories/index.js
by first importing it:
import accountStore from '@4geit/rct-account-store'
然后在 stores
数组变量中,在列表末尾添加 accountStore
。
- If you want to use the store class in your project, add accountStore within
src/index.js
by first importing it:
import accountStore from '@4geit/rct-account-store'
然后在 stores
数组变量中,在列表末尾添加 accountStore
。
@4geit/rct-account-store
reusable account store package
Demo
A live storybook is available to see how the store looks like @ http://react-packages.ws3.4ge.it
Installation
- A recommended way to install @4geit/rct-account-store is through npm package manager using the following command:
npm i @4geit/rct-account-store --save
Or use yarn
using the following command:
yarn add @4geit/rct-account-store
- Depending on where you want to use the store you will need to import the class instance
accountStore
or inject it to your project JS file.
If you are willing to use it within a component, then you must use the inject
decorator provided by mobx-react
library.
For instance if you want to use this store in your App.js
component, you can use the RctAccountStore store in the JSX code as follows:
import React, { Component } from 'react'
import { inject } from 'mobx-react'
// ...
@inject('accountStore')
class App extends Component {
handleClick() {
this.props.accountStore.setVar1('dummy value')
}
render() {
return (
<div className="App">
<button onClick={ this.handleClick.bind(this) } >Click here</button>
</div>
)
}
}
If you are willing to use the class instance inside another store class, then you can just import the instance as follows:
import accountStore from '@4geit/rct-account-store'
class DummyStore {
@action doSomething() {
accountStore.setVar1('dummy value')
}
}
- If you want to use the store class in the storybook, add accountStore within
stories/index.js
by first importing it:
import accountStore from '@4geit/rct-account-store'
and then within the stores
array variable add accountStore
at the end of the list.
- If you want to use the store class in your project, add accountStore within
src/index.js
by first importing it:
import accountStore from '@4geit/rct-account-store'
and then within the stores
array variable add accountStore
at the end of the list.