Я новичок в MobX и у меня возникли некоторые проблемы, вызывающие асинхронные действия. В моем магазине есть асинхронная функция для обновления массива наблюдений:
export class AccountStore implements IAccountStore {
@observable accounts:any = [];
@observable state = "pending"; // "pending" / "done" / "error"
@action
public async getAccounts() {
this.state = "pending"
try {
const res = await accountsService.getAll();
runInAction(() => {
console.log(res);
this.state = "done";
this.accounts.replace(res.data);
})
} catch (error) {
runInAction(() => {
this.state = error;
})
}
}
}
Но мой компонент не обновляется при обновлении (которое вызывается для componentDidMount):
interface AppProps {
accountStore: IAccountStore
}
@inject('accountStore')
@observer
class AllAcounts extends Component<AppProps, any> {
constructor(props: any) {
super(props);
}
public componentDidMount() {
this.props.accountStore.getAccounts();
console.log(this.props.accountStore)
}
render() {
const accounts = this.props.accountStore.accounts;
return (
<div>
<h4>All accounts</h4>
{accounts.map((item: any, index: number) => {
<p key={index}>{item.name}</p>
})
}
<button onClick={() => this.props.accountStore.getAccounts()}>Update</button>
</div>
);
}
}
export default AllAcounts;
Я вижу, что реквизиты обновляются, когда я использую React инспектор в Chrome.
Любые предложения, где я иду не так?