dens
v1.1.6
Published
dens, A DOM utility library that uses native methods and returns native HTMLElement. ================
Downloads
2
Readme
dens, A DOM utility library that uses native methods and returns native HTMLElement.
build into es5, for uglify does not support es6. (used in create-react-app)
Idea: Native APIs are first-class citizen, always return native HTMLElement.
USAGE
import {den, dens} from "dens"
- node is element or text node
- element is element
- text is text node
if not defined $ and $$, it will define
window.$ = function(selector) { return typeof selector === "string" ? document.querySelector(selector) : selector || null }
window.$$ = function(selector) { return [].slice.call(document.querySelectorAll(selector)) }
den("#parent").insertAfter(node, $("#child-a"))
[].slice.call(x.childNodes)
dens.closest("#hello")
API
den(selector) -> <#Den>
- closest(selectorString) -> HTMLElement
- isAncestor(ancestorNode)
- insertAfter(newNode, referenceNode)
- remove()
###########
# Class methods
###########
- den.isNode(obj) .. isElement isText isDocument isWindow
- den.isIE(maxVersion) .. isIOS isMac
- den.createElement(htmlText) -> HTMLElement
Install
$ npm install denjs --save
$ boewr install denjs --save
TODO
from medium-editor selection.js
getSelectedElements: function (doc) {
rangeSelectsSingleNode: function (range) {
getSelectedParentElement: function (range) {
getCaretOffsets: function getCaretOffsets(element, range) {
getSelectionHtml: function getSelectionHtml(doc) {
importSelection: function (selectionState, root, doc, favorLaterSelectionAnchor) {
exportSelection: function (root, doc) {
from quill lib/dom.js
...