parent
b4a3792201
commit
42f50049ff
@ -0,0 +1,138 @@
|
|||||||
|
// Package imports.
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import React from 'react';
|
||||||
|
import spring from 'react-motion/lib/spring';
|
||||||
|
|
||||||
|
// Components.
|
||||||
|
import ComposerOptionsDropdownContentItem from './item';
|
||||||
|
|
||||||
|
// Utils.
|
||||||
|
import { withPassive } from 'flavours/glitch/util/dom_helpers';
|
||||||
|
import Motion from 'flavours/glitch/util/optional_motion';
|
||||||
|
import { assignHandlers } from 'flavours/glitch/util/react_helpers';
|
||||||
|
|
||||||
|
// Handlers.
|
||||||
|
const handlers = {
|
||||||
|
|
||||||
|
// When the document is clicked elsewhere, we close the dropdown.
|
||||||
|
handleDocumentClick ({ target }) {
|
||||||
|
const { node } = this;
|
||||||
|
const { onClose } = this.props;
|
||||||
|
if (onClose && node && !node.contains(target)) {
|
||||||
|
onClose();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Stores our node in `this.node`.
|
||||||
|
handleRef (node) {
|
||||||
|
this.node = node;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// The spring to use with our motion.
|
||||||
|
const springMotion = spring(1, {
|
||||||
|
damping: 35,
|
||||||
|
stiffness: 400,
|
||||||
|
});
|
||||||
|
|
||||||
|
// The component.
|
||||||
|
export default class ComposerOptionsDropdownContent extends React.PureComponent {
|
||||||
|
|
||||||
|
// Constructor.
|
||||||
|
constructor (props) {
|
||||||
|
super(props);
|
||||||
|
assignHandlers(this, handlers);
|
||||||
|
|
||||||
|
// Instance variables.
|
||||||
|
this.node = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// On mounting, we add our listeners.
|
||||||
|
componentDidMount () {
|
||||||
|
const { handleDocumentClick } = this.handlers;
|
||||||
|
document.addEventListener('click', handleDocumentClick, false);
|
||||||
|
document.addEventListener('touchend', handleDocumentClick, withPassive);
|
||||||
|
}
|
||||||
|
|
||||||
|
// On unmounting, we remove our listeners.
|
||||||
|
componentWillUnmount () {
|
||||||
|
const { handleDocumentClick } = this.handlers;
|
||||||
|
document.removeEventListener('click', handleDocumentClick, false);
|
||||||
|
document.removeEventListener('touchend', handleDocumentClick, withPassive);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rendering.
|
||||||
|
render () {
|
||||||
|
const { handleRef } = this.handlers;
|
||||||
|
const {
|
||||||
|
items,
|
||||||
|
onChange,
|
||||||
|
onClose,
|
||||||
|
style,
|
||||||
|
value,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
// The result.
|
||||||
|
return (
|
||||||
|
<Motion
|
||||||
|
defaultStyle={{
|
||||||
|
opacity: 0,
|
||||||
|
scaleX: 0.85,
|
||||||
|
scaleY: 0.75,
|
||||||
|
}}
|
||||||
|
style={{
|
||||||
|
opacity: springMotion,
|
||||||
|
scaleX: springMotion,
|
||||||
|
scaleY: springMotion,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{({ opacity, scaleX, scaleY }) => (
|
||||||
|
<div
|
||||||
|
className='composer--options--dropdown--content'
|
||||||
|
ref={handleRef}
|
||||||
|
style={{
|
||||||
|
...style,
|
||||||
|
opacity: opacity,
|
||||||
|
transform: `scale(${scaleX}, ${scaleY})`,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{items.map(
|
||||||
|
({
|
||||||
|
name,
|
||||||
|
...rest
|
||||||
|
}) => (
|
||||||
|
<ComposerOptionsDropdownContentItem
|
||||||
|
active={name === value}
|
||||||
|
key={name}
|
||||||
|
name={name}
|
||||||
|
onChange={onChange}
|
||||||
|
onClose={onClose}
|
||||||
|
options={rest}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Motion>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Props.
|
||||||
|
ComposerOptionsDropdownContent.propTypes = {
|
||||||
|
items: PropTypes.arrayOf(PropTypes.shape({
|
||||||
|
icon: PropTypes.string,
|
||||||
|
meta: PropTypes.node,
|
||||||
|
name: PropTypes.string.isRequired,
|
||||||
|
on: PropTypes.bool,
|
||||||
|
text: PropTypes.node,
|
||||||
|
})).isRequired,
|
||||||
|
onChange: PropTypes.func,
|
||||||
|
onClose: PropTypes.func,
|
||||||
|
style: PropTypes.object,
|
||||||
|
value: PropTypes.string,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Default props.
|
||||||
|
ComposerOptionsDropdownContent.defaultProps = { style: {} };
|
@ -1,16 +1,8 @@
|
|||||||
import { injectIntl } from 'react-intl';
|
import { injectIntl } from 'react-intl';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
|
||||||
// Merges react-redux props.
|
|
||||||
export function mergeProps (stateProps, dispatchProps, ownProps) {
|
|
||||||
Object.assign({}, ownProps, {
|
|
||||||
dispatch: Object.assign({}, dispatchProps, ownProps.dispatch || {}),
|
|
||||||
state: Object.assign({}, stateProps, ownProps.state || {}),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Connects a component.
|
// Connects a component.
|
||||||
export function wrap (Component, mapStateToProps, mapDispatchToProps, options) {
|
export function wrap (Component, mapStateToProps, mapDispatchToProps, options) {
|
||||||
const withIntl = typeof options === 'object' ? options.withIntl : !!options;
|
const withIntl = typeof options === 'object' ? options.withIntl : !!options;
|
||||||
return (withIntl ? injectIntl : i => i)(connect(mapStateToProps, mapDispatchToProps, mergeProps)(Component));
|
return (withIntl ? injectIntl : i => i)(connect(mapStateToProps, mapDispatchToProps)(Component));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue