angular-confirmable
v1.0.0
Published
An intuitive way to re-confirm user intentions using a single widget, and provide inline feedback without confirm dialogs or flash messages.
Downloads
5
Maintainers
Readme
Angular Confirmable
An intuitive way to re-confirm user intentions using a single widget, and provide inline feedback without distracting confirmation popups or flash messages.
Allows you to decorate a standard HTML button with 2 or 3 states, to allow the user to re-confirm their intent before performing a destructive or important operation. Can also be used to simply confirm or feedback an action to the user on the same button they clicked. If you define it with 3 states, the directive will reset the state back after a time period (configurable).
This behaviour allows you to conserve space on the current view, without taking the users attention away from what they are currently doing and avoids distracting confirmation popups and flash messages.
Tested and can be used with / without JQuery / Bootstrap.
Demo / Example
Installation
- Install the plugin into your Angular.js project, manually or via:
bower install angular-confirmable --save
- Include
angular-confirmable.css
in your app (optional, this demonstrates CSS class customisation using Bootstrap):
<link rel="stylesheet" href="bower_components/angular-confirmable/angular-confirmable.css" />
- Include
angular-confirmable.js
in your app:
<script src="bower_components/angular-confirmable/angular-confirmable.js"></script>
- Add
angular-confirmable
as a new module dependency in your angular app.
var myapp = angular.module('myapp', ['angular-confirmable']);
Creating the Directive
- Define a
<confirmable ...></confirmable>
tag with matching open and closing tags. - Nested within the above open and closing tags, define a
<confirmable-outlet></confirmable-outlet>
which will mark where the dynamic text appears. This allows the directive to be very flexible in what you wrap around it (ie. button / div / whatever). - Define the default (unconfirmed) text with
unconfirmed-text="Do something irreversable"
- Define the text to show after a single click (confirming) with
confirming-text="Are you sure?"
- Optionally, define the text to show after a confirmation click (confirmed) with
confirmed-text="Processing..."
- Define a function (on the target controller scope) to be called after confirmation:
when-confirmed='eraseData'
Complete (minimal) example:
<confirmable when-confirmed="confirmed" unconfirmed-text="Don't press this button" confirming-text="Please don't click me again!">
<button class="btn btn-default">
<confirmable-outlet></confirmable-outlet>
</button>
</confirmable>
Notes
You can use either the SASS styles directly file under
/src
or the compiled CSS files, up to you :)You can use this directive for either a re-confirmable action (3 states) or inline feedback (2 states) or both.
You can wrap the text in all states within brackets, or anything really using the following optional attributes:
text-before="("
andtext-after=")"
You can define the delay between reverting from
confirming
state todefault
state by specifyingreset-delay="1000"
(in milliseconds)<confirmable>
tag supportsclass="..."
anddisabled="true|false"
attributes an acts as you would assume.The attribute
confirmable-state
will change to eitherunconfirmed
,confirming
orconfirmed
which can be used. for CSS class styles or watching on the$scope
to trigger other effects.Specifically tested with the angular-ladda directive in mind, so it is compatible with this applied to the same button.
Running Locally
- Checkout git repository locally:
git clone [email protected]:rpocklin/angular-confirmable.git
npm install
bower install
grunt serve
- View
http://localhost:9000/example/
in your browser to see the example.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes, run
grunt karma
to ensure all tests pass. (Ideally add more tests!) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
History
1.1.0 Allow directive to be used in attributes as well as elements. 1.0.0 Initial release
TODO
- Add disabled button toggle to example
- Add some tests
- Move directive sanity checks to
compile()
method. - More sophisticated examples, also one with
angular-ladda
. - Allow the confirmed state to pass a promise which, when resolved, will show
completed-text="Processing Complete"
?
License
Released under the MIT License. See the LICENSE file for further details.