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

@spartan-components/sc-form

v0.0.4

Published

A thin wrapper for html form elements to improve error handling.

Downloads

53

Readme

<sc-form> element

A thin wrapper for html <form> elements to imporove error handling.

<sc-form> optimizes native html form validation:

  • Validates form inputs when they loose focus
  • Validates all form inputs when the form is submitted
  • Adds an error message underneath the input label (instead of adding a popup)
  • Adds a validation pattern for checkbox groups

Installation

Available on npm as @spartan-components/sc-form.

$ npm install --save @spartan-components/sc-form

Usage

Script

Import as ES modules:

import { SCForm } from '@spartan-components/sc-form';

Include with a script tag:

<script type="module" src="./node_modules/@spartan-components/dist/sc-form.js"></script>

Or use the minified version:

<script type="module" src="./node_modules/@spartan-components/dist/sc-form.min.js"></script>

<sc-form>

Simply wrap <sc-form> around a <form> tag:

<sc-form>
  <form></form>
</sc-form>

Format

The component expects the form elements to be written in a specific style.

For regular <input>, <textarea> and <select> elements, a label is required that is referenced using id and for:

<sc-form>
  <form>
    <label for="firstName">First name</label>
    <input type="text" id="firstName" required>
  </form>
</sc-form>

When you want to use radio buttons or multiple checkboxes, you need to group them inside a <fieldset> and add a <legend> to it.

Radio group

For radio groups, add the required attribute to all <input type="radio"> elements, and set role="radiogroup" on the <fieldset>:

<sc-form>
  <form>
    <fieldset role="radiogroup">
      <legend>Choose one color</legend>

      <input type="radio" name="color" id="red" value="red" required>
      <label for="red">Red</label>

      <input type="radio" name="color" id="green" value="green" required>
      <label for="green">Green</label>

      <input type="radio" name="color" id="blue" value="blue" required>
      <label for="blue">Blue</label>
    </fieldset>
  </form>
</sc-form>

Checkbox group

There is no native form validation pattern to check if at least one checkbox of a checkbox group is ticked. <sc-form> enables this functionality.

For this, set the data-required attribute on the <fieldset>. You can optionally specify a custom error message by using the data-error attribute.

<sc-form>
  <form>
    <fieldset data-required data-error="Please choose at least one fruit">
      <legend>What fruits do you like?</legend>

      <input type="checkbox" name="fruits" id="banana" value="banana" />
      <label for="banana">Banana</label>

      <input type="checkbox" name="fruits" id="apple" value="apple" />
      <label for="apple">Apple</label>

      <input type="checkbox" name="fruits" id="pear" value="pear" />
      <label for="pear">Pear</label>
    </fieldset>
  </form>
</sc-form>

Form submission with JS

To submit the form using JS check if the form is valid by calling the checkValidity() method of the form:

// get reference to form element
const form = document.querySelector('form');

// listen for submit
form.addEventListener('submit', function() {
  // check if form is valid
  if(form.checkValidity()) {
    // submit the form
    form.submit();
  }
});