1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_assets/javascripts/bigchain/forms.js
2017-05-22 11:22:04 +02:00

70 lines
1.9 KiB
JavaScript

//=include parsleyjs/dist/parsley.js
//=include textarea-autogrow/textarea-autogrow.js
//=include select2/dist/js/select2.js
var Forms = (function(w, d, $) {
'use strict'
var app, _private, _config
_config = {
form: $('form'),
parsleyForm: $('form.js-parsley')
}
_private = {
formValidation: function() {
// kick in Parsley.js but only if its js is present
// and form has `js-parsley` class
if ( window.Parsley && _config.form.hasClass('js-parsley') ) {
_config.parsleyForm.parsley({
trigger: 'change'
})
}
},
formEmptyValidation: function() {
_config.form.find('.form-control').each(function() {
if ($(this).val() == '') {
$(this).addClass('is-empty')
}
$(this).blur(function() {
if ($(this).val() == '') {
$(this).addClass('is-empty')
} else {
$(this).removeClass('is-empty')
}
})
})
},
initAutogrow: function() {
if (_config.form.find('textarea').length) {
var textarea = document.querySelector('textarea')
var growingTextarea = new Autogrow(textarea)
}
},
initSelect: function(el) {
$.fn.select2.defaults.set('minimumResultsForSearch', '15')
$.fn.select2.defaults.set('theme', 'bigchaindb')
$.fn.select2.defaults.set('placeholder', '\xa0') // that's  
_config.form.find('select').select2();
}
}
app = {
init: function() {
_private.formValidation()
_private.formEmptyValidation()
_private.initAutogrow()
_private.initSelect()
}
}
return app
})(window, document, jQuery)