JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 243
  • Score
    100M100P100Q95327F
  • License MIT

Assign the next id in sequence to an element, if an id property does not already exist.

Package Exports

  • makeup-next-id

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (makeup-next-id) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

makeup-next-id

Build Status Coverage Status Dependency status devDependency status

Assigns the next id in sequence to an element, if an id property does not already exist. The id will consist of a configurable prefix (default: 'nid'), followed by three randomly generated chars, then a number in sequence. For example: nid-sdv-1, nid-sdv-2, nid-sdv-3, etc. If you need a known id, ahead of time, please use a different approach!

A vanilla JavaScript port of jquery-next-id.

Experimental

This module is still in an experimental state, until it reaches v1.0.0 you must consider all minor releases as breaking changes. Patch releases may introduce new features, but will be backwards compatible.

Install

// via npm
npm install makeup-next-id

// via yarn
yarn add makeup-next-id

Example

// require the module
const nextId = require('makeup-next-id');

// get NodeList
const widgets = document.querySelectorAll('.widget');

// assign next id to each element
widgets.forEach(function(el) {
    nextId(el);
});

Markup before:

<div class="widget"></div>
<div class="widget"></div>
<div class="widget"></div>

Markup after:

<div class="widget" id="nid-tCa-1"></div>
<div class="widget" id="nid-tCa-2"></div>
<div class="widget" id="nid-tCa-3"></div>

Custom Events

  • None

Polyfills

  • None

Development

  • npm start
  • npm test
  • npm run lint
  • npm run fix
  • npm run build
  • npm run clean

Test Reports

Each test run will generate the following reports:

  • /reports/coverage contains Istanbul code coverage report
  • /reports/html contains HTML test report

CI Build

https://travis-ci.org/makeup-js/makeup-next-id

Code Coverage

https://coveralls.io/github/makeup-js/makeup-next-id