1.0.8 • Published 4 years ago

vue3-axios-idb-store-sync v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Contributors Forks Stargazers Issues MIT License LinkedIn

About The Project

This vuex store module aims to provide basic CRUD functionality for large datasets.

Features:

  • Stores data in idb at client side and synchronizes the idb on startup with the backend. Only changed entites will be loaded.
  • Indexes entites by ID
  • Provides Get, Delete, Save, Create functionality
  • We lowered initial page loading from 9 seconds to 200 ms

Getting Started

Installation

npm install vue3-axios-idb-store-sync -save

usage

We expect your Vue3 project uses axios.

It is recommended to use environment variables.

in main.js

axios.defaults.baseURL = import.meta.env.VITE_BACKEND_URL;

in .env.development (+ .env.production)

VITE_BACKEND_URL=http://localhost:8080/

in store.js

import { createBackendIdbVuexDataSync } from 'vue3-axios-idb-store-sync';
...
export default createStore({
 modules: {
   moduleName: createBackendIdbVuexDataSync(
       { endpoint: endpointName },
     )
   },
});

in any component

   import { onMounted, computed } from 'vue';
   import { useStore } from 'vuex';
   ...
   const allEntites = computed(() => store.getters['moduleName/all']);
   ...
   onMounted(() => {
    store.dispatch('tags/initialize');
   });
   ...
   function deleteItem(id) {
     store.dispatch('moduleName/delete', { id })
   }

backend API needed

This plugin expects the following endpoints under your backend URL:

  1. POST /endpoint/ Creating an new entity Expects entity as JSON in body Returns saved entity as JSON
  2. GET /endpoint/ Get a list of ALL entities - as JSON list
  3. GET /endpoint/?lastCacheUpdate={timestampInMs} Get a list of all entities that have been changed since {timestampInMs} - as JSON list
  4. PUT /endpoint/{itemId} Saves an existing entity Expects entity as JSON in body Returns saved entity as JSON
  5. DELETE /endpoint/{itemId} Deletes an entity Expects no body and returns nothing

TODO: make this configurable

frontend API

Options

endpoint

endpoint where client looks for when calling the backend

afterUpdateCallback

this callback will be called whenever an item was saved Parameters: 1. store 2. saved entity the backend sends

initDataCallback

This callback will be called after initialization for every NEW entity. This callback is used to transform entites and to do expensive precalculations. For example: Date formating and status calculations There is no need to make a deep copy of the entity. Just add / change new properties and return the entity. Parameters: 1. ONE new entity the backend sends

Getters

moduleName/all

returns an array of all entites

moduleName/byId

returns one entity by its id. Parameters: Object with id property

Actions

moduleName/initialize

Needs to be called. Can be called multiple times. Will only load once. Parameters: none

moduleName/update

Updates one entity by its id. Also removes it from IDB Parameters: Object with id property. Will be send like this to backend.

moduleName/add

Creates one entity. Also removes it from IDB Parameters: Object that will be send like this to backend.

moduleName/delete

Deletes one entity by its id. Also removes it from IDB Parameters: Object with id property

Roadmap

  • Add more customizability
  • Add live sync

See the open issues for a full list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

kaiwerther - kaiwerther@gmail.com

Project Link: https://github.com/kaiwerther/repo_name

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago