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-auto-save
Advanced tools
An Ember-cli addon that provides auto-save functionality for Ember applications.
An Ember-cli addon that provides auto-save functionality for Ember applications.
http://lozjackson.github.io/ember-auto-save/
ember install ember-auto-save
This is a computed property that provides an autoSaveProxy
object. The autoSaveProxy
object will proxy all requests to the model
property. Setting properties on the
autoSaveProxy
object will be automatically saved.
Use this property in a controller or component. Set your model
on the
controller, then create an autoSaveProxy
object for the model.
Example:
controller.js
import Ember from 'ember';
import autoSaveProxy from 'ember-auto-save';
export default Ember.Controller.extend({
autoSaveProxy,
model: model
});
template.hbs
{{input value=autoSaveProxy.name}}
You can use the AutoSaveComponent to wrap a model
and provide an autoSaveProxy
object.
{{#auto-save model=model as |autoSaveProxy|}}
{{input value=autoSaveProxy.name}}
{{/auto-save}}
The AutoSaveMixin overrides the setUnknownProperty
method, and
triggers the save
method when properties are set on the model
.
The example below show how you can create your own autoSaveProxy
object.
import AutoSaveMixin from 'ember-auto-save/mixins/auto-save';
let AutoSaveProxy = Ember.ObjectProxy.extend(AutoSaveMixin);
let autoSaveProxy = AutoSaveProxy.create({
content: this.get('model')
});
Use the save()
method to save the model
using the
Ember.js debounce()
method.
import { save } from `ember-auto-save`
save( model );
Optionally, you can provide a time to wait before applying the method. If no time value is specified then the default of 2000 (2 seconds) will be used.
// save the model after 5 seconds
save( model, 5000 );
FAQs
An Ember-cli addon that provides auto-save functionality for Ember applications.
We found that ember-auto-save 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.