| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /**
- * FormValidation (http://formvalidation.io)
- * The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
- *
- * @author https://twitter.com/formvalidation
- * @copyright (c) 2013 - 2016 Nguyen Huu Phuoc
- * @license http://formvalidation.io/license/
- */
- /**
- * This class supports validating SemanticUI form (http://semantic-ui.com/)
- */
- (function($) {
- FormValidation.Framework.Semantic = function(element, options) {
- options = $.extend(true, {
- button: {
- selector: '[type="submit"]:not([formnovalidate])',
- // CSS class of disabled button
- // http://semantic-ui.com/elements/button.html#disabled
- disabled: 'disabled'
- },
- control: {
- valid: '',
- invalid: ''
- },
- err: {
- // http://semantic-ui.com/elements/label.html#pointing
- clazz: 'ui red pointing label',
- parent: '^.*(field|column).*$'
- },
- // When using feedback icon, the input must place inside 'ui input icon' element
- // <div class="ui input icon">
- // <input type="text" />
- // </div>
- // See http://semantic-ui.com/elements/input.html#icon
- icon: {
- // http://semantic-ui.com/elements/icon.html
- valid: null, // 'checkmark icon'
- invalid: null, // 'remove icon'
- validating: null, // 'refresh icon'
- feedback: 'fv-control-feedback'
- },
- row: {
- // http://semantic-ui.com/collections/form.html
- selector: '.fields',
- valid: 'fv-has-success',
- invalid: 'error',
- feedback: 'fv-has-feedback'
- }
- }, options);
- FormValidation.Base.apply(this, [element, options]);
- };
- FormValidation.Framework.Semantic.prototype = $.extend({}, FormValidation.Base.prototype, {
- /**
- * Specific framework might need to adjust the icon position
- *
- * @param {jQuery} $field The field element
- * @param {jQuery} $icon The icon element
- */
- _fixIcon: function($field, $icon) {
- var type = $field.attr('type');
- if ('checkbox' === type || 'radio' === type) {
- var $fieldParent = $field.parent();
- if ($fieldParent.hasClass(type)) {
- $icon.insertAfter($fieldParent);
- }
- }
- },
- /**
- * Create a tooltip or popover
- * It will be shown when focusing on the field
- *
- * @param {jQuery} $field The field element
- * @param {String} message The message
- * @param {String} type Can be 'tooltip' or 'popover'
- */
- _createTooltip: function($field, message, type) {
- var $icon = $field.data('fv.icon');
- if ($icon) {
- // Remove the popup if it's already exists
- if ($icon.popup('exists')) {
- $icon.popup('remove popup')
- .popup('destroy');
- }
- // http://semantic-ui.com/modules/popup.html
- switch (type) {
- case 'popover':
- $icon
- .css({
- 'cursor': 'pointer'
- })
- .popup({
- content: message,
- position: 'top center'
- });
- break;
- case 'tooltip':
- /* falls through */
- default:
- $icon
- .css({
- 'cursor': 'pointer'
- })
- .popup({
- content: message,
- position: 'top center',
- variation: 'inverted'
- });
- break;
- }
- }
- },
- /**
- * Destroy the tooltip or popover
- *
- * @param {jQuery} $field The field element
- * @param {String} type Can be 'tooltip' or 'popover'
- */
- _destroyTooltip: function($field, type) {
- var $icon = $field.data('fv.icon');
- if ($icon && $icon.popup('exists')) {
- $icon
- .css({
- 'cursor': ''
- })
- .popup('remove popup')
- .popup('destroy');
- }
- },
- /**
- * Hide a tooltip or popover
- *
- * @param {jQuery} $field The field element
- * @param {String} type Can be 'tooltip' or 'popover'
- */
- _hideTooltip: function($field, type) {
- var $icon = $field.data('fv.icon');
- if ($icon) {
- $icon.popup('hide');
- }
- },
- /**
- * Show a tooltip or popover
- *
- * @param {jQuery} $field The field element
- * @param {String} type Can be 'tooltip' or 'popover'
- */
- _showTooltip: function($field, type) {
- var $icon = $field.data('fv.icon');
- if ($icon) {
- $icon.popup('show');
- }
- }
- });
- }(jQuery));
|