Code Monkey home page Code Monkey logo

dom-mutator's Introduction

DOM Mutator

For those times you need to apply persistent DOM changes on top of HTML you don’t control.

View demo: https://growthbook.github.io/dom-mutator/

const mutation = mutate.html("#greeting", html => html + ' world');

// works even if the selector doesn't exist yet
document.body.innerHTML += "<div id='greeting'>hello</div>";

// "hello world"

// re-applies if there's an external change
document.getElementById('greeting').innerHTML = 'hola';

// "hola world"

// Revert to the last externally set value
mutation.revert();

// "hola"
import mutate from "dom-mutator";

mutate.html("h1", html => html.toUpperCase());

mutate.classes("div.greeting", classes => classes.add("new-class"));

mutate.attribute(".get-started", "title", (oldVal) => "This is my new title attribute");

Features:

  • No dependencies, written in Typescript, 100% test coverage
  • Super fast and light-weight (1Kb gzipped)
  • Persists mutations even if the underlying element is updated externally (e.g. by a React render)
  • Picks up new matching elements that are added to the DOM
  • Easily remove a mutation at any time

Build Status

Installation

Install with npm or yarn (recommended):

yarn add dom-mutator OR npm install --save dom-mutator.

import mutate from "dom-mutator";
...

OR use with unpkg:

<script type="module">
import mutate from "https://unpkg.com/dom-mutator/dist/dom-mutator.esm.js";
...
</script>

Usage

There are 4 mutate methods available: html, classes, attribute, and declarative.

html

Mutate an element's innerHTML

// Signature
mutate.html(selector: string, (oldInnerHTML: string) => string);

// Example
mutate.html("h1", x => x.toUpperCase());

classes

Mutate the set of classes for an element

// Signature
mutate.classes(selector: string, (classes: Set<string>) => void);

// Example
mutate.classes("h1", (classes) => {
  classes.add("green");
  classes.remove("red");
});

attribute

Mutate the value of an HTML element's attribute

// Signature
mutate.attribute(selector: string, attribute: string, (oldValue: string) => string);

// Example
mutate.attribute(".link", "href", (href) => href + "?foo");

declarative

Mutate the html, classes, or attributes using a declarative syntax instead of callbacks. Perfect for serialization.

// Signature
mutate.declarative({
  selector: string,
  action: "set" | "append" | "remove",
  attribute: "html" | "class" | string,
  value: string
});

// Examples
const mutations = [
  {
    selector: "h1",
    action: "set",
    attribute: "html",
    value: "new text"
  },
  {
    selector: ".get-started",
    action: "remove",
    attribute: "class",
    value: "green"
  },
  {
    selector: "a",
    action: "append",
    attribute: "href",
    value: "?foo"
  }
];
mutations.forEach(m=>mutate.declarative(m));

How it Works

When you create a mutation, we start watching the document for elements matching the selector to appear. We do this with a single shared MutationObserver on the body.

When a matching element is found, we attach a separate MutationObserver filtered to the exact attribute being mutated. If an external change happens (e.g. from a React render), we re-apply your mutation on top of the new baseline value.

When revert is called, we undo the change and go back to the last externally set value. We also disconnect the element's MutationObserver to save resources.

Pausing / Resuming the Global MutationObserver

While the library is waiting for elements to appear, it runs document.querySelectorAll every time a batch of elements is added or removed from the DOM.

This is performant enough in most cases, but if you want more control, you can pause and resume the global MutationObserver on demand.

One example use case is if you are making a ton of DOM changes that you know have nothing to do with the elements you are watching. You would pause right before making the changes and resume after.

import {disconnectGlobalObserver, connectGlobalObserver} from "dom-mutator";

// Pause
disconnectGlobalObserver();

// ... do a bunch of expensive DOM updates

// Resume
connectGlobalObserver();

Developing

Built with TSDX.

npm start or yarn start to rebuild on file change.

npm run build or yarn build to bundle the package to the dist folder.

npm test --coverage or yarn test --coverage to run the Jest test suite with coverage report.

npm run lint --fix or yarn lint --fix to lint your code and autofix problems when possible.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.