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

pick-html-attribute-props

v1.3.2

Published

Pickers and other helper functions used to filter standard HTML attribute values from an object

Downloads

267

Readme

pick-html-attribute-props NPM Package

ISC License

"Pickers" and other helper functions used to filter standard HTML attribute values from an object.

NOTE: This library was created with the intent to be used by React components, but React is not required to use this library.

Changelog

Install

$ npm i --save pick-html-attribute-props

Usage

import React from 'react';
import {
  pickFormHtmlAttrProps,
  pickGlobalHtmlAttrProps,
  pickInputHtmlAttrProps,
  pickTextAreaHtmlAttrProps
} from 'pick-html-attribute-props';

export function MyComponent(props) {
  return (
    <div {...pickGlobalHtmlAttrProps(props)}>
      {/* ... */}
    </div>
  );
}

export function MyFormComponent(props) {
  return (
    <form {...pickFormHtmlAttrProps(props)} {/* ... */}>
      {/* ... */}
    </form>
  );
}

export function MyInputComponent(props) {
  return (
    <input {...pickInputHtmlAttrProps(props)} {/* ... */} />
  );
}

export function MyTextAreaComponent(props) {
  return (
    <textarea {...pickTextAreaHtmlAttrProps(props)}>
      {/* ... */}
    </textarea>
  );
}

API

pickFormHtmlAttrProps(obj[, options])

Creates a new object composed of properties "picked" from obj that are valid HTML Form attributes or are event handlers (unless specified otherwise in options) found in the given obj. If obj is not defined, then an empty object is returned.

Parameters

  • obj ?Object - object to be used when searching for HTML attribute values.
  • [options.omitEventHandlers = false] ?Boolean - when true, event handlers will be omitted from the returned object.

Returns !Object

  • A new object composed of only those properties that were determined to be valid HTML Form attributes or are event handlers (unless options.omitEventHandlers is true, then all event handlers will be omitted form the returned object). If none are found, then an empty object is returned.

Examples

import { pickFormHtmlAttrProps } from 'pick-html-attribute-props';

pickFormHtmlAttrProps(null); // returns `{}`
pickFormHtmlAttrProps({
  id: 42,
  type: 'text',
  defaultValue: 'Fish fingers and custard',
  className: 'my-class-name',
  onChange: handleChange,
  "data-id": "myDataId",
  "aria-blah": "myAriaProp"
}); // returns a new object that contains all of the properties in the original object

pickFormHtmlAttrProps({ onChange: handleChange }, { omitEventHandlers: true }); // returns `{}` (event handlers are being ommitted from result)
pickFormHtmlAttrProps({ id: 42, name: "Doctor Who", blah: 78 });                // returns `{ id: 42, name: "Doctor Who" }` ("blah" is not a valid HTML Form attribute)

pickGlobalHtmlAttrProps(obj[, options])

Creates a new object composed of properties "picked" from obj that are valid HTML attributes that can be supplied to any HTML element or are event handlers (unless specified otherwise in options) found in the given obj. If obj is not defined, then an empty object is returned.

Parameters

  • obj ?Object - object to be used when searching for HTML attribute values.
  • [options.omitEventHandlers = false] ?Boolean - when true, event handlers will be omitted from the returned object.

Returns !Object

  • A new object composed of only those properties that were determined to be valid, globally applicable HTML attributes or are event handlers (unless options.omitEventHandlers is true, then all event handlers will be omitted form the returned object). If none are found, then an empty object is returned.

Examples

import { pickGlobalHtmlAttrProps } from 'pick-html-attribute-props';

pickGlobalHtmlAttrProps(null); // returns `{}`
pickGlobalHtmlAttrProps({
  id: 42,
  className: 'my-class-name',
  onChange: handleChange,
  "data-id": "myDataId",
  "aria-blah": "myAriaProp"
}); // returns a new object that contains all of the properties in the original object

