Browse Source

Refactor the federation dropdown

The privacy dropdown also changed a lot, this commit aligns both
codebases.
lets-bump-hometown-to-mastodon-4.2
nachtjasmin 2 years ago
parent
commit
f5747f4b88
No known key found for this signature in database
  1. 212
      app/javascript/mastodon/features/compose/components/federation_dropdown.jsx
  2. 12
      app/javascript/mastodon/features/compose/containers/federation_dropdown_container.js
  3. 2
      app/javascript/mastodon/features/ui/components/column_link.jsx

212
app/javascript/mastodon/features/compose/components/federation_dropdown.js → app/javascript/mastodon/features/compose/components/federation_dropdown.jsx

@ -1,13 +1,17 @@
import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { PureComponent } from 'react';
import { injectIntl, defineMessages } from 'react-intl'; import { injectIntl, defineMessages } from 'react-intl';
import IconButton from '../../../components/icon_button';
import Overlay from 'react-overlays/lib/Overlay';
import Motion from '../../ui/util/optional_motion';
import spring from 'react-motion/lib/spring';
import { supportsPassiveEvents } from 'detect-passive-events';
import classNames from 'classnames'; import classNames from 'classnames';
import { supportsPassiveEvents } from 'detect-passive-events';
import Overlay from 'react-overlays/Overlay';
import { Icon } from 'mastodon/components/icon';
import { IconButton } from '../../../components/icon_button';
const messages = defineMessages({ const messages = defineMessages({
federate_short: { id: 'federation.federated.short', defaultMessage: 'Federated' }, federate_short: { id: 'federation.federated.short', defaultMessage: 'Federated' },
federate_long: { id: 'federation.federated.long', defaultMessage: 'Allow post to reach other instances' }, federate_long: { id: 'federation.federated.long', defaultMessage: 'Allow post to reach other instances' },
@ -16,37 +20,32 @@ const messages = defineMessages({
change_federation: { id: 'federation.change', defaultMessage: 'Adjust status federation' }, change_federation: { id: 'federation.change', defaultMessage: 'Adjust status federation' },
}); });
const listenerOptions = supportsPassiveEvents ? { passive: true } : false; const listenerOptions = supportsPassiveEvents ? { passive: true, capture: true } : true;
const getValue = element => element.dataset.index === 'true';
class FederationDropdownMenu extends React.PureComponent { class FederationDropdownMenu extends PureComponent {
static propTypes = { static propTypes = {
style: PropTypes.object, style: PropTypes.object,
items: PropTypes.array.isRequired, items: PropTypes.array.isRequired,
value: PropTypes.bool.isRequired, value: PropTypes.string.isRequired,
onClose: PropTypes.func.isRequired, onClose: PropTypes.func.isRequired,
onChange: PropTypes.func.isRequired, onChange: PropTypes.func.isRequired,
}; };
state = {
mounted: false,
};
handleDocumentClick = e => { handleDocumentClick = e => {
if (this.node && !this.node.contains(e.target)) { if (this.node && !this.node.contains(e.target)) {
this.props.onClose(); this.props.onClose();
e.stopPropagation();
} }
} };
handleKeyDown = e => { handleKeyDown = e => {
const { items } = this.props; const { items } = this.props;
const value = getValue(e.currentTarget); const value = e.currentTarget.getAttribute('data-index');
const index = items.findIndex(item => { const index = items.findIndex(item => {
return (item.value === value); return (item.value === value);
}); });
let element; let element = null;
switch(e.key) { switch(e.key) {
case 'Escape': case 'Escape':
@ -56,115 +55,106 @@ class FederationDropdownMenu extends React.PureComponent {
this.handleClick(e); this.handleClick(e);
break; break;
case 'ArrowDown': case 'ArrowDown':
element = this.node.childNodes[index + 1]; element = this.node.childNodes[index + 1] || this.node.firstChild;
if (element) {
element.focus();
this.props.onChange(getValue(element));
}
break; break;
case 'ArrowUp': case 'ArrowUp':
element = this.node.childNodes[index - 1]; element = this.node.childNodes[index - 1] || this.node.lastChild;
if (element) { break;
element.focus(); case 'Tab':
this.props.onChange(getValue(element)); if (e.shiftKey) {
element = this.node.childNodes[index - 1] || this.node.lastChild;
} else {
element = this.node.childNodes[index + 1] || this.node.firstChild;
} }
break; break;
case 'Home': case 'Home':
element = this.node.firstChild; element = this.node.firstChild;
if (element) {
element.focus();
this.props.onChange(getValue(element));
}
break; break;
case 'End': case 'End':
element = this.node.lastChild; element = this.node.lastChild;
if (element) {
element.focus();
this.props.onChange(getValue(element));
}
break; break;
} }
}
if (element) {
element.focus();
this.props.onChange(element.getAttribute('data-index'));
e.preventDefault();
e.stopPropagation();
}
};
handleClick = e => { handleClick = e => {
const value = e.currentTarget.getAttribute('data-index');
e.preventDefault(); e.preventDefault();
this.props.onClose(); this.props.onClose();
this.props.onChange(getValue(e.currentTarget)); this.props.onChange(value);
} };
componentDidMount () { componentDidMount () {
document.addEventListener('click', this.handleDocumentClick, false); document.addEventListener('click', this.handleDocumentClick, { capture: true });
document.addEventListener('touchend', this.handleDocumentClick, listenerOptions); document.addEventListener('touchend', this.handleDocumentClick, listenerOptions);
if (this.focusedItem) this.focusedItem.focus(); if (this.focusedItem) this.focusedItem.focus({ preventScroll: true });
this.setState({ mounted: true });
} }
componentWillUnmount () { componentWillUnmount () {
document.removeEventListener('click', this.handleDocumentClick, false); document.removeEventListener('click', this.handleDocumentClick, { capture: true });
document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions); document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions);
} }
setRef = c => { setRef = c => {
this.node = c; this.node = c;
} };
setFocusRef = c => { setFocusRef = c => {
this.focusedItem = c; this.focusedItem = c;
} };
render () { render () {
const { mounted } = this.state;
const { style, items, value } = this.props; const { style, items, value } = this.props;
return ( return (
<Motion defaultStyle={{ opacity: 0, scaleX: 0.85, scaleY: 0.75 }} style={{ opacity: spring(1, { damping: 35, stiffness: 400 }), scaleX: spring(1, { damping: 35, stiffness: 400 }), scaleY: spring(1, { damping: 35, stiffness: 400 }) }}> <div style={{ ...style }} role='listbox' ref={this.setRef}>
{({ opacity, scaleX, scaleY }) => ( {items.map(item => (
// It should not be transformed when mounting because the resulting <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}>
// size will be used to determine the coordinate of the menu by <div className='privacy-dropdown__option__icon'>
// react-overlays <Icon id={item.icon} fixedWidth />
<div className='privacy-dropdown__dropdown' style={{ ...style, opacity: opacity, transform: mounted ? `scale(${scaleX}, ${scaleY})` : null }} role='listbox' ref={this.setRef}> </div>
{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='privacy-dropdown__option__content'>
<div className='privacy-dropdown__option__icon'> <strong>{item.text}</strong>
<i className={`fa fa-fw fa-${item.icon}`} /> {item.meta}
</div> </div>
<div className='privacy-dropdown__option__content'>
<strong>{item.text}</strong>
{item.meta}
</div>
</div>
))}
</div> </div>
)} ))}
</Motion> </div>
); );
} }
} }
@injectIntl class FederationDropdown extends PureComponent {
export default class FederationDropdown extends React.PureComponent {
static propTypes = { static propTypes = {
isUserTouching: PropTypes.func, isUserTouching: PropTypes.func,
isModalOpen: PropTypes.bool.isRequired,
onModalOpen: PropTypes.func, onModalOpen: PropTypes.func,
onModalClose: PropTypes.func, onModalClose: PropTypes.func,
value: PropTypes.bool.isRequired, value: PropTypes.bool.isRequired,
onChange: PropTypes.func.isRequired, onChange: PropTypes.func.isRequired,
noDirect: PropTypes.bool,
container: PropTypes.func,
disabled: PropTypes.bool, disabled: PropTypes.bool,
intl: PropTypes.object.isRequired, intl: PropTypes.object.isRequired,
}; };
state = { state = {
open: false, open: false,
placement: null, placement: 'bottom',
}; };
handleToggle = ({ target }) => { handleToggle = () => {
if (this.props.isUserTouching()) { if (this.props.isUserTouching && this.props.isUserTouching()) {
if (this.state.open) { if (this.state.open) {
this.props.onModalClose(); this.props.onModalClose();
} else { } else {
@ -174,11 +164,12 @@ export default class FederationDropdown extends React.PureComponent {
}); });
} }
} else { } else {
const { top } = target.getBoundingClientRect(); if (this.state.open && this.activeElement) {
this.setState({ placement: top * 2 < innerHeight ? 'bottom' : 'top' }); this.activeElement.focus({ preventScroll: true });
}
this.setState({ open: !this.state.open }); this.setState({ open: !this.state.open });
} }
} };
handleModalActionClick = (e) => { handleModalActionClick = (e) => {
e.preventDefault(); e.preventDefault();
@ -187,7 +178,7 @@ export default class FederationDropdown extends React.PureComponent {
this.props.onModalClose(); this.props.onModalClose();
this.props.onChange(value); this.props.onChange(value);
} };
handleKeyDown = e => { handleKeyDown = e => {
switch(e.key) { switch(e.key) {
@ -195,17 +186,38 @@ export default class FederationDropdown extends React.PureComponent {
this.handleClose(); this.handleClose();
break; break;
} }
} };
handleMouseDown = () => {
if (!this.state.open) {
this.activeElement = document.activeElement;
}
};
handleButtonKeyDown = (e) => {
switch(e.key) {
case ' ':
case 'Enter':
this.handleMouseDown();
break;
}
};
handleClose = () => { handleClose = () => {
if (this.state.open && this.activeElement) {
this.activeElement.focus({ preventScroll: true });
}
this.setState({ open: false }); this.setState({ open: false });
} };
handleChange = value => { handleChange = value => {
// handleChange receives the values as string, therefore we need to convert them
// to proper JS booleans.
value = value === "true";
this.props.onChange(value); this.props.onChange(value);
} };
componentWillMount () { UNSAFE_componentWillMount () {
const { intl: { formatMessage } } = this.props; const { intl: { formatMessage } } = this.props;
this.options = [ this.options = [
@ -214,15 +226,27 @@ export default class FederationDropdown extends React.PureComponent {
]; ];
} }
setTargetRef = c => {
this.target = c;
};
findTarget = () => {
return this.target;
};
handleOverlayEnter = (state) => {
this.setState({ placement: state.placement });
};
render () { render () {
const { value, intl, disabled } = this.props; const { value, container, disabled, intl } = this.props;
const { open, placement } = this.state; const { open, placement } = this.state;
const valueOption = this.options.find(item => item.value === value); const valueOption = this.options.find(item => item.value === value);
return ( return (
<div className={classNames('privacy-dropdown', { active: open })} onKeyDown={this.handleKeyDown}> <div className={classNames('privacy-dropdown', placement, { active: open })} onKeyDown={this.handleKeyDown}>
<div className={classNames('privacy-dropdown__value', { active: this.options.indexOf(valueOption) === 0 })}> <div className={classNames('privacy-dropdown__value', { active: this.options.indexOf(valueOption) === (placement === 'bottom' ? 0 : (this.options.length - 1)) })} ref={this.setTargetRef}>
<IconButton <IconButton
className='privacy-dropdown__value-icon' className='privacy-dropdown__value-icon'
icon={valueOption.icon} icon={valueOption.icon}
@ -232,21 +256,31 @@ export default class FederationDropdown extends React.PureComponent {
active={open} active={open}
inverted inverted
onClick={this.handleToggle} onClick={this.handleToggle}
onMouseDown={this.handleMouseDown}
onKeyDown={this.handleButtonKeyDown}
style={{ height: null, lineHeight: '27px' }} style={{ height: null, lineHeight: '27px' }}
disabled={disabled} disabled={disabled}
/> />
</div> </div>
<Overlay show={open} placement={placement} target={this}> <Overlay show={open} placement={'bottom'} flip target={this.findTarget} container={container} popperConfig={{ strategy: 'fixed', onFirstUpdate: this.handleOverlayEnter }}>
<FederationDropdownMenu {({ props, placement }) => (
items={this.options} <div {...props}>
value={value} <div className={`dropdown-animation privacy-dropdown__dropdown ${placement}`}>
onClose={this.handleClose} <FederationDropdownMenu
onChange={this.handleChange} items={this.options}
/> value={value}
onClose={this.handleClose}
onChange={this.handleChange}
/>
</div>
</div>
)}
</Overlay> </Overlay>
</div> </div>
); );
} }
} }
export default injectIntl(FederationDropdown);

12
app/javascript/mastodon/features/compose/containers/federation_dropdown_container.js

@ -6,7 +6,6 @@ import { isUserTouching } from '../../../is_mobile';
import FederationDropdown from '../components/federation_dropdown'; import FederationDropdown from '../components/federation_dropdown';
const mapStateToProps = state => ({ const mapStateToProps = state => ({
isModalOpen: state.get('modal').modalType === 'ACTIONS',
value: state.getIn(['compose', 'federation']), value: state.getIn(['compose', 'federation']),
}); });
@ -17,9 +16,14 @@ const mapDispatchToProps = dispatch => ({
}, },
isUserTouching, isUserTouching,
onModalOpen: props => dispatch(openModal('ACTIONS', props)), onModalOpen: props => dispatch(openModal({
onModalClose: () => dispatch(closeModal()), modalType: 'ACTIONS',
modalProps: props,
})),
onModalClose: () => dispatch(closeModal({
modalType: undefined,
ignoreFocus: false,
})),
}); });
export default connect(mapStateToProps, mapDispatchToProps)(FederationDropdown); export default connect(mapStateToProps, mapDispatchToProps)(FederationDropdown);

2
app/javascript/mastodon/features/ui/components/column_link.jsx

@ -46,7 +46,7 @@ ColumnLink.propTypes = {
badge: PropTypes.node, badge: PropTypes.node,
transparent: PropTypes.bool, transparent: PropTypes.bool,
button: PropTypes.bool, button: PropTypes.bool,
onClick: PropTypes.function, onClick: PropTypes.func,
}; };
export default ColumnLink; export default ColumnLink;

Loading…
Cancel
Save