Are there any best practices or a library for state management in aurelia? something like vue.js's integrated state management?
I have seen some suggestions ranging from a simple object:
export default {
user: ...,
router: ...,
...,
}
to some aurelia redux integrations : https://github.com/steelsojka/aurelia-redux-plugin
Has anyone made good eperiences with a library with less complexity? Redux is to much boilerplate in my opinion. I would like some wrapper with a smaller footprint similar to jumpsuit for react.
I have used multiple attempts:
store.js
store as object:
export default{
test: 'xxx'
};
store as class:
export default class Store{
constructor() {
this.test = 'xxx';
}
};
and in the component I integrate it like this:
import { inject } from 'aurelia-framework';
import store from './store';
@inject(store)
export class TestComp {
constructor(store){
this.store = store;
}
}
or even without inject:
import store from './store';
export class TestComp {
constructor(){
this.store = store;
}
}
All combinations seem to work just fine and the store keeps in sync between Views/Components.
What are the (dis)advantages of one over the other... or would you suggest completely different approach in the first place?
Meanwhile Aurelia-Store, an official Aurelia plugin for state management, has been officially released. Take a look at the docs to see how it works.