• Stars
    star
    399
  • Rank 104,213 (Top 3 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 9 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

tiny, extremely modular, DOM helper library for IE9+

dom-helpers

tiny modular DOM lib for ie9+

Install

npm i -S dom-helpers

Mostly just naive wrappers around common DOM API inconsistencies, Cross browser work is minimal and mostly taken from jQuery. This library doesn't do a lot to normalize behavior across browsers, it mostly seeks to provide a common interface, and eliminate the need to write the same damn if (ie9) statements in every project.

For example on() works in all browsers ie9+ but it uses the native event system so actual event oddities will continue to exist. If you need robust cross-browser support, use jQuery. If you are just tired of rewriting:

if (document.addEventListener)
  return (node, eventName, handler, capture) =>
    node.addEventListener(eventName, handler, capture || false)
else if (document.attachEvent)
  return (node, eventName, handler) =>
    node.attachEvent('on' + eventName, handler)

over and over again, or you need a ok getComputedStyle polyfill but don't want to include all of jQuery, use this.

dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use es5-shim where needed

The real advantage to this collection is that any method can be required individually, meaning bundlers like webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as React where you only occasionally need to do direct DOM manipulation.

All methods are exported as a flat namesapce

var helpers = require('dom-helpers')
var offset = require('dom-helpers/offset')

// style is a function
require('dom-helpers/css')(node, { width: '40px' })
  • dom-helpers
    • ownerDocument(element): returns the element's document owner
    • ownerWindow(element): returns the element's document window
    • activeElement: return focused element safely
    • querySelectorAll(element, selector): optimized qsa, uses getElementBy{Id|TagName|ClassName} if it can.
    • contains(container, element)
    • height(element, useClientHeight)
    • width(element, useClientWidth)
    • matches(element, selector)
    • offset(element) -> { top: Number, left: Number, height: Number, width: Number}
    • offsetParent(element): return the parent node that the element is offset from
    • position(element, [offsetParent]: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" one
    • scrollTop(element, [value])
    • scrollLeft(element, [value])
    • scrollParent(element)
    • addClass(element, className)
    • removeClass(element, className)
    • hasClass(element, className)
    • toggleClass(element, className)
    • style(element, propName) or style(element, objectOfPropValues)
    • getComputedStyle(element) -> getPropertyValue(name)
    • animate(node, properties, duration, easing, callback) programmatically start css transitions
    • transitionEnd(node, handler, [duration], [padding]) listens for transition end, and ensures that the handler if called even if the transition fails to fire its end event. Will attempt to read duration from the element, otherwise one can be provided
    • addEventListener(node, eventName, handler, [options]):
    • removeEventListener(node, eventName, handler, [options]):
    • listen(node, eventName, handler, [options]): wraps addEventlistener and returns a function that calls removeEventListener for you
    • filter(selector, fn): returns a function handler that only fires when the target matches or is contained in the selector ex: on(list, 'click', filter('li > a', handler))
    • requestAnimationFrame(cb) returns an ID for canceling
    • cancelAnimationFrame(id)
    • scrollbarSize([recalc]) returns the scrollbar's width size in pixels
    • scrollTo(element, [scrollParent])

More Repositories

1

react-bootstrap

Bootstrap components built with React
TypeScript
22,184
star
2

react-router-bootstrap

Integration between React Router and React-Bootstrap
JavaScript
1,692
star
3

react-overlays

Utilities for creating robust overlay components
TypeScript
891
star
4

code-sandbox-examples

CodeSandbox example repository you can fork from, to bootstrap your React-Bootstrap projects.
JavaScript
302
star
5

react-prop-types

Additional PropTypes for React
JavaScript
51
star
6

prop-types-extra

Additional PropTypes for React
JavaScript
26
star
7

react-bootstrap-bower

AMD modules and browser globals of Bootstrap 3 components built with React
25
star
8

react-bootstrap-typescript

Typescript definitions for React / Bootstrap
JavaScript
19
star
9

react-bootstrap.github.io

๐Ÿ›‘Generated code for https://react-bootstrap.github.io/. Please send PRs to https://github.com/react-bootstrap/react-bootstrap.
HTML
12
star
10

react-element-children

Utilities for iterating element children
JavaScript
7
star
11

react-bootstrap-npm

[Obsolete] CommonJS modules for Node.js of Bootstrap 3 components built with React
JavaScript
7
star
12

pagination

A batteries included pagination component using bootstrap styles
JavaScript
6
star
13

reach-router-bootstrap

A reach/router LinkContainer component that plays nicely with react-bootstrap
4
star
14

react-router-bootstrap-bower

AMD modules and browser globals of react-router and react-bootstrap compatible components
JavaScript
3
star
15

rrtr-bootstrap

[DEPRECATED] Integration between rrtr and React-Bootstrap
JavaScript
2
star
16

configs

Configs!
JavaScript
2
star