1.1.6 • Published 7 years ago
dependency-inject v1.1.6
DependencyInject
import { Container, inject } from 'dependency-inject'
class Store {
num = 1
}
class Action {
@inject(Store)
private store: Store
setNum(num: number) {
this.store.num = num
}
}
// init store
const container = new Container()
container.set(Store, new Store())
container.set(Action, new Action())
// get data with injected
const store = container.get(Store)
const action = container.get(Action)
action.setNum(2)
console.log(store.num) // 2
Simple useage by injectFactory
import { injectFactory } from 'dependency-inject'
class Store {
num = 1
}
class Action {
@inject(Store)
private store: Store
setNum(num: number) {
this.store.num = num
}
}
const stores = injectFactory({Store, Action})
// stores.Store.num === 1
// stores.Action.setNum
nested object
import { injectFactory } from 'dependency-inject'
class Store {
num = 1
}
class Action {
@inject(Store)
private store: Store
setNum(num: number) {
this.store.num = num
}
}
const stores = injectFactory({
groupA: Store,
groupB: {
groupC: Action
}
})
1.1.6
7 years ago
1.1.5
7 years ago
1.1.4
8 years ago
1.1.3
8 years ago
1.1.2
8 years ago
1.1.1
8 years ago
1.1.0
8 years ago
1.0.19
8 years ago
1.0.18
8 years ago
1.0.17
8 years ago
1.0.16
8 years ago
1.0.15
8 years ago
1.0.14
8 years ago
1.0.13
8 years ago
1.0.12
8 years ago
1.0.11
8 years ago
1.0.10
8 years ago
1.0.9
8 years ago
1.0.8
8 years ago
1.0.7
8 years ago
1.0.6
8 years ago
1.0.5
8 years ago
1.0.4
8 years ago
1.0.3
8 years ago
1.0.2
8 years ago
1.0.1
8 years ago
1.0.0
8 years ago