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

safedom

v0.1.9

Published

safedom is a safe way to you manipulate dom using a purer functional style.

Downloads

46

Readme

safedom is a safe way to you manipulate dom using a purer functional style.

Table of Contents

Installation

safedom is available from npm.

$ npm install safedom -S

Why safedom ?

In many applications most of the errors are still related to DOM manipulations, and as we are dealing with side effects, we need to have null checks, but safedom lets you do this safely. All safe functions are automatically curried and emphasizes a purer functional style.

Overview

//<div id="app" data-value="10">hello world</div>
const safedom = require('safedom')
const value = safedom.select('#app')
  .chain(safedom.getAttr('data-value'))
  .map(eff => eff.value)
  .map(parseInt)
  .map(value => value + 100)
  .getOrElse(0)

console.log(value) // 110

A wonderful error messages

It's good to know where it's not working, for example

  1. Select by Id but is not found in DOM
//<div id="dragon" data-value="10">hello world</div>
const safedom = require('safedom')

safedom.select('#apslkajdp')
  .chain(safedom.getAttr('data-value'))
  .map(eff => eff.value)
  .map(parseInt)
  .map(value => value + 100)
  .matchWith({
    Ok: ({ value }) => value,

    Error: ({ value: error }) => {
      console.log(error)
      /*
        Selector: '#apslkajdp' dont found
        Method: select
      */
    }
  })
  1. Get an attribute from a element but dont have
//<div id="dragon">hello world</div>
const safedom = require('safedom')

const value = safedom.select('#dragon')
  .chain(safedom.getAttr('data-value'))
  .map(eff => eff.value)
  .map(parseInt)
  .matchWith({
    Ok: ({ value }) => value,

    Error: ({ value: error }) => {
      console.log(error)
      /*
        Attribute: 'data-value' don't found
        Node: [object HTMLDivElement]
        Method: getAttr
      */
    }
  })

Documentation

select

Similiar to a document.querySelector but returns a Result monad from folktale.

You can use methods available to manipulate value.

//<div id="dragon">hello world</div>
const safedom = require('safedom')

const value = safedom.select('#dragon')
console.log(value) //InternalConstructor {value: div#app}

To you get value in safe way, you should map value.

//<div id="dragon">hello world</div>
const safedom = require('safedom')

const value = safedom.select('#dragon')
  .map(element => element.textContent)
  .map(console.log)

console.log(value) //hello world

You can have a default value for when you can't find.

//<div id="dragon">hello world</div>
const safedom = require('safedom')

const value = safedom.select('#lion')
  .map(element => element.textContent)
  .getOrElse('Victor')

console.log(value) //Victor

selectAll

Similiar to an document.querySelectorAll but returns a Result monad from folktale. But querySelectorAll returns a NodeList and safedom, an Array.

You can use methods available to manipulate value.

//<div id="dragon">hello world</div>
const safedom = require('safedom')

const value = safedom.selectAll('#dragon')
console.log(value)//InternalConstructor [{value: div#app}]

getAttr

Similiar to a node.getAttribute but returns a Result monad from folktale.

//<div id="app" data-value="10">hello world</div>
const safedom = require('safedom')
const value = safedom.select('#app')
  .chain(safedom.getAttr('data-value')) //should use chain because getAttr returns a Result
  .map(eff => eff.value)
  .map(parseInt)
  .map(value => value + 100)
  .getOrElse(0)

console.log(value) // 110

disable

You can disable specific element

//<div id="app">hello world</div>
const safedom = require('safedom')
const value = safedom.disable('#app')

console.log(value)// InternalConstructor {value: div#app.disabled}
//<div id="app">hello world</div>
const safedom = require('safedom')
const value = safedom.disable('#app')
  .map((el) => {
    console.log(e)
    //<div id="app" class="disabled" readonly="true" aria-disabled="true"> Victor </div>
    return el
  })

enable

Just enable specific element

//<div id="app" class="disabled" readonly="true" aria-disabled="true"> Victor </div>
const safedom = require('safedom')
const value = safedom.enable('#app')

console.log(value)// InternalConstructor {value: div#app}
//<div id="app" class="disabled" readonly="true" aria-disabled="true"> Victor </div>
const safedom = require('safedom')
const value = safedom.enable('#app')
  .map((el) => {
    console.log(e)
    //<div id="app">hello world</div>
    return el
  })

on

Handle DOM-events

const handleClick = () => console.log('clicked')
safedom.on('click', document, handleClick)
const handleClick = () => console.log('clicked')
safedom.select('#app')
 .map(safedom.on('click'))
 .map(clickStream => clickStream(handleClick))

removeAttr

Remove attribute from a node element

// <div data-id="div-with-attribute" random="attribute"></div>

safedom.select('[data-id="div-with-attribute"]')
    .map(safedom.removeAttr('random'))

// <div data-id="div-with-attribute"></div>

or

// <div data-id="multiple-divs" random="attribute"></div>
// <div data-id="multiple-divs" random="attribute"></div>

safedom.selectAll('[data-id="multiple-divs"]')
    .map(nodes => nodes.forEach(safedom.removeAttr('random')))

// <div data-id="multiple-divs"></div>
// <div data-id="multiple-divs"></div>

removeAttrByQuery

Remove attribute from a node element using query. Note: this function does not use selectAll, so it will only remove the attribute from the first element found in DOM

// <div data-id="div-with-attribute" random="attribute"></div>

safedom.removeAttrByQuery('random', '[data-id="div-with-attribute"]')

// <div data-id="div-with-attribute"></div>

setAttr

Similiar to a node.classList.setAttribute()

//<div class="myClass"></div>

const safedom = require('safedom')

safedom.select(`.myClass`)
  .map(safedom.setAttr('id', 'app'))
        
//<div class="myClass" id="app"></div>

addClass

Similiar to a node.classList.add()

//<div class="machine-container"></div>

const safedom = require('safedom')

safedom.select(`.machine-container`)
  .map(safedom.addClass('-with-scale'))

//<div class="machine-container -with-scale"></div>

removeClass

Similiar to a node.classList.remove()

//<div class="machine-container -with-scale"></div>

const safedom = require('safedom')

safedom.select('.machine-container')
  .map(safedom.removeClass('-with-scale'))


//<div class="machine-container"></div>

toggleClass

Similiar to a node.classList.toggle()

//<div class="machine-container -with-scale"></div>

const safedom = require('safedom')

safedom.select('.machine-container')
  .map(safedom.toggleClass('-with-scale'))


//<div class="machine-container"></div>

focus

Focus in specific element

//<div class="machine-container -with-scale"></div>

const safedom = require('safedom')

safedom.select('.machine-container')
  .map(safedom.focus)

See too

License

The code is available under the MIT License.