npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-buffered-array-promise-proxy

v0.0.1

Published

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

Downloads

5

Readme

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

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

License

This project is licensed under the MIT License.