Luca Ban
Luca Ban
In all my projects I dream of having soft delete. this means that the records which are deleted are just marked "deleted" but are still there. This means you can...
Console logging looks really beautiful in workbox! I've copied their logger here: https://github.com/mesqueeb/vuex-easy-firestore/blob/dev/src/utils/log.ts Need to improve the vuex-easy-firestore logger to look a bit more beautiful just like the workbox one!...
Currently using `arrayUnion` on a prop that's not an array will not work. I will change this behaviour so it will change the value into an array for you. ---...
Planned pagination support for `fetchAndAdd` and `fetch` --- After about two years of open source, I finally got accepted for Github Sponsors! #### 💜 [github.com/sponsors/mesqueeb](https://github.com/sponsors/mesqueeb) 💜 A little about me:...
Improve the way that inserting/patching gives feedback to the Dev to allow the Dev to easily implement things like loading spinners / animated svgs etc. --- After about two years...
### 1. Show the difference between native solution vs my library ```js store.dispatch('myModule/openDBChannel') ``` is the same as ```js firebase.firestore().collection('path/to/collection') .onSnapshot(doc => { const docData = doc.data() // add/modify/remove the...
A milestone for v2.0 Currently when you create a module via vuex-easy-firestore, it will add a bunch of actions, getters, mutations etc. I'm thinking of creating a system where actions...
I'd love to see a 3second GIF of dice being rolled and then the message to be edited and replaced with the roll result. That way any time someone rolls,...
To prevent any hierarchy issues in the future I suggest an alphabetic order for 'Projects Using Quasar'. Or an order by Quasar version (newest most top), and alphabetic sub order;...
@jprodrigues70 this is a commit that tries to prevent some global CSS pollution by changing the CSS names to be more scoped under this package's name. If you are OK...