(
private readonly appStore: BaseStore<IApplication>,
private readonly snack: SnackReporter
)
| 28 | private loading = false; |
| 29 | |
| 30 | public constructor( |
| 31 | private readonly appStore: BaseStore<IApplication>, |
| 32 | private readonly snack: SnackReporter |
| 33 | ) { |
| 34 | reaction(() => appStore.getItems(), this.createEmptyStatesForApps); |
| 35 | } |
| 36 | |
| 37 | private stateOf = (appId: number, create = true) => { |
| 38 | if (!this.state[appId] && create) { |
nothing calls this directly
no outgoing calls
no test coverage detected