0.4.2 • Published 3 years ago

@groveco/backbone.store v0.4.2

Weekly downloads
786
License
-
Repository
-
Last release
3 years ago

Backbone Store

Backbone Store is a library for managing and caching data in Backbone applications.

Contributing to Backbone Store

If you're using @groveco/backbone.store in your own project:

  1. Clone this repo locally, e.g.
    $> git clone https://github.com/groveco/backbone.store ~/Projects/backbone.store && cd $_
    Cloning https://github.com/groveco/backbone.store into ~/Projects/backbone.store
    . . .
    cd ~/Projects/backbone.store
    $> pwd
    ~/Projects/backbone.store
  2. Link your work-tree as the globally installed package:
    $> pwd
    ~/Projects/backbone.store
    $> npm link
    npm install...
    linking @groveco/backbone.store
    $> npm ls --global --depth=0
    /path/to/global/node_modules
    ├── @groveco/backbone.store@X.Y.Z -> ~/Projects/backbone.store
    ├── nodemon@1.18.9
    └── npm@6.1.0
  3. Link the globally linked version of backbone.store in the work-tree of the project that is consuming backbone.store:
    $> pwd
    ~/Projects/backbone.store
    $> pushd ../other-project ## e.g. `groveco/grove`
    ~/Projects/other-project  ~/Projects/backbone.store
    $> npm link @groveco/backbone.store
    ~/other-project/node_modules/@groveco/backbone.store -> /path/to/global/node_modules/@groveco/backbone.store -> ~/Projects/backbone.store
  4. Switch back to your local clone of groveco/backbone.store and get to work!
    $> pwd
    ~/Projects/other-project
    $> popd
    ~/Projects/backbone.store
  5. Run npm run build to recompile the library:

    $> pwd
    ~/Projects/backbone.store
    $> npm run build
    
    > @groveco/backbone.store@0.2.3 build ~/Projects/backbone.store
    > babel src --out-dir dist
    
    src/camelcase-dash.js -> dist/camelcase-dash.js
    src/collection-proxy.js -> dist/collection-proxy.js
    src/http-adapter.js -> dist/http-adapter.js
    src/index.js -> dist/index.js
    src/internal-model.js -> dist/internal-model.js
    src/json-api-parser.js -> dist/json-api-parser.js
    src/model-proxy.js -> dist/model-proxy.js
    src/repository-collection.js -> dist/repository-collection.js
    src/repository.js -> dist/repository.js
    src/store.js -> dist/store.js
    
    $> tree dist/
    dist
    ├── camelcase-dash.js
    ├── collection-proxy.js
    ├── http-adapter.js
    ├── index.js
    ├── internal-model.js
    ├── json-api-parser.js
    ├── model-proxy.js
    ├── repository-collection.js
    ├── repository.js
    └── store.js
    
    0 directories, 10 files
  6. Rebuild other-project to pick up the changes to backbone.store

Bonus: Run npm run build:watch to rebuild when any file updates. If your other-project build is also watching for filesystem changes, the rebuild in backbone.store will trigger it as well.

Caveat: Running npm install in other-project will destroy the link that you made in Step 3 above, so if your build process runs npm install, you'll have to rerun npm link per Step 3 after the build starts... or pass --link to npm install.

Using Backbone Store

Defining models

Backbone Store provides relational models structure. To define relations between models use relatedModels and relatedCollections fields in Backbone.Model.

For instance we have blogs with comments:

import Backbone from 'backbone'

let Blog = Backbone.Model.extend({
  relatedCollections: {
    comments: 'comment'
  }
});

let Comment = Backbone.Model.extend({
  relatedModels: {
    blog: 'blog'
  }
});

Here in relatedModels and relatedCollections objects keys are fields in model where we can find location of related model/collection (id or url). Values are types of related model.

Adapter

Adapter is a thing which knows how to manipulate with data on server (or even other sources in general). Currently there is HttpAdapter which manipulates data with server over HTTP.

Parser

Parser is class which parses data from server from specific format to Backbone Store format and vice versa. Currently there is JsonApiParser which parses data from JSON API format.

Repository

Repository is used to provide access to data and cache data on front-end to prevent same multiple requests.

That's how you create a repository with adapter and parser:

import BackboneStore from 'backbone.store'
import BlogModel from './path/to/blog-model'

let parser = new BackboneStore.JsonApiParser();
let adapter = new BackboneStore.HttpAdapter('/api/blog/', parser);
let repo = new BackboneStore.Repository(BlogModel, adapter);
0.4.2

3 years ago

0.5.1

3 years ago

0.4.1

3 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.1-1

5 years ago

0.3.1-0

5 years ago

0.3.0-2

5 years ago

0.2.4

5 years ago

0.3.0-1

5 years ago

0.3.0

5 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago