Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-buffered-array-promise-proxy

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-buffered-array-promise-proxy

A promise proxy mixin using version of ember-buffered-array-proxy designed for use with ember-data hasMany array-like objects

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ember-buffered-array-promise-proxy

This addon combines the concepts of ember-data's PromiseProxyMixin and PromiseManyArray with the concepts of ember-buffered-array-proxy to create a promise version of a buffered array proxy. This is useful when you are dealing with a PromiseManyArray from an async hasMany relationship.

This addon is currently a work in progress. Please help by contributing.

Installation

ember install ember-buffered-array-promise-proxy

Usage

ember install ember-buffered-array-proxy
import BufferedArrayPromiseProxy from 'ember-buffered-array-promise-proxy/proxy';

const content = ['A'];
const promiseArray = BufferedArrayPromiseProxy.create({ content: RSVP.resolve(content) });

promiseArray.then(bufferedArray => {
  bufferedArray.get('firstObject'); // => 'A'
  bufferedArray.addObject('B');

  bufferedArray.objectAt(1); // => 'B'
  bufferedArray.toArray(); // => ['A', 'B']

  bufferedArray.get('hasChanges'); // => true
  bufferedArray.get('changes'); // => (get an object describing the changes) -- { added: ['B'], removed: [] }

  bufferedArray.applyBufferedChanges();

  bufferedArray.toArray(); // => ['A', 'B']
  bufferedArray.get('content').toArray(); // => ['A', 'B']
  bufferedArray.get('hasChanges'); // => false

  bufferedArray.removeObject('A');
  bufferedArray.get('changes'); // => { added: [], removed: ['A'] }
  bufferedArray.hasChanged(); // => true

  bufferedArray.discardBufferedChanges();

  bufferedArray.toArray(); // => ['A', 'B']
  bufferedArray.get('content').toArray(); // => ['A', 'B']
  bufferedArray.hasChanged(); // => false
});

Or you can grab the mixin directly

import BufferedArrayPromiseMixin from 'ember-buffered-array-promise-proxy/mixin';

const content = ['A'];
const promise = EmberObject.extend(BufferedArrayPromiseProxyMixin).create({ content: RSVP.resolve(content) });

You can also use a few of these methods directly returning promises:

promiseArray.discardChanges();
promiseArray.discardpromiseArrayedChanges();
promiseArray.objectAt(1);
promiseArray.toArray();

Or you can even use this awesome computed property macro:

import { bufferedArrayPromise } from 'ember-buffered-array-promise-proxy/cp-macros';

// ...

bufferedPromisePosts: bufferedArrayPromise('posts')

Contributing

Installation

  • git clone <repository-url>
  • cd ember-buffered-array-promise-proxy
  • yarn install

Linting

  • yarn lint:js
  • yarn lint:js --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • yarn test – Runs ember try:each to test your addon against multiple Ember versions

Running the dummy application

  • ember serve
  • Visit the dummy application at http://localhost:4200.

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 23 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc