5.0.0 • Published 7 years ago

@mycure/facility-labs v5.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

js-semistandard-style

Mycure Vue Facility-labs module

Installation and Usage

$ yarn add @mycure/facility-labs
  • use as a vue plugin
import Vue from 'vue';
import McFacility-labs from '@mycure/facility-labs';

Vue.use(McFacility-labs, opts: ServiceOpts)
  • above will do the ff:
    • describe side effects here
    • sample side effects:
      • attach a global method/attribute
      • attach an instance method/attribute
      • add components
      • sync a single and multi vuex store modules
  interface StoreOpts {
    moduleName: string = 'facility-labs',
    multi: boolean = true    // ataches a multi item vuex store module
    single: boolean = true   // ataches a single item vuex store module
  }

  interface ServiceOpts {
    // will be used to auto-generate query functions
    firebaseApp?: firebase.App
    authService?: AuthService
    // for registering built-in store modules
    store: VuexStore
    storeOpts?: StoreOpts
    // and other valid SingleItemSyncService and MultiItemSyncService configs, see @topsi/services docus
  }

VuexStoreModules

SingleItemStoreModule

vuexModuleName = 'facility-labs-single'
interface RegisteredVuexModule extends RegisteredSingleItemStoreModule { // see @topsi/services docus for its RegisteredSingleItemStoreModule
}

MultiItemStoreModule

vuexModuleName = 'facility-labs-multi'
interface RegisteredVuexModule extends RegisteredMultiItemStoreModule { // see @topsi/services docus for its RegisteredMultiItemStoreModule
}
5.0.0

7 years ago