/* * This file is part of ORY Editor. * * ORY Editor is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * ORY Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with ORY Editor. If not, see . * * @license LGPL-3.0 * @copyright 2016-2018 Aeneas Rekkas * @author Aeneas Rekkas * */ import * as React from 'react'; import { Resizable as ReactResizeable } from 'react-resizable'; import { connect } from 'react-redux'; import classNames from 'classnames'; import { createStructuredSelector } from 'reselect'; import { resizeMode, editMode } from '../../../actions/display'; import { computeStepWidth, widthToSize } from './helper'; import { ComponetizedCell } from '../../../types/editable'; type ResizableProps = ComponetizedCell; export interface ResizableState { stepWidth: number; width: number; steps: number; } class Resizable extends React.PureComponent { constructor(props: ResizableProps) { super(props); const sw = computeStepWidth(props); this.state = { stepWidth: sw, width: props.node.size * sw, steps: props.steps - 1 || 11, }; } onResize = (event: Event, { size }: { size: { width: number } }) => { const newSize = widthToSize(this.state, this.props, size); if (!newSize) { console.warn('Expected resize event to yield a valid size, but got', { newSize, size, props: this.props, state: this.state, }); return; } this.props.onChange(newSize); this.setState({ width: newSize * this.state.stepWidth }); } render() { const { node: { bounds, inline }, children, } = this.props; return ( {/* this div needs to be kept or resize will be broken */}
{children}
); } } const mapStateToProps = createStructuredSelector({}); const mapDispatchToProps = { resizeMode, editMode }; export default connect( mapStateToProps, mapDispatchToProps )(Resizable);