1.1.0 • Published 9 months ago

@rc-component/mutate-observer v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

rc-mutate-observer

MutateObserver for React.

NPM version dumi build status Codecov npm download

Development

npm install
npm run start
open http://localhost:8000

Install

@rc-component/mutate-observer

Usage

import React from 'react';
import MutateObserver from './src';

const onMutate = (mutations: MutationRecord[], observer: MutationObserver) => {
  console.log(mutation);
  console.log(observer);
};

const Demo: React.FC = () => {
  return (
    <MutateObserver onMutate={onMutate}>
      <div>test</div>
    </MutateObserver>
  );
};

export default Demo;

🔥 API

We use typescript to create the Type definition. You can view directly in IDE. But you can still check the type definition here.

mutate-observer

PropDescriptionTypeDefault
onMutateA function which will be called on each DOM change that qualifies given the observed node or subtree and optionsMutationCallback-
optionsAn object providing options that describe which DOM mutations should be reported to mutationObserver's callbackMutationObserverInit-