pickGlobalHtmlAttrProps({ onChange: handleChange }, { omitEventHandlers: true }); // returns `{}` (event handlers are being ommitted from result)
pickGlobalHtmlAttrProps({ id: 42, name: "Doctor Who", blah: 78 });                // returns `{ id: 42 }` ("name" & "blah" are not a valid HTML attribute for all HTML elements)

pickInputHtmlAttrProps(obj[, options])

Creates a new object composed of properties "picked" from obj that are valid HTML Input attributes or are event handlers (unless specified otherwise in options) found in the given obj. If obj is not defined, then an empty object is returned.

Parameters

  • obj ?Object - object to be used when searching for HTML attribute values.
  • [options.omitEventHandlers = false] ?Boolean - when true, event handlers will be omitted from the returned object.

Returns !Object

  • A new object composed of only those properties that were determined to be valid HTML Input attributes or are event handlers (unless options.omitEventHandlers is true, then all event handlers will be omitted form the returned object). If none are found, then an empty object is returned.

Examples

import { pickInputHtmlAttrProps } from 'pick-html-attribute-props';

pickInputHtmlAttrProps(null); // returns `{}`
pickInputHtmlAttrProps({
  id: 42,
  type: 'text',
  defaultValue: 'Fish fingers and custard',
  className: 'my-class-name',
  onChange: handleChange,
  "data-id": "myDataId",
  "aria-blah": "myAriaProp"
}); // returns a new object that contains all of the properties in the original object

pickInputHtmlAttrProps({ onChange: handleChange }, { omitEventHandlers: true }); // returns `{}` (event handlers are being ommitted from result)
pickInputHtmlAttrProps({ id: 42, name: "Doctor Who", blah: 78 });                // returns `{ id: 42, name: "Doctor Who" }` ("blah" is not a valid HTML Input attribute)

pickTextAreaHtmlAttrProps(obj[, options])

Creates a new object composed of properties "picked" from obj that are valid HTML TextArea attributes and event handlers (unless specified otherwise in options) found in the given obj. If obj is not defined, then an empty object is returned.

Parameters

  • obj ?Object - object to be used when searching for HTML attribute values.
  • [options.omitEventHandlers = false] ?Boolean - when true, event handlers will be omitted from the returned object.

Returns !Object

  • A new object composed of only those properties that were determined to be valid HTML TextArea attributes or are event handlers (unless options.omitEventHandlers is true, then all event handlers will be omitted form the returned object). If none are found, then an empty object is returned.

Examples

import { pickTextAreaHtmlAttrProps } from 'pick-html-attribute-props';

pickTextAreaHtmlAttrProps(null); // returns `{}`
pickTextAreaHtmlAttrProps({
  id: 42,
  defaultValue: 'Fish fingers and custard',
  className: 'my-class-name',
  onChange: handleChange,
  "data-id": "myDataId",
  "aria-blah": "myAriaProp"
}); // returns a new object that contains all of the properties in the original object

pickTextAreaHtmlAttrProps({ onChange: handleChange }, { omitEventHandlers: true }); // returns `{}` (event handlers are being ommitted from result)
pickTextAreaHtmlAttrProps({ id: 42, name: "Doctor Who", blah: 78 });                // returns `{ id: 42, name: "Doctor Who" }` ("blah" is not a valid HTML TextArea attribute)

Attribute Name Getters

getFormlHtmlAttrNames()

Returns a list of attribute names that are valid for an HTML Form element.

NOTE: A list of attribute names returned can be found in attr-names.js.

Example

import { getFormHtmlAttrNames } from 'pick-html-attribute-props/attr-names';

console.log(getFormHtmlAttrNames()); // list of attribute names that are valid for an HTML Form element

getGlobalHtmlAttrNames()

Returns a list of attribute names that are valid for any HTML element.

NOTE: A list of attribute names returned can be found in attr-names.js.

Example

import { getGlobalHtmlAttrNames } from 'pick-html-attribute-props/attr-names';

console.log(getGlobalHtmlAttrNames()); // list of attribute names that are valid for any HTML element

