npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kevinbaubet/customform

v5.0.4

Published

CustomForm permet de personnaliser les éléments d'un formulaire. Éléments supportés : checkbox, radio, select et file (il est possible d'ajouter d'autres éléments).

Downloads

23

Readme

Documentation CustomForm

CustomForm permet de personnaliser les éléments d'un formulaire. Éléments supportés : checkbox, radio, select et file (il est possible d'ajouter d'autres éléments).

  • Compatibilité : IE10+
  • Dépendance : jQuery

Initialiser CustomForm

var customForm = $('form').customForm([options], [supports]);
  • @param {object} options (optionnel) Options de CustomForm

      var customForm = $('form').customForm({
          supportComplete: function () {
              console.log(this.support.type + ' loaded');
          }
      });
  • @param {object} supports (optionnel) Ajouter/modifier un ou plusieurs supports

      // Dans le form, ne customiser que le #select-1 pour les selects.
      var customForm = $('form').customForm({}, {
          select: '#select-1'
      });
        

Initialiser un support

Un support correspond à un type d'input à personnaliser (checkbox, radio, select, etc).

customForm.setSupport('radio', [options]);

Supports

Liste des supports présents dans CustomForm :

type: 'selecteur'
$.CustomForm.supports = {
    checkbox: 'input[type="checkbox"]',
    radio: 'input[type="radio"]',
    select: 'select',
    file: 'input[type="file"]'
};
Documentations pour chaque support :

Support supplémentaire

Options CustomForm

| Option | Type | Valeur par défaut | Description | |----------------------------------|----------|-------------------|-----------------------------------------------------------| | classes | object | Voir ci-dessous | Objet pour les options ci-dessous | |     prefix | string | 'customform' | Préfix de classe | |     input | string | '{prefix}-input' | Classe autour de l'input | |     disabled | string | 'is-disabled' | Classe quand l'input est désactivé | | tabindexStart | integer | 0 | Valeur de l'attribut tabindex au chargement de CustomForm | | supportBeforeLoad | function | undefined | Callback au début du chargement du support | | supportComplete | function | undefined | Callback à la fin du chargement du support |

API CustomForm

API utilisable seulement avec l'objet CustomForm.

setOptions()

Enregistre les options pour un support

  • @param {string} type Type de support

  • @param {object} options Options du support

      customForm.setOptions('radio', {
          onClick: function () {
              console.log('click on radio');
          }
      });

setSupports()

Met en place tous les supports

  • @param {array} types Liste des types de support à exécuter

      customForm.setSupports(['checkbox', 'radio']);

setSupport()

Met en place un support

  • @param {string} type Type de support

  • @param {object=undefined} options Options du support

  • @return {object} support infos

      customForm.setSupport('checkbox');
      customForm.setSupport('radio');

getSupportClassName()

Récupère le nom de la classe du support correspondant

  • @param {string} support Nom du support
  • @return {string}

getInstance()

Récupère l'instance via l'élément input

  • @param {object} instances Retour de setSupport() ou liste des instances

  • @param {object} input Élément input

  • @return {object|boolean}

      var checkboxes = customForm.setSupport('checkbox');
      var checkbox = customForm.getInstance(checkboxes, $('#checkbox1-1'));
        
      if (checkbox instanceof $.CustomFormCheck) {
            
      }

getInstanceName()

Récupère le nom formaté d'une instance via l'élément input

  • @param {object} input Élément input
  • @return {boolean}

API Supports

API globale à tous les supports de CustomForm.

onReady()

Une fois customForm prêt

  • @param {function} callback Fonction à exécuter

      var checkboxes = customForm.setSupport('checkbox');
      var checkbox = customForm.getInstance(checkboxes, $('#checkbox1-1'));
        
      if (checkbox instanceof $.CustomFormCheck) {
          checkbox.getInput().on('click', function () {
              checkbox.onReady(function () {
                  checkbox.reset();
              });
          });
      }

isEmpty()

Détermine si la valeur de l'input est vide

  • @return {boolean}

isDisabled()

Détermine si l'input est désactivé

  • @return {boolean}

isRequired()

Détermine si l'input est requis

  • @return {boolean}

getElements()

Retourne tous les éléments de customform

  • @return {object}

getContext()

Retourne le contexte de customform (form)

  • @return {object}

getInput()

Retourne l'élément input

  • @return {object}

getInputType()

Retourne le type de l'élément input

  • @return {string}

getWrapper()

Retourne le wrapper générique global (.customform)

  • @return {object}

getWrapperInput()

Retourne le wrapper générique de l'élément input (.customform-input)

  • @return {object}

setLog()

Créer un log

  • @param {string} log

  • @param {string=undefined} type

      customForm.setLog('information message');
      customForm.setLog('warning!', 'warn');
      customForm.setLog('error message', 'error');

replacePrefixClass()

Remplace la chaine {prefix} par la classe de préfix dans toutes les classes