Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
ember-async-button
Advanced tools
When running async actions ensuring disabling of the button, re-enabling, and handling promise rejections is pretty boilerplate. This component packages up that behavior.
When running async actions ensuring disabling of the button, re-enabling, and handling promise rejections is pretty boilerplate. This component packages up that behavior.
ember install ember-async-button
In a template use the async-button
helper
{{async-button action=(action "save" model) default="Save" pending="Saving..."}}
The component can also take a block:
{{#async-button action=(action "save")}}
Template content.
{{/async-button}}
The closure action passed should return a promise:
import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
actions: {
save(model) {
return model.save();
}
}
});
The async-button
helper has other options to customize the states.
action
This is the action name used by the button.
default
The default text used for the button.
pending
Special text used while the promise is running. If not provided will use the default
value.
resolved
Deprecated! Use fulfilled
Special text used if the promise is resolved. If not provided will use the default
value.
fulfilled
Special text used if the promise is fulfilled. If not provided will use the default
value.
rejected
Special text used if the promise is rejected. If not provided will use the default
value.
disableWhen
Boolean value that will allow for disabling the button when in a state other than pending
reset
Flag telling the button to reset to the default state once resolved
or rejected
. A typical use case is to bind this attribute with ember-data isDirty
flag.
A class of async-button
is assigned to the button. An additional
dynamic class is assigned during one of the four states:
default
pending
fulfilled
rejected
href
attribute of the a
tagYou can adjust the button's tag by passing the tagName
option:
{{async-button tagName="a" action="save" default="Save" pending="Saving..."}}
When you set tagName
to a
, the element will obtain an empty href
attribute. This is necessary to enable the link behavior of the element, i. e. color, underlining and hover effect.
You can of course override href
if you need it for some reason:
{{async-button tagName="a" href="custom" action="save" default="Save" pending="Saving..."}}
If you don't want a href
attribute on your a
button, set it to false
:
{{async-button tagName="a" href=false action="save" default="Save" pending="Saving..."}}
We are very thankful for the many contributors
This library follows Semantic Versioning
Please do! We are always looking to improve this addon. Please see our Contribution Guidelines on how to properly submit issues and pull requests.
DockYard, Inc © 2014
FAQs
When running async actions ensuring disabling of the button, re-enabling, and handling promise rejections is pretty boilerplate. This component packages up that behavior.
The npm package ember-async-button receives a total of 667 weekly downloads. As such, ember-async-button popularity was classified as not popular.
We found that ember-async-button demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.