.circleci
.github
app
chewy
controllers
helpers
javascript
fonts
images
mastodon
actions
components
containers
features
account
account_gallery
account_timeline
blocks
community_timeline
compose
components
action_bar.js
autosuggest_account.js
character_counter.js
compose_form.js
emoji_picker_dropdown.js
navigation_bar.js
poll_button.js
poll_form.js
privacy_dropdown.js
reply_indicator.js
search.js
search_results.js
text_icon_button.js
upload.js
upload_button.js
upload_form.js
upload_progress.js
warning.js
containers
util
index.js
direct_timeline
domain_blocks
emoji
favourited_statuses
favourites
follow_requests
followers
following
generic_not_found
getting_started
hashtag_timeline
home_timeline
introduction
keyboard_shortcuts
list_adder
list_editor
list_timeline
lists
mutes
notifications
pinned_statuses
public_timeline
reblogs
report
standalone
status
ui
video
locales
middleware
reducers
selectors
service_worker
storage
store
utils
api.js
base_polyfills.js
common.js
compare_id.js
extra_polyfills.js
initial_state.js
is_mobile.js
load_polyfills.js
main.js
performance.js
ready.js
rtl.js
scroll.js
settings.js
stream.js
test_setup.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
dist
lib
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Refactor uses of icons to an Icon component in web UI * Refactor options passed to the Icon component * Make tests work with absolute component paths
260 lines
8.3 KiB
JavaScript
260 lines
8.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/lib/Overlay';
|
|
import Motion from '../../ui/util/optional_motion';
|
|
import spring from 'react-motion/lib/spring';
|
|
import detectPassiveEvents from 'detect-passive-events';
|
|
import classNames from 'classnames';
|
|
import Icon from 'mastodon/components/icon';
|
|
|
|
const messages = defineMessages({
|
|
public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
|
|
public_long: { id: 'privacy.public.long', defaultMessage: 'Post to public timelines' },
|
|
unlisted_short: { id: 'privacy.unlisted.short', defaultMessage: 'Unlisted' },
|
|
unlisted_long: { id: 'privacy.unlisted.long', defaultMessage: 'Do not show in public timelines' },
|
|
private_short: { id: 'privacy.private.short', defaultMessage: 'Followers-only' },
|
|
private_long: { id: 'privacy.private.long', defaultMessage: 'Post to followers only' },
|
|
direct_short: { id: 'privacy.direct.short', defaultMessage: 'Direct' },
|
|
direct_long: { id: 'privacy.direct.long', defaultMessage: 'Post to mentioned users only' },
|
|
change_privacy: { id: 'privacy.change', defaultMessage: 'Adjust status privacy' },
|
|
});
|
|
|
|
const listenerOptions = detectPassiveEvents.hasSupport ? { passive: true } : false;
|
|
|
|
class PrivacyDropdownMenu extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
style: PropTypes.object,
|
|
items: PropTypes.array.isRequired,
|
|
value: PropTypes.string.isRequired,
|
|
placement: PropTypes.string.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
};
|
|
|
|
state = {
|
|
mounted: false,
|
|
};
|
|
|
|
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;
|
|
|
|
switch(e.key) {
|
|
case 'Escape':
|
|
this.props.onClose();
|
|
break;
|
|
case 'Enter':
|
|
this.handleClick(e);
|
|
break;
|
|
case 'ArrowDown':
|
|
element = this.node.childNodes[index + 1];
|
|
if (element) {
|
|
element.focus();
|
|
this.props.onChange(element.getAttribute('data-index'));
|
|
}
|
|
break;
|
|
case 'ArrowUp':
|
|
element = this.node.childNodes[index - 1];
|
|
if (element) {
|
|
element.focus();
|
|
this.props.onChange(element.getAttribute('data-index'));
|
|
}
|
|
break;
|
|
case 'Home':
|
|
element = this.node.firstChild;
|
|
if (element) {
|
|
element.focus();
|
|
this.props.onChange(element.getAttribute('data-index'));
|
|
}
|
|
break;
|
|
case 'End':
|
|
element = this.node.lastChild;
|
|
if (element) {
|
|
element.focus();
|
|
this.props.onChange(element.getAttribute('data-index'));
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
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();
|
|
this.setState({ mounted: 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 { mounted } = this.state;
|
|
const { style, items, placement, value } = this.props;
|
|
|
|
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 }) }}>
|
|
{({ opacity, scaleX, scaleY }) => (
|
|
// It should not be transformed when mounting because the resulting
|
|
// size will be used to determine the coordinate of the menu by
|
|
// react-overlays
|
|
<div className={`privacy-dropdown__dropdown ${placement}`} style={{ ...style, opacity: opacity, transform: mounted ? `scale(${scaleX}, ${scaleY})` : null }} 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='privacy-dropdown__option__icon'>
|
|
<Icon id={item.icon} fixedWidth />
|
|
</div>
|
|
|
|
<div className='privacy-dropdown__option__content'>
|
|
<strong>{item.text}</strong>
|
|
{item.meta}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</Motion>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default @injectIntl
|
|
class PrivacyDropdown extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
isUserTouching: PropTypes.func,
|
|
isModalOpen: PropTypes.bool.isRequired,
|
|
onModalOpen: PropTypes.func,
|
|
onModalClose: PropTypes.func,
|
|
value: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
};
|
|
|
|
state = {
|
|
open: false,
|
|
placement: 'bottom',
|
|
};
|
|
|
|
handleToggle = ({ target }) => {
|
|
if (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 {
|
|
const { top } = target.getBoundingClientRect();
|
|
this.setState({ placement: top * 2 < innerHeight ? 'bottom' : 'top' });
|
|
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;
|
|
}
|
|
}
|
|
|
|
handleClose = () => {
|
|
this.setState({ open: false });
|
|
}
|
|
|
|
handleChange = value => {
|
|
this.props.onChange(value);
|
|
}
|
|
|
|
componentWillMount () {
|
|
const { intl: { formatMessage } } = this.props;
|
|
|
|
this.options = [
|
|
{ icon: 'globe', value: 'public', text: formatMessage(messages.public_short), meta: formatMessage(messages.public_long) },
|
|
{ icon: 'unlock', value: 'unlisted', text: formatMessage(messages.unlisted_short), meta: formatMessage(messages.unlisted_long) },
|
|
{ icon: 'lock', value: 'private', text: formatMessage(messages.private_short), meta: formatMessage(messages.private_long) },
|
|
{ icon: 'envelope', value: 'direct', text: formatMessage(messages.direct_short), meta: formatMessage(messages.direct_long) },
|
|
];
|
|
}
|
|
|
|
render () {
|
|
const { value, intl } = this.props;
|
|
const { open, placement } = this.state;
|
|
|
|
const valueOption = this.options.find(item => item.value === value);
|
|
|
|
return (
|
|
<div className={classNames('privacy-dropdown', placement, { active: open })} onKeyDown={this.handleKeyDown}>
|
|
<div className={classNames('privacy-dropdown__value', { active: this.options.indexOf(valueOption) === 0 })}>
|
|
<IconButton
|
|
className='privacy-dropdown__value-icon'
|
|
icon={valueOption.icon}
|
|
title={intl.formatMessage(messages.change_privacy)}
|
|
size={18}
|
|
expanded={open}
|
|
active={open}
|
|
inverted
|
|
onClick={this.handleToggle}
|
|
style={{ height: null, lineHeight: '27px' }}
|
|
/>
|
|
</div>
|
|
|
|
<Overlay show={open} placement={placement} target={this}>
|
|
<PrivacyDropdownMenu
|
|
items={this.options}
|
|
value={value}
|
|
onClose={this.handleClose}
|
|
onChange={this.handleChange}
|
|
placement={placement}
|
|
/>
|
|
</Overlay>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|