mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:51:05 +08:00
37 lines
858 B
JavaScript
37 lines
858 B
JavaScript
import React, { useEffect, useRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { drawSelectedElement } from '@storybook/addon-measure/dist/esm/box-model/visualizer';
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { init, destroy } from '@storybook/addon-measure/dist/esm/box-model/canvas';
|
|
|
|
export const Visualization = ({ render }) => {
|
|
const element = useRef(null);
|
|
|
|
useEffect(() => {
|
|
if (element.current) {
|
|
init();
|
|
drawSelectedElement(element.current);
|
|
}
|
|
|
|
return () => {
|
|
destroy();
|
|
};
|
|
}, [element]);
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
display: 'inline-block',
|
|
padding: 64,
|
|
}}
|
|
>
|
|
{render(element)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
Visualization.propTypes = {
|
|
render: PropTypes.func.isRequired,
|
|
};
|