getInputHtmlAttrNames()

Returns a list of attribute names that are valid for an HTML Input element.

NOTE: A list of attribute names returned can be found in attr-names.js.

Example

import { getInputHtmlAttrNames } from 'pick-html-attribute-props/attr-names';

console.log(getInputHtmlAttrNames()); // list of attribute names that are valid for an HTML Input element

getTextAreaHtmlAttrNames()

Returns a list of attribute names that are valid for an HTML TextArea element.

NOTE: A list of attribute names returned can be found in attr-names.js.

Example

import { getTextAreaHtmlAttrNames } from 'pick-html-attribute-props/attr-names';

console.log(getTextAreaHtmlAttrNames()); // list of attribute names that are valid for an HTML TextArea element

Prop Name Predicates

propertyIsDataOrAriaAttr(propName)

Determines if the given propName represents a "data" or "aria" attribute.

Parameters

  • propName ?String - the name of the property to check.

Returns !Boolean

  • true if propName is a defined String and begins with begins with data- or aria-; otherwise, false.

Examples

import { propertyIsDataOrAriaAttr } from 'pick-html-attribute-props/prop-name-predicates';

console.log(propertyIsDataOrAriaAttr("data-blah")) // true
console.log(propertyIsDataOrAriaAttr("aria-blah")) // true

console.log(propertyIsDataOrAriaAttr(null))       // false (parameter isn't a String)
console.log(propertyIsDataOrAriaAttr("datablah")) // false (doesn't start with "data-")
console.log(propertyIsDataOrAriaAttr("ariablah")) // false (doesn't start with "aria-")

propertyIsDataOrAriaAttrOrEventHandler(propName)

Determines if the given propName represents an event handler, a "data" attribute, or an "aria" attribute.

Parameters

  • propName ?String - the name of the property to check.

Returns !Boolean

  • true if propName is a defined String and begins with on followed by a capitalized letter, begins with data-, or begins with aria-; otherwise, false.

Examples

import { propertyIsDataOrAriaAttrOrEventHandler } from 'pick-html-attribute-props/prop-name-predicates';

console.log(propertyIsDataOrAriaAttrOrEventHandler("onChange")); // true
console.log(propertyIsDataOrAriaAttrOrEventHandler("onBlah"));   // true

console.log(propertyIsDataOrAriaAttrOrEventHandler("data-blah")) // true
console.log(propertyIsDataOrAriaAttrOrEventHandler("aria-blah")) // true

console.log(propertyIsDataOrAriaAttrOrEventHandler(null))            // false (parameter isn't a String)
console.log(propertyIsDataOrAriaAttrOrEventHandler("onchange"));     // false ("on" is not followed by a capitalized letter)
console.log(propertyIsDataOrAriaAttrOrEventHandler("handleChange")); // false (doesn't start with "on")
console.log(propertyIsDataOrAriaAttrOrEventHandler("datablah"))      // false (doesn't start with "data-")
console.log(propertyIsDataOrAriaAttrOrEventHandler("ariablah"))      // false (doesn't start with "aria-")

propertyIsEventHandler(propName)

Determines if the given propName likely represents an event handler.

Parameters

  • propName ?String - the name of the property to check.

Returns !Boolean

  • true if propName is a defined String and begins with on followed by a capitalized letter; otherwise, false.

Examples

import { propertyIsEventHandler } from 'pick-html-attribute-props/prop-name-predicates';

console.log(propertyIsEventHandler("onChange")); // true
console.log(propertyIsEventHandler("onBlah"));   // true

console.log(propertyIsEventHandler(null))            // false (parameter isn't a String)
console.log(propertyIsEventHandler("onchange"));     // false ("on" is not followed by a capitalized letter)
console.log(propertyIsEventHandler("handleChange")); // false (doesn't start with "on")

License

ISC License (ISC)

Copyright (c) 2023, Brandon D. Sara (https://bsara.dev/)

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.