sweet-alert-confirm-turbo 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.travis.yml +21 -0
- data/Gemfile +42 -0
- data/MIT-LICENSE +20 -0
- data/README.md +84 -0
- data/Rakefile +12 -0
- data/lib/assets/javascripts/sweet-alert-confirm.js +118 -0
- data/lib/assets/stylesheets/sweet-alert-confirm.css +2 -0
- data/lib/sweet-alert-confirm/rails/engine.rb +6 -0
- data/lib/sweet-alert-confirm/railtie.rb +8 -0
- data/lib/sweet-alert-confirm/version.rb +3 -0
- data/lib/sweet-alert-confirm/view_helpers.rb +37 -0
- data/lib/sweet-alert-confirm.rb +7 -0
- data/spec/dummy/.gitignore +2 -0
- data/spec/dummy/.rspec +1 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +17 -0
- data/spec/dummy/app/assets/javascripts/application_turbolinks.js +18 -0
- data/spec/dummy/app/assets/javascripts/confirms.js +2 -0
- data/spec/dummy/app/assets/stylesheets/application.css +16 -0
- data/spec/dummy/app/assets/stylesheets/application.scss.css +16 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/controllers/confirms_controller.rb +13 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/confirms/delete_cow.html.erb +1 -0
- data/spec/dummy/app/views/confirms/delete_cow.js.erb +1 -0
- data/spec/dummy/app/views/confirms/get_cow.html.erb +1 -0
- data/spec/dummy/app/views/confirms/index.html.erb +19 -0
- data/spec/dummy/app/views/confirms/pre_index.html.erb +1 -0
- data/spec/dummy/app/views/layouts/application.html.erb +18 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +78 -0
- data/spec/dummy/config/environments/test.rb +43 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/secret_token.rb +1 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +60 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy-rails3/.DS_Store +0 -0
- data/spec/dummy-rails3/README.rdoc +261 -0
- data/spec/dummy-rails3/Rakefile +7 -0
- data/spec/dummy-rails3/app/.DS_Store +0 -0
- data/spec/dummy-rails3/app/assets/.DS_Store +0 -0
- data/spec/dummy-rails3/app/assets/javascripts/application.js +16 -0
- data/spec/dummy-rails3/app/assets/javascripts/application_turbolinks.js +18 -0
- data/spec/dummy-rails3/app/assets/stylesheets/application.css +16 -0
- data/spec/dummy-rails3/app/assets/stylesheets/application.scss.css +16 -0
- data/spec/dummy-rails3/app/controllers/application_controller.rb +3 -0
- data/spec/dummy-rails3/app/controllers/confirms_controller.rb +13 -0
- data/spec/dummy-rails3/app/helpers/application_helper.rb +2 -0
- data/spec/dummy-rails3/app/mailers/.gitkeep +0 -0
- data/spec/dummy-rails3/app/models/.gitkeep +0 -0
- data/spec/dummy-rails3/app/views/confirms/delete_cow.html.erb +1 -0
- data/spec/dummy-rails3/app/views/confirms/delete_cow.js.erb +1 -0
- data/spec/dummy-rails3/app/views/confirms/get_cow.html.erb +1 -0
- data/spec/dummy-rails3/app/views/confirms/index.html.erb +19 -0
- data/spec/dummy-rails3/app/views/confirms/pre_index.html.erb +1 -0
- data/spec/dummy-rails3/app/views/layouts/application.html.erb +18 -0
- data/spec/dummy-rails3/config/application.rb +65 -0
- data/spec/dummy-rails3/config/boot.rb +10 -0
- data/spec/dummy-rails3/config/database.yml +25 -0
- data/spec/dummy-rails3/config/environment.rb +5 -0
- data/spec/dummy-rails3/config/environments/development.rb +37 -0
- data/spec/dummy-rails3/config/environments/production.rb +67 -0
- data/spec/dummy-rails3/config/environments/test.rb +37 -0
- data/spec/dummy-rails3/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy-rails3/config/initializers/inflections.rb +15 -0
- data/spec/dummy-rails3/config/initializers/mime_types.rb +5 -0
- data/spec/dummy-rails3/config/initializers/secret_token.rb +7 -0
- data/spec/dummy-rails3/config/initializers/session_store.rb +8 -0
- data/spec/dummy-rails3/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy-rails3/config/locales/en.yml +5 -0
- data/spec/dummy-rails3/config/routes.rb +62 -0
- data/spec/dummy-rails3/config.ru +4 -0
- data/spec/dummy-rails3/db/development.sqlite3 +0 -0
- data/spec/dummy-rails3/db/schema.rb +16 -0
- data/spec/dummy-rails3/db/test.sqlite3 +0 -0
- data/spec/dummy-rails3/lib/assets/.gitkeep +0 -0
- data/spec/dummy-rails3/log/.gitkeep +0 -0
- data/spec/dummy-rails3/log/development.log +16 -0
- data/spec/dummy-rails3/log/test.log +170 -0
- data/spec/dummy-rails3/public/404.html +26 -0
- data/spec/dummy-rails3/public/422.html +26 -0
- data/spec/dummy-rails3/public/500.html +25 -0
- data/spec/dummy-rails3/public/favicon.ico +0 -0
- data/spec/dummy-rails3/script/rails +6 -0
- data/spec/dummy-rails3/tmp/cache/assets/BF6/DF0/sprockets%2F285744e0e3233126b590652597a6846c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/C5D/260/sprockets%2Ffe17576541881f7db15017c3b9647194 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/C71/960/sprockets%2F5c3859335128c2f0cc31422bb33e1674 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CA1/D70/sprockets%2F32526aac68f06e61515371c202fe44a7 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CD4/E60/sprockets%2F0ae34929c3b851d7104f8307a2c02ed8 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CEC/780/sprockets%2Fc3c981b384b293911ee64e25c1c5779f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CEE/CF0/sprockets%2F5d33a38968a71a6b4772723ae94ee77c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/CF3/FC0/sprockets%2F9b695713056bfc62c3198c75829dbd6e +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D0D/320/sprockets%2Fb2a9b609874a7a625a68223b607ac6ee +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D1A/340/sprockets%2Fb9708e6882954f6dabf115cf4df62330 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D4C/240/sprockets%2F3d9d437b39287fd1b6cc5a556a590f5f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D55/740/sprockets%2F4963d046e3b5cf4e73cd9cd6c8089f29 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/D71/6F0/sprockets%2F67621a32b646ce75e6dff65f8aa710bc +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DA3/C40/sprockets%2F93fac7c58d64b927fa52c22cbb38d93a +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DAD/440/sprockets%2Fb0ab4f86a4241a5ba22ecd830eb02e5a +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DC5/160/sprockets%2Fc403bbe0253f8ef0158efced2c2d4f45 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DDD/0A0/sprockets%2F924e879dd0cae5bfcd974a9f046df50c +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/DFB/530/sprockets%2Fda0209bfac7d7fd73e9da2d19d2b156f +0 -0
- data/spec/dummy-rails3/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/features/sweet_alert_confirm_spec.rb +116 -0
- data/spec/spec_helper.rb +50 -0
- data/sweet-alert-confirm.gemspec +26 -0
- metadata +239 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6bee91866f13e6e1981bafbf2a6591d8523ddc42975bf53f8eba865accfe3a02
|
4
|
+
data.tar.gz: 5cd66c9a6021ec6b0ddc35e0419b6bcc17f96e49a6a6281e6238844d2642ce6a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0407b09ad9552cb3a32fbff8984117257f5708d75bf77356a6c599e515917bdcf9f6c34af6673256e3bdfebfe3baaeec5c34f48dff457a34303b97d5f76363ec
|
7
|
+
data.tar.gz: 04cc56a052c4520faca8b44010b5aa8181a7fdb9640114bd74a108cea14d04d0bf618a333f1d6855ab84affeb328288264db3a92e1378a2fd0b13c8295dea2ef
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
env:
|
2
|
+
- RAILS_VERSION=3.2.15
|
3
|
+
- RAILS_VERSION=3.2.15
|
4
|
+
- RAILS_VERSION=3.2.19 USE_TURBOLINKS=true
|
5
|
+
- RAILS_VERSION=4.0.8
|
6
|
+
- RAILS_VERSION=4.1.4
|
7
|
+
- RAILS_VERSION=4.1.4 USE_TURBOLINKS=true
|
8
|
+
- RAILS_VERSION=4.2.4
|
9
|
+
- RAILS_VERSION=4.2.4 USE_TURBOLINKS=true
|
10
|
+
- RAILS_VERSION=master
|
11
|
+
|
12
|
+
rvm:
|
13
|
+
- 1.9.3
|
14
|
+
- 2.2.1
|
15
|
+
- jruby-19mode
|
16
|
+
|
17
|
+
|
18
|
+
matrix:
|
19
|
+
allow_failures:
|
20
|
+
- env: "RAILS_VERSION=master"
|
21
|
+
- rvm: ruby-head
|
data/Gemfile
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Declare your gem's dependencies in sweet_rails_confirm.gemspec.
|
4
|
+
# Bundler will treat runtime dependencies like base dependencies, and
|
5
|
+
# development dependencies will be added by default to the :development group.
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
# Declare any dependencies that are still in development here instead of in
|
9
|
+
# your gemspec. These might include edge Rails or gems from your path or
|
10
|
+
# Git. Remember to move these dependencies to your gemspec before releasing
|
11
|
+
# your gem to rubygems.org.
|
12
|
+
|
13
|
+
# To use debugger
|
14
|
+
# gem 'debugger'
|
15
|
+
|
16
|
+
rails_version = ENV["RAILS_VERSION"] || "default"
|
17
|
+
|
18
|
+
rails = case rails_version
|
19
|
+
when "master"
|
20
|
+
{github: "rails/rails"}
|
21
|
+
when "default"
|
22
|
+
">= 4.1.0"
|
23
|
+
else
|
24
|
+
"~> #{rails_version}"
|
25
|
+
end
|
26
|
+
|
27
|
+
gem "rails", rails
|
28
|
+
gem "turbolinks"
|
29
|
+
|
30
|
+
source 'https://rails-assets.org' do
|
31
|
+
gem 'rails-assets-sweetalert'
|
32
|
+
end
|
33
|
+
|
34
|
+
group :development, :test do
|
35
|
+
gem "jquery-rails"
|
36
|
+
gem "test-unit"
|
37
|
+
gem 'sass-rails'
|
38
|
+
gem "sweet-alert"
|
39
|
+
gem "capybara"
|
40
|
+
gem "poltergeist"
|
41
|
+
gem "rake"
|
42
|
+
end
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2014 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
sweet-alert-rails-confirm
|
2
|
+
=========================
|
3
|
+
|
4
|
+
[](http://travis-ci.org/mois3x/sweet-alert-rails-confirm)
|
5
|
+
|
6
|
+
|
7
|
+
A Rails confirm replacement with SweetAlert
|
8
|
+
|
9
|
+
depends on https://github.com/t4t5/sweetalert
|
10
|
+
|
11
|
+
So you need to Install:
|
12
|
+
gem 'sweet-alert'
|
13
|
+
|
14
|
+
Or the latest with:
|
15
|
+
gem 'rails-assets-sweetalert' # Using https://rails-assets.org/
|
16
|
+
|
17
|
+
## Requirements
|
18
|
+
Rails >= 3.1
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
Add it to your Gemfile:
|
23
|
+
```ruby
|
24
|
+
gem 'sweet-alert'
|
25
|
+
gem 'sweet-alert-confirm'
|
26
|
+
```
|
27
|
+
|
28
|
+
Add the following to application.js:
|
29
|
+
|
30
|
+
```javascript
|
31
|
+
//= require sweet-alert
|
32
|
+
//= require sweet-alert-confirm
|
33
|
+
```
|
34
|
+
Add the following to application.css:
|
35
|
+
|
36
|
+
```css
|
37
|
+
/*
|
38
|
+
*= require sweet-alert
|
39
|
+
*/
|
40
|
+
```
|
41
|
+
|
42
|
+
### Custom options
|
43
|
+
|
44
|
+
|
45
|
+
You can pass options in `data:`
|
46
|
+
```Ruby
|
47
|
+
data: {
|
48
|
+
:'sweet-alert-confirm: 'Are you ready?'
|
49
|
+
:'confirm-button-text' => 'Im ready',
|
50
|
+
:'cancel-button-text' => 'No way',
|
51
|
+
:'confirm-button-color' => '#66CD00',
|
52
|
+
:'sweet-alert-type' => 'info',
|
53
|
+
text: 'This is a subtitle',
|
54
|
+
:'image-url' => '/pic.png'
|
55
|
+
}
|
56
|
+
```
|
57
|
+
|
58
|
+

|
59
|
+
|
60
|
+
Default options that will be used application wide so it is not nessecary to set the option on each link. Put this object inside your app to override default options with `sweetAlertConfirmConfig` object.
|
61
|
+
|
62
|
+
```Javascript
|
63
|
+
var sweetAlertConfirmConfig = {
|
64
|
+
title: 'Are you sure?',
|
65
|
+
type: 'warning',
|
66
|
+
showCancelButton: true,
|
67
|
+
confirmButtonColor: '#DD6B55',
|
68
|
+
confirmButtonText: 'Ok'
|
69
|
+
};
|
70
|
+
```
|
71
|
+
|
72
|
+
### Before Callback
|
73
|
+
|
74
|
+
A callback that will be runned before alert is shown. Returning `false` will display the alert and `true` will _not_ display it.
|
75
|
+
|
76
|
+
`data-saBeforeFunction='myFunction'`
|
77
|
+
|
78
|
+
## Contribute
|
79
|
+
|
80
|
+
Fork the repo & pull request you fix/feature
|
81
|
+
|
82
|
+
append `RAILS_VERSION=4.1.2` or whichever you target before your `bundle` command ex: `RAILS_VERSION=4.1.2 bundle install`
|
83
|
+
|
84
|
+
please add/modify test examples on fix or features
|
data/Rakefile
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
var sweetAlertConfirmConfig = sweetAlertConfirmConfig || {}; // Add default config object
|
2
|
+
|
3
|
+
(function( $ ) {
|
4
|
+
var sweetAlertConfirm = function(event) {
|
5
|
+
|
6
|
+
swalDefaultOptions = {
|
7
|
+
title: sweetAlertConfirmConfig.title || 'Are you sure?',
|
8
|
+
type: sweetAlertConfirmConfig.type || 'warning',
|
9
|
+
showCancelButton: sweetAlertConfirmConfig.showCancelButton || true,
|
10
|
+
//confirmButtonColor: sweetAlertConfirmConfig.confirmButtonColor || null, //"#DD6B55" removed by Noc, do not apply default color as it triggers inline styles on buttons
|
11
|
+
//Null causes javascript errors when hover is fired on confirm buttons
|
12
|
+
confirmButtonText: sweetAlertConfirmConfig.confirmButtonText || "Ok",
|
13
|
+
cancelButtonText: sweetAlertConfirmConfig.cancelButtonText || "Cancel"
|
14
|
+
}
|
15
|
+
if (sweetAlertConfirmConfig.confirmButtonColor !== null) {
|
16
|
+
swalDefaultOptions.confirmButtonColor = sweetAlertConfirmConfig.confirmButtonColor
|
17
|
+
}
|
18
|
+
|
19
|
+
$linkToVerify = $(this)
|
20
|
+
var swalOptions = swalDefaultOptions;
|
21
|
+
var optionKeys = [
|
22
|
+
'confirm',
|
23
|
+
'text',
|
24
|
+
'sweetAlertType',
|
25
|
+
'showCancelButton',
|
26
|
+
'confirmButtonColor',
|
27
|
+
'cancelButtonColor',
|
28
|
+
'confirmButtonText',
|
29
|
+
'cancelButtonText',
|
30
|
+
'closeOnConfirm',
|
31
|
+
'html',
|
32
|
+
'imageUrl',
|
33
|
+
'allowOutsideClick',
|
34
|
+
'customClass',
|
35
|
+
'remote',
|
36
|
+
'method',
|
37
|
+
'function'
|
38
|
+
];
|
39
|
+
|
40
|
+
function afterAlertCallback(r){
|
41
|
+
if (nameFunction) {
|
42
|
+
window[nameFunction]();
|
43
|
+
}
|
44
|
+
if (swalOptions['remote'] === true) {
|
45
|
+
if (r === false) {
|
46
|
+
return false;
|
47
|
+
} else {
|
48
|
+
$.rails.handleRemote($linkToVerify)
|
49
|
+
}
|
50
|
+
}
|
51
|
+
else if(swalOptions[ 'method' ] !== undefined) {
|
52
|
+
if (r === false) {
|
53
|
+
return false;
|
54
|
+
} else {
|
55
|
+
$.rails.handleMethod($linkToVerify);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
else {
|
59
|
+
if (r === false) {
|
60
|
+
return false;
|
61
|
+
} else {
|
62
|
+
if($linkToVerify.attr('type') == 'submit'){
|
63
|
+
var name = $linkToVerify.attr('name'),
|
64
|
+
data = name ? {name: name, value:$linkToVerify.val()} : null;
|
65
|
+
$linkToVerify.closest('form').data('ujs:submit-button', data);
|
66
|
+
$linkToVerify.closest('form').submit();
|
67
|
+
}
|
68
|
+
else {
|
69
|
+
window.location.href = $linkToVerify.attr('href');
|
70
|
+
}
|
71
|
+
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
var beforeFunction = null;
|
77
|
+
|
78
|
+
$.each($linkToVerify.data(), function(key, val){
|
79
|
+
if ($.inArray(key, optionKeys) >= 0) {
|
80
|
+
swalOptions[key] = val
|
81
|
+
if (key == 'sweetAlertType') {
|
82
|
+
swalOptions['type'] = val;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
// Make a before callback to verify that swal should be shown
|
86
|
+
if(key == 'sabeforefunction') {
|
87
|
+
beforeFunction = val;
|
88
|
+
}
|
89
|
+
});
|
90
|
+
|
91
|
+
// Skip alert if false
|
92
|
+
if(beforeFunction != null) {
|
93
|
+
var beforeRes = window[beforeFunction]($linkToVerify);
|
94
|
+
if(beforeRes === true) {
|
95
|
+
return afterAlertCallback(true); // Skip alert
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
var nameFunction = swalOptions['function'];
|
100
|
+
message = $linkToVerify.attr('data-sweet-alert-confirm')
|
101
|
+
swalOptions['title'] = message
|
102
|
+
swal(swalOptions, afterAlertCallback);
|
103
|
+
|
104
|
+
return false;
|
105
|
+
}
|
106
|
+
$(document).on('ready turbolinks:load turbo:load page:update ajaxComplete', function() {
|
107
|
+
$('[data-sweet-alert-confirm]').on('click', sweetAlertConfirm)
|
108
|
+
});
|
109
|
+
|
110
|
+
$(document).on('ready turbolinks:load turbo:load page:load', function() {
|
111
|
+
//To avoid "Uncaught TypeError: Cannot read property 'querySelector' of null" on turbolinks
|
112
|
+
if (typeof window.sweetAlertInitialize === 'function') {
|
113
|
+
window.sweetAlertInitialize();
|
114
|
+
}
|
115
|
+
});
|
116
|
+
|
117
|
+
|
118
|
+
})( jQuery );
|
@@ -0,0 +1,37 @@
|
|
1
|
+
module SweetAlertConfirm
|
2
|
+
module ViewHelpers
|
3
|
+
def link_to(*args, &block)
|
4
|
+
html_options = args[block_given? ? 1 : 2] || {}
|
5
|
+
|
6
|
+
if options_has_confirm?(html_options)
|
7
|
+
html_options['data-sweet-alert-confirm'] = html_options.delete(:confirm) ||
|
8
|
+
html_options[:data].delete(:confirm)
|
9
|
+
end
|
10
|
+
super *args, &block
|
11
|
+
end
|
12
|
+
|
13
|
+
def submit_tag(value = 'Save changes', options = {})
|
14
|
+
options['data-sweet-alert-confirm'] = options.delete(:confirm) || options[:data].delete(:confirm) if options_has_confirm?(options)
|
15
|
+
super value, options
|
16
|
+
end
|
17
|
+
|
18
|
+
def button_tag(*args, &block)
|
19
|
+
html_options = args[block_given? ? 0 : 1] || {}
|
20
|
+
|
21
|
+
if options_has_confirm?(html_options)
|
22
|
+
html_options['data-sweet-alert-confirm'] = html_options.delete(:confirm) ||
|
23
|
+
html_options[:data].delete(:confirm)
|
24
|
+
end
|
25
|
+
super *args, &block
|
26
|
+
end
|
27
|
+
|
28
|
+
protected
|
29
|
+
def options_has_confirm?(options)
|
30
|
+
if (options[:confirm] || (options[:data] && options[:data][:confirm]))
|
31
|
+
true
|
32
|
+
else
|
33
|
+
false
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
data/spec/dummy/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
data/spec/dummy/Rakefile
ADDED
File without changes
|
@@ -0,0 +1,17 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require sweetalert
|
16
|
+
//= require sweet-alert-confirm
|
17
|
+
// require_tree .
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require turbolinks
|
16
|
+
//= require sweetalert
|
17
|
+
//= require sweet-alert-confirm
|
18
|
+
// require_tree .
|
@@ -0,0 +1,16 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require sweetalert
|
14
|
+
*= require_tree .
|
15
|
+
*= require_self
|
16
|
+
*/
|
@@ -0,0 +1,16 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require sweetalert.css
|
14
|
+
*=* require_tree .
|
15
|
+
*=* require_self
|
16
|
+
*/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
<h1> You murdered a silly cow</h1>
|
@@ -0,0 +1 @@
|
|
1
|
+
$('#remote-confirm').html('You murdered a silly cow with ajax');
|
@@ -0,0 +1 @@
|
|
1
|
+
<h1> You got a pretty cow</h1>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= link_to 'Basic confirm', get_cow_path, id: 'basic-confirm', data: { text: 'nanana', confirm: 'Are you sure?' } %>
|
2
|
+
<%= link_to 'Delete confirm', delete_cow_path,method: :delete, id: 'method-confirm', data: { text: 'nanana', confirm: 'Are you sure?' } %>
|
3
|
+
<%= link_to 'Remote confirm', delete_cow_path,method: :delete, id: 'remote-confirm', data: { remote: 'true', 'sweet-alert-type' => 'warning', text: 'nanana', confirm: 'Are you sure?' } %>
|
4
|
+
<%= link_to 'Custom confirm', get_cow_path, id: 'custom-confirm', data: {
|
5
|
+
:'confirm-button-text' => 'Im ready',
|
6
|
+
:'cancel-button-text' => 'No way',
|
7
|
+
:'confirm-button-color' => '#66CD00',
|
8
|
+
:'sweet-alert-type' => 'info',
|
9
|
+
text: 'This is a subtitle',
|
10
|
+
confirm: 'Are you ready?'
|
11
|
+
} %>
|
12
|
+
|
13
|
+
<%= form_tag(delete_cow_path, method: :delete) do %>
|
14
|
+
<%= submit_tag 'Submit to delete cow', id: 'submit-delete', data: {confirm: 'Are you sure?'} %>
|
15
|
+
<% end %>
|
16
|
+
|
17
|
+
<%= form_tag(delete_cow_path, method: :delete) do %>
|
18
|
+
<%= button_tag('Button_tag confirm', id: 'button-confirm', data: { text: 'nanana', confirm: 'Are you sure?' }) %>
|
19
|
+
<% end %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= link_to 'Index', confirms_page_path %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Dummy</title>
|
5
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
6
|
+
<% if ENV['USE_TURBOLINKS'] %>
|
7
|
+
<%= javascript_include_tag 'application_turbolinks', "data-turbolinks-track" => true %>
|
8
|
+
<% else %>
|
9
|
+
<%= javascript_include_tag 'application', "data-turbolinks-track" => false %>
|
10
|
+
<% end %>
|
11
|
+
<%= csrf_meta_tags %>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
|
15
|
+
<%= yield %>
|
16
|
+
|
17
|
+
</body>
|
18
|
+
</html>
|
data/spec/dummy/bin/rake
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
#require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "action_view/railtie"
|
8
|
+
require "sprockets/railtie"
|
9
|
+
# require "rails/test_unit/railtie"
|
10
|
+
|
11
|
+
Bundler.require(*Rails.groups)
|
12
|
+
require "sweet-alert-confirm"
|
13
|
+
|
14
|
+
module Dummy
|
15
|
+
class Application < Rails::Application
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
17
|
+
# Application configuration should go into files in config/initializers
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
19
|
+
|
20
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
21
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
22
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
23
|
+
|
24
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
25
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
26
|
+
# config.i18n.default_locale = :de
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|