| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Document : be_ui_activity.js
- * Author : pixelcave
- * Description: Custom JS code used in Activity Page
- */
- var BeUIActivity = function() {
- // Randomize progress bars values
- var barsRandomize = function(){
- jQuery('.js-bar-randomize').on('click', function(){
- jQuery(this)
- .parents('.block')
- .find('.progress-bar')
- .each(function() {
- var el = jQuery(this);
- var random = Math.floor((Math.random() * 91) + 10);
- // Update progress width
- el.css('width', random + '%');
- // Update progress label
- jQuery('.progress-bar-label', el).html(random + '%');
- });
- });
- };
- // SweetAlert2, for more examples you can check out https://github.com/limonte/sweetalert2
- var sweetAlert2 = function(){
- // Set default properties
- swal.setDefaults({
- buttonsStyling: false,
- confirmButtonClass: 'btn btn-lg btn-alt-success m-5',
- cancelButtonClass: 'btn btn-lg btn-alt-danger m-5',
- inputClass: 'form-control'
- });
- // Init a simple alert on button click
- jQuery('.js-swal-alert').on('click', function(){
- swal('Hi, this is a simple alert!');
- });
- // Init an success alert on button click
- jQuery('.js-swal-success').on('click', function(){
- swal('Success', 'Everything updated perfectly!', 'success');
- });
- // Init an info alert on button click
- jQuery('.js-swal-info').on('click', function(){
- swal('Info', 'Just an informational modal!', 'info');
- });
- // Init an warning alert on button click
- jQuery('.js-swal-warning').on('click', function(){
- swal('Warning', 'Something needs your attention!', 'warning');
- });
- // Init an error alert on button click
- jQuery('.js-swal-error').on('click', function(){
- swal('Oops...', 'Something went wrong!', 'error');
- });
- // Init an question alert on button click
- jQuery('.js-swal-question').on('click', function(){
- swal('Question', 'Are you sure?', 'question');
- });
- // Init an example confirm alert on button click
- jQuery('.js-swal-confirm').on('click', function(){
- swal({
- title: 'Are you sure?',
- text: 'You will not be able to recover this imaginary file!',
- type: 'warning',
- showCancelButton: true,
- confirmButtonColor: '#d26a5c',
- confirmButtonText: 'Yes, delete it!',
- html: false,
- preConfirm: function() {
- return new Promise(function (resolve) {
- setTimeout(function () {
- resolve();
- }, 50);
- });
- }
- }).then(function(result){
- if (result.value) {
- swal('Deleted!', 'Your imaginary file has been deleted.', 'success');
- // result.dismiss can be 'overlay', 'cancel', 'close', 'esc', 'timer'
- } else if (result.dismiss === 'cancel') {
- swal('Cancelled', 'Your imaginary file is safe :)', 'error');
- }
- });
- });
- };
- return {
- init: function() {
- // Init randomize bar values
- barsRandomize();
- // Init SweetAlert2
- sweetAlert2();
- }
- };
- }();
- // Initialize when page loads
- jQuery(function(){ BeUIActivity.init(); });
|