Hi @IjzerenHein given the use of a store in the docs https://github.com/IjzerenHein/firestorter/blob/master/docs/Store.md
any chance this store can be a mobx store so that one can have shared computed functions and shared actions that process the defined collections. something like
const store =observable( {
artists: new Collection('artists'),
get youngArtist(){
return this.artist.ref.....
},
updateArtists(){
this.artist.....
}
});
just so you have multiple computed values, available to several components. instead of having several instances of same collections with different query property specified for each.
Hi @IjzerenHein given the use of a store in the docs https://github.com/IjzerenHein/firestorter/blob/master/docs/Store.md any chance this store can be a mobx store so that one can have shared computed functions and shared actions that process the defined collections. something like
just so you have multiple computed values, available to several components. instead of having several instances of same collections with different query property specified for each.