5b9dadd6fd
Introduces a new Followers block. Proudly display your Fediverse followers to the world! --------- Co-authored-by: Matthias Pfefferle <pfefferle@users.noreply.github.com>
12 lines
No EOL
408 B
JavaScript
12 lines
No EOL
408 B
JavaScript
import './style.scss';
|
|
import { Followers } from './followers';
|
|
import { render } from '@wordpress/element';
|
|
import domReady from '@wordpress/dom-ready';
|
|
|
|
domReady( () => {
|
|
// iterate over a nodelist
|
|
[].forEach.call( document.querySelectorAll( '.activitypub-follower-block' ), ( element ) => {
|
|
const attrs = JSON.parse( element.dataset.attrs );
|
|
render( <Followers { ...attrs } />, element );
|
|
} );
|
|
} ); |