File size: 1,380 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
import type { CellPluginComponentProps } from '@react-page/editor';
import React from 'react';
import { useEffect, useState } from 'react';
import { Resizable } from 'react-resizable';
import type { SpacerState } from '../types/state';
const faintBlack = 'rgba(0, 0, 0, 0.12)';
const SpacerResizable: React.FC<CellPluginComponentProps<SpacerState>> = (
props
) => {
const [height, setHeight] = useState(props.data?.height ?? 24);
useEffect(() => setHeight(props.data?.height), [props.data?.height]);
const { onChange } = props;
return (
<Resizable
onResize={(e, { size }) => {
setHeight(size?.height ?? 0);
}}
onResizeStop={(e, { size }) =>
onChange({
height: size?.height,
})
}
height={height}
width={0}
>
<div style={{ height: height, position: 'relative' }}>
<div
style={{
position: 'absolute',
bottom: '0',
height: '24px',
width: '100%',
background: faintBlack,
textAlign: 'center',
}}
>
<svg
viewBox="0 0 24 24"
style={{ color: 'white', width: 24, height: 24 }}
>
<path d="M20 9H4v2h16V9zM4 15h16v-2H4v2z" />
</svg>
</div>
</div>
</Resizable>
);
};
export default SpacerResizable;
|