Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ember-buffered-array-promise-proxy
Advanced tools
A promise proxy mixin using version of ember-buffered-array-proxy designed for use with ember-data hasMany array-like objects
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.
ember install ember-buffered-array-promise-proxy
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')
git clone <repository-url>
cd ember-buffered-array-promise-proxy
yarn install
yarn lint:js
yarn lint:js --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"yarn test
– Runs ember try:each
to test your addon against multiple Ember versionsember serve
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.
FAQs
A promise proxy mixin using version of ember-buffered-array-proxy designed for use with ember-data hasMany array-like objects
We found that ember-buffered-array-promise-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.