Giter Club home page Giter Club logo

ng-sweet-alert's Introduction

Latest Stable Version NPM Downloads Latest Stable Version Build Status Build Status

ng-sweet-alert

ng-sweet-alert is an directive for sweet alert [sweetalert]. Integration of sweet alert becomes very easy with angular js. There is no need to write a single line of javascript code. Only few html attribute is enough to use sweetalert.

Getting Started

Install via bower

bower install ng-sweet-alert

Install via npm

npm install ng-sweet-alert

Add dependency in your module

angular.module('yourApp',[   'ng-sweet-alert' ]); 

Demo

Have a look at the DEMO or the plunkr! Edit and Fork :)

Configure

<input sweetalert sweet-options="{title: 'Are you sure?',text: 'You will not be able to recover this imaginary file!',type: 'warning',showCancelButton: true,confirmButtonColor: '#DD6B55',confirmButtonText: 'Yes, delete it!',cancelButtonText: 'No, cancel plx!'}" sweet-confirm-option="{title: 'Deleted!',text: 'Your imaginary file has been deleted.',type: 'success'}" sweet-cancel-option="{title: 'Cancelled!',text: 'Your imaginary file is safe',type: 'error'}" type="submit" name="login-submit" sweet-on-cancel="checkCancel()" sweet-on-confirm="checkConfirm()" id="login-submit" tabindex="4" class="form-control btn btn-login" value="Log In">

Documentation

Attribute Options object
sweet-options '{title: 'Are you sure?',text: 'You will not be able to recover this imaginary file!',type: 'warning',showCancelButton: true,confirmButtonColor: '#DD6B55',confirmButtonText: 'Yes, delete it!',cancelButtonText: 'No, cancel plx!'}'
sweet-confirm-option "{title: 'Deleted!',text: 'Your imaginary file has been deleted.',type: 'success'}"
sweet-cancel-option {title: 'Cancelled!',text: 'Your imaginary file is safe',type: 'error'}
sweet-on-cancel checkCancel()
sweet-on-confirm checkConfirm()

Use SweetAlert as service

swal() gets two arguments; first argument is parameters Objects (with default values). second argument is Callback function when clicking on "OK"/"Cancel", which is a promise. register to the promise (using 'then') and handle the resolve / reject according to your business logic.

Add 'SweetAlert' to your directive / controller / ect) Use SweetAlert.confirm(msg, options) / SweetAlert.alert(msg, options) / SweetAlert.info(msg, options) / SweetAlert.success(msg, options) pass arguments:

msg; String - The message to be displayed in the alert / confirm box (mandatory). options; Object (optinal): title: String - the title of the box. type: String - "warning" / "info" / "error" / "success" / "" (empty string will not display a graphic icon). showCancelButton: Boolean - shows the "cancel" button (true will behave like confirm dialog, false will behave like alert dialog).

Use returned promise;

SweetAlert.confirm("Are you sure?", {title : "Careful now!"})
          .then(function(p) { do something on success },
                function(p) { do something on fail }
          );

SweetAlert.success("You have successfully completed our poll!", {title: "Good job!"});

Documentation: SweetAlert as a service

Parameter Value
msg (mandatory) "Are you sure you want to do that.."
options "{title: 'Delete this?', type: 'warning' showCancelButton: true}"

Contributing

Open an issue first to discuss potential changes/additions. If you have questions with the guide, feel free to leave them as issues in the repository. If you find a typo, create a pull request. The idea is to keep the content up to date and use github’s native feature to help tell the story with issues and PR’s, which are all searchable via google. Why? Because odds are if you have a question, someone else does too! You can learn more here at about how to contribute.

By contributing to this repository you are agreeing to make your content available subject to the license of this repository.

Process

1. Discuss the changes in a GitHub issue.
2. Open a Pull Request, reference the issue, and explain the change and why it adds value.
3. The Pull Request will be evaluated and either merged or declined.

License

Use this guide. Attributions are appreciated._

Copyright

Copyright (c) 2014-2015 Tushar Borole

(The MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

##Last but not least This is made in India with love and passion ʕ´•ᴥ•`ʔ

ng-sweet-alert's People

Contributors

bumbeishvili avatar earl-brown avatar ngotchac avatar outmost avatar zkerhcy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ng-sweet-alert's Issues

SweetAlert service issue

You can't call another SweetAlert function inside a SweetAlert promise.
See plunker

It would be great if you could show a SweetAlert success when a user clicked on the confirm button from SweetAlert confirm.

module 'ng-sweet-alert' is not available

3

2
@tushariscoolster
1

When I call the ng-sweet-alert ,I have added dependency my your module, but it work not well, please help me to analysis this problem thanks.

Lack of showLoaderOnConfirm

THat would be amazing if the angular version could actually lock the buttons and show that moving '...' on the OK button after confirm.

The native bootstrap version of sweet alert has this feature, so it would be amazing if I could do it with angular.

Close Alert Programatically

The normal sweetalert has a "close()" function you can call to force the alert to close itself. Is it possible to add this feature in ng-sweet-alert as well or is there any alternatives for that same behavior?

To elaborate: I have a <a> tag inside the message of an alert and I want to close the alert when the user clicks on it and gets redirected to another view (currently the alert remains open and the user has to manually click "Ok" to close it after being redirected).

License of ng-sweet-alert

Hi, I found that the license of this package is MIT on the home page.
But in the 'bower.json' , it's "license": "LGPL-2.1"
If the license is MIT indeed, could you please update it in 'bower.json' ?
Thanks.

npm version .. is .. old ..

Could have saved me a load of time and bother trying to figure out why SA was not working as per the demo code .. the published npm version is 1.0.2 , current version is 1.0.8 ;)

Feature request: Use alerts as native JS functions

Wanted to use the ng-sweet-alert like native confirm / alert dialog messages via JS, and not via HTML attributes, something like:
return confirm("Are you sure?");

Also we should be using "promises" to make sure the application waits for the response from the confirm dialog box, and executes the proper code according to the button pressed.

This will help us maintain our already-existing alert / confirm functions, and make them prettier with SweetAlert, and using AngularJS.

Using ng-click in text

Hi

I tried to use the ng-click directive within the 'text' property. I set 'html' property to true, so the HTML is being rendered properly, but the ng-click is not working (method not being called). Might be related to the compile process, right? Any chance to make this working?

Example code:

SweetAlert.swal({
          title: 'Test.',
          text: '<div ng-click="shareMail(project)"><i class="fa fa-envelope"></i></div>',
          html: true,
          confirmButtonText: 'Close'
        });

Thanks.

swal is not defined

I try to fire the alert but it shown up this message on console
"swal is not defined"

TypeError: sweetElement.click is not a function

I got this when I try this simple code:

<a class="button button-positive button-small" sweetalert sweet-options="{title: 'Are you sure?',text: 'You will not be able to recover this imaginary file!',type: 'warning',showCancelButton: true,confirmButtonColor: '#DD6B55',confirmButtonText: 'Yes, delete it!',cancelButtonText: 'No, cancel plx!'}" sweet-confirm-option="{title: 'Deleted!',text: 'Your imaginary file has been deleted.',type: 'success'}" sweet-cancel-option="{title: 'Cancelled!',text: 'Your imaginary file is safe',type: 'error'}" sweet-on-cancel="alert('sss')" sweet-on-confirm="alert('ccc')"><i class="icon ion-edit"></i></a>

The service is working fine.. any ideia? Thank you!

About bower.json set "sweetalert": "*"

Could you custom sweetalert version as "sweetalert": "~1.0.7" in your bower.json file ?

If not, new verson sweetalert could not find sweetalert.min.js in dist

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.