Giter Site home page Giter Site logo

ember-cli-async-button's Introduction

Ember CLI Async Button

See a demo

Build

About

When running async actions ensuring disabling of the button, re-enabling, and handling promise rejections is pretty boilerplate. This component packages up that behavior.

Install

npm install ember-cli-async-button --save-dev

Usage

In a template use the async-button helper

{{async-button action="save" default="Save" pending="Saving..."}}

The component can also take a block:

{{#async-button action="save"}}
  Template content.
{{/async-button}}

In the controller for the template you must create an action that matches the name given in the helper.

Ember.Controller.extend({
  actions: {
    save: function(callback) {
      var promise = this.get('model').save();

      callback(promise);

      promise.then(function() {
        ...
      });
    }
  }
});

Make special note of callback(promise); In order for async-button to work correctly the promise in the action must be passed back to the callback function that is passed in.

Options

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.

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.

Styling

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

Authors

We are very thankful for the many contributors

Versioning

This library follows Semantic Versioning

Want to help?

Please do! We are always looking to improve this gem. Please see our Contribution Guidelines on how to properly submit issues and pull requests.

Legal

DockYard, Inc © 2014

@dockyard

Licensed under the MIT license

ember-cli-async-button's People

Contributors

bcardarella avatar danmcclain avatar duggiefresh avatar ernesto-jimenez avatar jbescoyez avatar machty avatar pixelhandler avatar rwjblue avatar tikotzky avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.