267 lines
7.3 KiB
JavaScript
267 lines
7.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { injectIntl, defineMessages } from 'react-intl';
|
|
import IconButton from '../../../components/icon_button';
|
|
import Overlay from 'react-overlays/Overlay';
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
|
import classNames from 'classnames';
|
|
|
|
const messages = defineMessages({
|
|
add_expiration: { id: 'status.expiration.add', defaultMessage: 'Set status expiration' },
|
|
});
|
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
|
|
|
class ExpirationDropdownMenu extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
style: PropTypes.object,
|
|
items: PropTypes.array.isRequired,
|
|
value: PropTypes.string.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
};
|
|
|
|
handleDocumentClick = e => {
|
|
if (this.node && !this.node.contains(e.target)) {
|
|
this.props.onClose();
|
|
}
|
|
};
|
|
|
|
handleKeyDown = e => {
|
|
const { items } = this.props;
|
|
const value = e.currentTarget.getAttribute('data-index');
|
|
const index = items.findIndex(item => {
|
|
return (item.value === value);
|
|
});
|
|
let element = null;
|
|
|
|
switch(e.key) {
|
|
case 'Escape':
|
|
this.props.onClose();
|
|
break;
|
|
case 'Enter':
|
|
this.handleClick(e);
|
|
break;
|
|
case 'ArrowDown':
|
|
element = this.node.childNodes[index + 1] || this.node.firstChild;
|
|
break;
|
|
case 'ArrowUp':
|
|
element = this.node.childNodes[index - 1] || this.node.lastChild;
|
|
break;
|
|
case 'Tab':
|
|
if (e.shiftKey) {
|
|
element = this.node.childNodes[index - 1] || this.node.lastChild;
|
|
} else {
|
|
element = this.node.childNodes[index + 1] || this.node.firstChild;
|
|
}
|
|
break;
|
|
case 'Home':
|
|
element = this.node.firstChild;
|
|
break;
|
|
case 'End':
|
|
element = this.node.lastChild;
|
|
break;
|
|
}
|
|
|
|
if (element) {
|
|
element.focus();
|
|
this.props.onChange(element.getAttribute('data-index'));
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}
|
|
};
|
|
|
|
handleClick = e => {
|
|
const value = e.currentTarget.getAttribute('data-index');
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onClose();
|
|
this.props.onChange(value);
|
|
};
|
|
|
|
componentDidMount () {
|
|
document.addEventListener('click', this.handleDocumentClick, false);
|
|
document.addEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
|
if (this.focusedItem) this.focusedItem.focus({ preventScroll: true });
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
document.removeEventListener('click', this.handleDocumentClick, false);
|
|
document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
|
}
|
|
|
|
setRef = c => {
|
|
this.node = c;
|
|
};
|
|
|
|
setFocusRef = c => {
|
|
this.focusedItem = c;
|
|
};
|
|
|
|
render () {
|
|
const { style, items, value } = this.props;
|
|
|
|
return (
|
|
<div style={{ ...style }} role='listbox' ref={this.setRef}>
|
|
{items.map(item => (
|
|
<div role='option' tabIndex='0' key={item.value} data-index={item.value} onKeyDown={this.handleKeyDown} onClick={this.handleClick} className={classNames('privacy-dropdown__option', { active: item.value === value })} aria-selected={item.value === value} ref={item.value === value ? this.setFocusRef : null}>
|
|
<div className='expiration-dropdown__option__content'>
|
|
<strong>{item.text}</strong>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default @injectIntl
|
|
class ExpirationDropdown extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
isUserTouching: PropTypes.func,
|
|
onModalOpen: PropTypes.func,
|
|
onModalClose: PropTypes.func,
|
|
value: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
noDirect: PropTypes.bool,
|
|
container: PropTypes.func,
|
|
disabled: PropTypes.bool,
|
|
intl: PropTypes.object.isRequired,
|
|
};
|
|
|
|
state = {
|
|
open: false,
|
|
placement: 'bottom',
|
|
};
|
|
|
|
handleToggle = () => {
|
|
if (this.props.isUserTouching && this.props.isUserTouching()) {
|
|
if (this.state.open) {
|
|
this.props.onModalClose();
|
|
} else {
|
|
this.props.onModalOpen({
|
|
actions: this.options.map(option => ({ ...option, active: option.value === this.props.value })),
|
|
onClick: this.handleModalActionClick,
|
|
});
|
|
}
|
|
} else {
|
|
if (this.state.open && this.activeElement) {
|
|
this.activeElement.focus({ preventScroll: true });
|
|
}
|
|
this.setState({ open: !this.state.open });
|
|
}
|
|
};
|
|
|
|
handleModalActionClick = (e) => {
|
|
e.preventDefault();
|
|
|
|
const { value } = this.options[e.currentTarget.getAttribute('data-index')];
|
|
|
|
this.props.onModalClose();
|
|
this.props.onChange(value);
|
|
};
|
|
|
|
handleKeyDown = e => {
|
|
switch(e.key) {
|
|
case 'Escape':
|
|
this.handleClose();
|
|
break;
|
|
}
|
|
};
|
|
|
|
handleMouseDown = () => {
|
|
if (!this.state.open) {
|
|
this.activeElement = document.activeElement;
|
|
}
|
|
};
|
|
|
|
handleButtonKeyDown = (e) => {
|
|
switch(e.key) {
|
|
case ' ':
|
|
case 'Enter':
|
|
this.handleMouseDown();
|
|
break;
|
|
}
|
|
};
|
|
|
|
handleClose = () => {
|
|
if (this.state.open && this.activeElement) {
|
|
this.activeElement.focus({ preventScroll: true });
|
|
}
|
|
this.setState({ open: false });
|
|
};
|
|
|
|
handleChange = value => {
|
|
this.props.onChange(value);
|
|
};
|
|
|
|
componentWillMount () {
|
|
this.options = [
|
|
{ value: '#exp5m', text: '#exp5m (5 minutes)' },
|
|
{ value: '#exp30m', text: '#exp30m (30 minutes)' },
|
|
{ value: '#exp1h', text: '#exp1h (1 hour)' },
|
|
{ value: '#exp3h', text: '#exp3h (3 hours)' },
|
|
{ value: '#exp12h', text: '#exp12h (12 hours)' },
|
|
{ value: '#exp1d', text: '#exp1d (1 day)' },
|
|
{ value: '#exp7d', text: '#exp7d (7 days)' },
|
|
];
|
|
}
|
|
|
|
setTargetRef = c => {
|
|
this.target = c;
|
|
};
|
|
|
|
findTarget = () => {
|
|
return this.target;
|
|
};
|
|
|
|
handleOverlayEnter = (state) => {
|
|
this.setState({ placement: state.placement });
|
|
};
|
|
|
|
render () {
|
|
const { value, container, disabled, intl } = this.props;
|
|
const { open, placement } = this.state;
|
|
|
|
return (
|
|
<div className={classNames('expiration-dropdown', placement, { active: open })} onKeyDown={this.handleKeyDown}>
|
|
<div className={classNames('expiration-dropdown__value')} ref={this.setTargetRef}>
|
|
<IconButton
|
|
className='expiration-dropdown__value-icon'
|
|
icon='clock-o'
|
|
title={intl.formatMessage(messages.add_expiration)}
|
|
size={18}
|
|
expanded={open}
|
|
active={open}
|
|
inverted
|
|
onClick={this.handleToggle}
|
|
onMouseDown={this.handleMouseDown}
|
|
onKeyDown={this.handleButtonKeyDown}
|
|
style={{ height: null, lineHeight: '27px' }}
|
|
disabled={disabled}
|
|
/>
|
|
</div>
|
|
|
|
<Overlay show={open} placement={'bottom'} flip target={this.findTarget} container={container} popperConfig={{ strategy: 'fixed', onFirstUpdate: this.handleOverlayEnter }}>
|
|
{({ props, placement }) => (
|
|
<div {...props}>
|
|
<div className={`dropdown-animation expiration-dropdown__dropdown ${placement}`}>
|
|
<ExpirationDropdownMenu
|
|
items={this.options}
|
|
value={value}
|
|
onClose={this.handleClose}
|
|
onChange={this.handleChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Overlay>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|