2018-03-06 06:45:31 +00:00
|
|
|
import classNames from 'classnames';
|
2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2018-07-29 14:52:06 +00:00
|
|
|
import { HotKeys } from 'react-hotkeys';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { Redirect, withRouter } from 'react-router-dom';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-07-29 14:52:06 +00:00
|
|
|
import NotificationsContainer from './containers/notifications_container';
|
2016-11-21 09:03:55 +00:00
|
|
|
import LoadingBarContainer from './containers/loading_bar_container';
|
|
|
|
import TabsBar from './components/tabs_bar';
|
|
|
|
import ModalContainer from './containers/modal_container';
|
2017-01-19 09:54:18 +00:00
|
|
|
import { isMobile } from '../../is_mobile';
|
2017-05-06 09:05:32 +00:00
|
|
|
import { debounce } from 'lodash';
|
2017-10-05 23:07:59 +00:00
|
|
|
import { uploadCompose, resetCompose } from '../../actions/compose';
|
2018-03-24 14:25:15 +00:00
|
|
|
import { expandHomeTimeline } from '../../actions/timelines';
|
2018-03-24 21:07:23 +00:00
|
|
|
import { expandNotifications } from '../../actions/notifications';
|
2018-06-29 13:34:36 +00:00
|
|
|
import { fetchFilters } from '../../actions/filters';
|
2017-09-13 08:24:33 +00:00
|
|
|
import { clearHeight } from '../../actions/height_cache';
|
2017-07-07 22:06:02 +00:00
|
|
|
import { WrappedSwitch, WrappedRoute } from './util/react_router_helpers';
|
2017-03-24 02:50:30 +00:00
|
|
|
import UploadArea from './components/upload_area';
|
2017-06-03 23:39:38 +00:00
|
|
|
import ColumnsAreaContainer from './containers/columns_area_container';
|
2017-07-07 22:06:02 +00:00
|
|
|
import {
|
|
|
|
Compose,
|
|
|
|
Status,
|
|
|
|
GettingStarted,
|
2017-11-27 20:31:58 +00:00
|
|
|
KeyboardShortcuts,
|
2017-07-07 22:06:02 +00:00
|
|
|
PublicTimeline,
|
|
|
|
CommunityTimeline,
|
|
|
|
AccountTimeline,
|
|
|
|
AccountGallery,
|
|
|
|
HomeTimeline,
|
|
|
|
Followers,
|
|
|
|
Following,
|
|
|
|
Reblogs,
|
|
|
|
Favourites,
|
2018-04-18 11:09:06 +00:00
|
|
|
DirectTimeline,
|
2017-07-07 22:06:02 +00:00
|
|
|
HashtagTimeline,
|
2017-07-08 15:22:24 +00:00
|
|
|
Notifications,
|
2017-07-07 22:06:02 +00:00
|
|
|
FollowRequests,
|
|
|
|
GenericNotFound,
|
|
|
|
FavouritedStatuses,
|
2017-11-24 23:35:37 +00:00
|
|
|
ListTimeline,
|
2017-07-07 22:06:02 +00:00
|
|
|
Blocks,
|
2018-03-30 10:38:00 +00:00
|
|
|
DomainBlocks,
|
2017-07-07 22:06:02 +00:00
|
|
|
Mutes,
|
2017-09-07 07:58:11 +00:00
|
|
|
PinnedStatuses,
|
2017-12-05 22:02:27 +00:00
|
|
|
Lists,
|
2017-07-07 22:06:02 +00:00
|
|
|
} from './util/async-components';
|
2017-10-31 02:27:48 +00:00
|
|
|
import { me } from '../../initial_state';
|
2018-07-29 14:52:06 +00:00
|
|
|
import { previewState } from './components/media_modal';
|
2017-07-07 22:06:02 +00:00
|
|
|
|
|
|
|
// Dummy import, to make sure that <Status /> ends up in the application bundle.
|
|
|
|
// Without this it ends up in ~8 very commonly used bundles.
|
|
|
|
import '../../components/status';
|
2017-06-20 18:40:03 +00:00
|
|
|
|
2017-11-09 13:34:41 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
beforeUnload: { id: 'ui.beforeunload', defaultMessage: 'Your draft will be lost if you leave Mastodon.' },
|
|
|
|
});
|
|
|
|
|
2017-07-06 20:39:56 +00:00
|
|
|
const mapStateToProps = state => ({
|
2017-07-20 23:38:24 +00:00
|
|
|
isComposing: state.getIn(['compose', 'is_composing']),
|
2018-09-21 16:54:17 +00:00
|
|
|
hasComposingText: state.getIn(['compose', 'text']).trim().length !== 0,
|
|
|
|
hasMediaAttachments: state.getIn(['compose', 'media_attachments']).size > 0,
|
2018-03-07 01:26:43 +00:00
|
|
|
dropdownMenuIsOpen: state.getIn(['dropdown_menu', 'openId']) !== null,
|
2017-07-06 20:39:56 +00:00
|
|
|
});
|
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
const keyMap = {
|
2017-11-27 20:31:58 +00:00
|
|
|
help: '?',
|
2017-10-05 23:07:59 +00:00
|
|
|
new: 'n',
|
|
|
|
search: 's',
|
|
|
|
forceNew: 'option+n',
|
|
|
|
focusColumn: ['1', '2', '3', '4', '5', '6', '7', '8', '9'],
|
|
|
|
reply: 'r',
|
|
|
|
favourite: 'f',
|
|
|
|
boost: 'b',
|
|
|
|
mention: 'm',
|
|
|
|
open: ['enter', 'o'],
|
|
|
|
openProfile: 'p',
|
|
|
|
moveDown: ['down', 'j'],
|
|
|
|
moveUp: ['up', 'k'],
|
|
|
|
back: 'backspace',
|
|
|
|
goToHome: 'g h',
|
|
|
|
goToNotifications: 'g n',
|
|
|
|
goToLocal: 'g l',
|
|
|
|
goToFederated: 'g t',
|
2018-04-18 11:09:06 +00:00
|
|
|
goToDirect: 'g d',
|
2017-10-05 23:07:59 +00:00
|
|
|
goToStart: 'g s',
|
|
|
|
goToFavourites: 'g f',
|
|
|
|
goToPinned: 'g p',
|
|
|
|
goToProfile: 'g u',
|
|
|
|
goToBlocked: 'g b',
|
|
|
|
goToMuted: 'g m',
|
2018-08-20 01:44:16 +00:00
|
|
|
goToRequests: 'g r',
|
2018-04-18 01:33:59 +00:00
|
|
|
toggleHidden: 'x',
|
2017-10-05 23:07:59 +00:00
|
|
|
};
|
|
|
|
|
2018-03-06 06:45:31 +00:00
|
|
|
class SwitchingColumnsArea extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node,
|
|
|
|
location: PropTypes.object,
|
|
|
|
onLayoutChange: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
mobile: isMobile(window.innerWidth),
|
|
|
|
};
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
window.addEventListener('resize', this.handleResize, { passive: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
if (![this.props.location.pathname, '/'].includes(prevProps.location.pathname)) {
|
|
|
|
this.node.handleChildrenContentChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('resize', this.handleResize);
|
|
|
|
}
|
|
|
|
|
2018-07-29 14:52:06 +00:00
|
|
|
shouldUpdateScroll (_, { location }) {
|
|
|
|
return location.state !== previewState;
|
|
|
|
}
|
|
|
|
|
2018-03-06 06:45:31 +00:00
|
|
|
handleResize = debounce(() => {
|
|
|
|
// The cached heights are no longer accurate, invalidate
|
|
|
|
this.props.onLayoutChange();
|
|
|
|
|
|
|
|
this.setState({ mobile: isMobile(window.innerWidth) });
|
|
|
|
}, 500, {
|
|
|
|
trailing: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
setRef = c => {
|
2018-12-31 17:11:48 +00:00
|
|
|
this.node = c.getWrappedInstance();
|
2018-03-06 06:45:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { children } = this.props;
|
|
|
|
const { mobile } = this.state;
|
2018-05-30 16:42:06 +00:00
|
|
|
const redirect = mobile ? <Redirect from='/' to='/timelines/home' exact /> : <Redirect from='/' to='/getting-started' exact />;
|
2018-03-06 06:45:31 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<ColumnsAreaContainer ref={this.setRef} singleColumn={mobile}>
|
|
|
|
<WrappedSwitch>
|
2018-05-30 16:42:06 +00:00
|
|
|
{redirect}
|
2018-03-06 06:45:31 +00:00
|
|
|
<WrappedRoute path='/getting-started' component={GettingStarted} content={children} />
|
|
|
|
<WrappedRoute path='/keyboard-shortcuts' component={KeyboardShortcuts} content={children} />
|
2018-07-29 14:52:06 +00:00
|
|
|
<WrappedRoute path='/timelines/home' component={HomeTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/timelines/public' exact component={PublicTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/timelines/public/local' exact component={CommunityTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/timelines/direct' component={DirectTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/timelines/tag/:id' component={HashtagTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/timelines/list/:id' component={ListTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
|
|
|
|
<WrappedRoute path='/notifications' component={Notifications} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/favourites' component={FavouritedStatuses} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/pinned' component={PinnedStatuses} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
2018-03-06 06:45:31 +00:00
|
|
|
|
2018-04-08 12:26:58 +00:00
|
|
|
<WrappedRoute path='/search' component={Compose} content={children} componentParams={{ isSearchPage: true }} />
|
|
|
|
|
2018-03-06 06:45:31 +00:00
|
|
|
<WrappedRoute path='/statuses/new' component={Compose} content={children} />
|
2018-07-29 14:52:06 +00:00
|
|
|
<WrappedRoute path='/statuses/:statusId' exact component={Status} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/statuses/:statusId/reblogs' component={Reblogs} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/statuses/:statusId/favourites' component={Favourites} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
|
|
|
|
<WrappedRoute path='/accounts/:accountId' exact component={AccountTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/accounts/:accountId/with_replies' component={AccountTimeline} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll, withReplies: true }} />
|
|
|
|
<WrappedRoute path='/accounts/:accountId/followers' component={Followers} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/accounts/:accountId/following' component={Following} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/accounts/:accountId/media' component={AccountGallery} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
|
|
|
|
<WrappedRoute path='/follow_requests' component={FollowRequests} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/blocks' component={Blocks} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/domain_blocks' component={DomainBlocks} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
|
|
|
<WrappedRoute path='/mutes' component={Mutes} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
2018-08-26 14:39:37 +00:00
|
|
|
<WrappedRoute path='/lists' component={Lists} content={children} componentParams={{ shouldUpdateScroll: this.shouldUpdateScroll }} />
|
2018-03-06 06:45:31 +00:00
|
|
|
|
|
|
|
<WrappedRoute component={GenericNotFound} content={children} />
|
|
|
|
</WrappedSwitch>
|
|
|
|
</ColumnsAreaContainer>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @connect(mapStateToProps)
|
2017-11-09 13:34:41 +00:00
|
|
|
@injectIntl
|
2017-08-29 12:16:21 +00:00
|
|
|
@withRouter
|
2018-09-14 15:59:48 +00:00
|
|
|
class UI extends React.PureComponent {
|
2016-09-19 21:25:59 +00:00
|
|
|
|
2017-07-28 03:06:01 +00:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
2017-09-22 02:59:17 +00:00
|
|
|
};
|
2017-07-28 03:06:01 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
children: PropTypes.node,
|
2017-07-20 23:38:24 +00:00
|
|
|
isComposing: PropTypes.bool,
|
2017-11-09 13:34:41 +00:00
|
|
|
hasComposingText: PropTypes.bool,
|
2018-09-21 16:54:17 +00:00
|
|
|
hasMediaAttachments: PropTypes.bool,
|
2017-08-29 12:16:21 +00:00
|
|
|
location: PropTypes.object,
|
2017-11-09 13:34:41 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2018-03-07 01:26:43 +00:00
|
|
|
dropdownMenuIsOpen: PropTypes.bool,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2017-05-20 15:31:47 +00:00
|
|
|
draggingOver: false,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2016-09-19 21:25:59 +00:00
|
|
|
|
2017-11-09 13:34:41 +00:00
|
|
|
handleBeforeUnload = (e) => {
|
2018-09-21 16:54:17 +00:00
|
|
|
const { intl, isComposing, hasComposingText, hasMediaAttachments } = this.props;
|
2017-11-09 13:34:41 +00:00
|
|
|
|
2018-09-21 16:54:17 +00:00
|
|
|
if (isComposing && (hasComposingText || hasMediaAttachments)) {
|
2017-11-09 13:34:41 +00:00
|
|
|
// Setting returnValue to any string causes confirmation dialog.
|
|
|
|
// Many browsers no longer display this text to users,
|
|
|
|
// but we set user-friendly message for other browsers, e.g. Edge.
|
|
|
|
e.returnValue = intl.formatMessage(messages.beforeUnload);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 06:45:31 +00:00
|
|
|
handleLayoutChange = () => {
|
2017-08-07 18:32:03 +00:00
|
|
|
// The cached heights are no longer accurate, invalidate
|
2017-09-13 08:24:33 +00:00
|
|
|
this.props.dispatch(clearHeight());
|
2018-03-06 06:45:31 +00:00
|
|
|
}
|
2016-12-06 18:18:37 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleDragEnter = (e) => {
|
2017-03-31 09:48:25 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (!this.dragTargets) {
|
|
|
|
this.dragTargets = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.dragTargets.indexOf(e.target) === -1) {
|
|
|
|
this.dragTargets.push(e.target);
|
|
|
|
}
|
|
|
|
|
2018-06-17 16:10:58 +00:00
|
|
|
if (e.dataTransfer && Array.from(e.dataTransfer.types).includes('Files')) {
|
2017-04-01 20:11:28 +00:00
|
|
|
this.setState({ draggingOver: true });
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-31 09:48:25 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleDragOver = (e) => {
|
2019-01-17 22:27:51 +00:00
|
|
|
if (this.dataTransferIsText(e.dataTransfer)) return false;
|
2016-12-11 22:35:06 +00:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2017-03-31 09:48:25 +00:00
|
|
|
try {
|
|
|
|
e.dataTransfer.dropEffect = 'copy';
|
|
|
|
} catch (err) {
|
2016-12-11 22:35:06 +00:00
|
|
|
|
|
|
|
}
|
2017-03-31 09:48:25 +00:00
|
|
|
|
|
|
|
return false;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-11 22:35:06 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleDrop = (e) => {
|
2019-01-17 22:27:51 +00:00
|
|
|
if (this.dataTransferIsText(e.dataTransfer)) return;
|
2016-12-11 22:35:06 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
2017-03-28 12:17:24 +00:00
|
|
|
this.setState({ draggingOver: false });
|
2019-01-14 07:44:26 +00:00
|
|
|
this.dragTargets = [];
|
2017-03-28 12:17:24 +00:00
|
|
|
|
2019-02-02 19:22:05 +00:00
|
|
|
if (e.dataTransfer && e.dataTransfer.files.length >= 1) {
|
2016-12-11 22:35:06 +00:00
|
|
|
this.props.dispatch(uploadCompose(e.dataTransfer.files));
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-11 22:35:06 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleDragLeave = (e) => {
|
2017-03-31 09:48:25 +00:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
this.dragTargets = this.dragTargets.filter(el => el !== e.target && this.node.contains(el));
|
|
|
|
|
|
|
|
if (this.dragTargets.length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
this.setState({ draggingOver: false });
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-24 02:50:30 +00:00
|
|
|
|
2019-01-17 22:27:51 +00:00
|
|
|
dataTransferIsText = (dataTransfer) => {
|
|
|
|
return (dataTransfer && Array.from(dataTransfer.types).includes('text/plain') && dataTransfer.items.length === 1);
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
closeUploadModal = () => {
|
2017-04-24 18:19:33 +00:00
|
|
|
this.setState({ draggingOver: false });
|
|
|
|
}
|
|
|
|
|
2017-07-28 03:06:01 +00:00
|
|
|
handleServiceWorkerPostMessage = ({ data }) => {
|
|
|
|
if (data.type === 'navigate') {
|
|
|
|
this.context.router.history.push(data.path);
|
|
|
|
} else {
|
2017-08-24 10:15:36 +00:00
|
|
|
console.warn('Unknown message type:', data.type);
|
2017-07-28 03:06:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
componentWillMount () {
|
2017-11-09 13:34:41 +00:00
|
|
|
window.addEventListener('beforeunload', this.handleBeforeUnload, false);
|
2018-12-17 10:07:17 +00:00
|
|
|
|
2017-03-31 09:48:25 +00:00
|
|
|
document.addEventListener('dragenter', this.handleDragEnter, false);
|
|
|
|
document.addEventListener('dragover', this.handleDragOver, false);
|
|
|
|
document.addEventListener('drop', this.handleDrop, false);
|
|
|
|
document.addEventListener('dragleave', this.handleDragLeave, false);
|
2017-04-24 18:19:33 +00:00
|
|
|
document.addEventListener('dragend', this.handleDragEnd, false);
|
2017-01-19 09:54:18 +00:00
|
|
|
|
2017-07-28 03:06:01 +00:00
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
navigator.serviceWorker.addEventListener('message', this.handleServiceWorkerPostMessage);
|
|
|
|
}
|
|
|
|
|
2018-12-17 10:07:17 +00:00
|
|
|
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
|
|
|
|
window.setTimeout(() => Notification.requestPermission(), 120 * 1000);
|
|
|
|
}
|
|
|
|
|
2018-03-24 14:25:15 +00:00
|
|
|
this.props.dispatch(expandHomeTimeline());
|
2018-03-24 21:07:23 +00:00
|
|
|
this.props.dispatch(expandNotifications());
|
2018-12-17 10:07:17 +00:00
|
|
|
|
2018-06-29 13:34:36 +00:00
|
|
|
setTimeout(() => this.props.dispatch(fetchFilters()), 500);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-06 18:18:37 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
componentDidMount () {
|
|
|
|
this.hotkeys.__mousetrap__.stopCallback = (e, element) => {
|
2017-10-11 14:31:07 +00:00
|
|
|
return ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
|
2017-10-05 23:07:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
componentWillUnmount () {
|
2017-11-09 13:34:41 +00:00
|
|
|
window.removeEventListener('beforeunload', this.handleBeforeUnload);
|
2017-03-31 09:48:25 +00:00
|
|
|
document.removeEventListener('dragenter', this.handleDragEnter);
|
|
|
|
document.removeEventListener('dragover', this.handleDragOver);
|
|
|
|
document.removeEventListener('drop', this.handleDrop);
|
|
|
|
document.removeEventListener('dragleave', this.handleDragLeave);
|
2017-04-24 18:19:33 +00:00
|
|
|
document.removeEventListener('dragend', this.handleDragEnd);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-31 09:48:25 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
setRef = c => {
|
2017-03-31 09:48:25 +00:00
|
|
|
this.node = c;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-06 18:18:37 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
handleHotkeyNew = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const element = this.node.querySelector('.compose-form__autosuggest-wrapper textarea');
|
|
|
|
|
|
|
|
if (element) {
|
|
|
|
element.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeySearch = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const element = this.node.querySelector('.search__input');
|
|
|
|
|
|
|
|
if (element) {
|
|
|
|
element.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyForceNew = e => {
|
|
|
|
this.handleHotkeyNew(e);
|
|
|
|
this.props.dispatch(resetCompose());
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyFocusColumn = e => {
|
|
|
|
const index = (e.key * 1) + 1; // First child is drawer, skip that
|
|
|
|
const column = this.node.querySelector(`.column:nth-child(${index})`);
|
2019-05-03 04:20:36 +00:00
|
|
|
if (!column) return;
|
|
|
|
const container = column.querySelector('.scrollable');
|
2017-10-05 23:07:59 +00:00
|
|
|
|
2019-05-03 04:20:36 +00:00
|
|
|
if (container) {
|
|
|
|
const status = container.querySelector('.focusable');
|
2017-10-05 23:07:59 +00:00
|
|
|
|
|
|
|
if (status) {
|
2019-05-03 04:20:36 +00:00
|
|
|
if (container.scrollTop > status.offsetTop) {
|
|
|
|
status.scrollIntoView(true);
|
|
|
|
}
|
2017-10-05 23:07:59 +00:00
|
|
|
status.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyBack = () => {
|
|
|
|
if (window.history && window.history.length === 1) {
|
|
|
|
this.context.router.history.push('/');
|
|
|
|
} else {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setHotkeysRef = c => {
|
|
|
|
this.hotkeys = c;
|
|
|
|
}
|
|
|
|
|
2017-11-27 20:31:58 +00:00
|
|
|
handleHotkeyToggleHelp = () => {
|
|
|
|
if (this.props.location.pathname === '/keyboard-shortcuts') {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
} else {
|
|
|
|
this.context.router.history.push('/keyboard-shortcuts');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
handleHotkeyGoToHome = () => {
|
|
|
|
this.context.router.history.push('/timelines/home');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToNotifications = () => {
|
|
|
|
this.context.router.history.push('/notifications');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToLocal = () => {
|
|
|
|
this.context.router.history.push('/timelines/public/local');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToFederated = () => {
|
|
|
|
this.context.router.history.push('/timelines/public');
|
|
|
|
}
|
|
|
|
|
2018-04-18 11:09:06 +00:00
|
|
|
handleHotkeyGoToDirect = () => {
|
|
|
|
this.context.router.history.push('/timelines/direct');
|
|
|
|
}
|
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
handleHotkeyGoToStart = () => {
|
|
|
|
this.context.router.history.push('/getting-started');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToFavourites = () => {
|
|
|
|
this.context.router.history.push('/favourites');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToPinned = () => {
|
|
|
|
this.context.router.history.push('/pinned');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToProfile = () => {
|
2017-10-31 02:27:48 +00:00
|
|
|
this.context.router.history.push(`/accounts/${me}`);
|
2017-10-05 23:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToBlocked = () => {
|
|
|
|
this.context.router.history.push('/blocks');
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyGoToMuted = () => {
|
|
|
|
this.context.router.history.push('/mutes');
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 01:44:16 +00:00
|
|
|
handleHotkeyGoToRequests = () => {
|
|
|
|
this.context.router.history.push('/follow_requests');
|
|
|
|
}
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
render () {
|
2018-03-06 06:45:31 +00:00
|
|
|
const { draggingOver } = this.state;
|
2018-03-07 01:26:43 +00:00
|
|
|
const { children, isComposing, location, dropdownMenuIsOpen } = this.props;
|
2017-03-24 02:50:30 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
const handlers = {
|
2017-11-27 20:31:58 +00:00
|
|
|
help: this.handleHotkeyToggleHelp,
|
2017-10-05 23:07:59 +00:00
|
|
|
new: this.handleHotkeyNew,
|
|
|
|
search: this.handleHotkeySearch,
|
|
|
|
forceNew: this.handleHotkeyForceNew,
|
|
|
|
focusColumn: this.handleHotkeyFocusColumn,
|
|
|
|
back: this.handleHotkeyBack,
|
|
|
|
goToHome: this.handleHotkeyGoToHome,
|
|
|
|
goToNotifications: this.handleHotkeyGoToNotifications,
|
|
|
|
goToLocal: this.handleHotkeyGoToLocal,
|
|
|
|
goToFederated: this.handleHotkeyGoToFederated,
|
2018-04-18 11:09:06 +00:00
|
|
|
goToDirect: this.handleHotkeyGoToDirect,
|
2017-10-05 23:07:59 +00:00
|
|
|
goToStart: this.handleHotkeyGoToStart,
|
|
|
|
goToFavourites: this.handleHotkeyGoToFavourites,
|
|
|
|
goToPinned: this.handleHotkeyGoToPinned,
|
|
|
|
goToProfile: this.handleHotkeyGoToProfile,
|
|
|
|
goToBlocked: this.handleHotkeyGoToBlocked,
|
|
|
|
goToMuted: this.handleHotkeyGoToMuted,
|
2018-08-20 01:44:16 +00:00
|
|
|
goToRequests: this.handleHotkeyGoToRequests,
|
2017-10-05 23:07:59 +00:00
|
|
|
};
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
return (
|
2018-10-17 14:56:16 +00:00
|
|
|
<HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef} attach={window} focused>
|
2018-03-07 01:26:43 +00:00
|
|
|
<div className={classNames('ui', { 'is-composing': isComposing })} ref={this.setRef} style={{ pointerEvents: dropdownMenuIsOpen ? 'none' : null }}>
|
2017-10-05 23:07:59 +00:00
|
|
|
<TabsBar />
|
|
|
|
|
2018-03-06 06:45:31 +00:00
|
|
|
<SwitchingColumnsArea location={location} onLayoutChange={this.handleLayoutChange}>
|
|
|
|
{children}
|
|
|
|
</SwitchingColumnsArea>
|
2017-10-05 23:07:59 +00:00
|
|
|
|
|
|
|
<NotificationsContainer />
|
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
<ModalContainer />
|
|
|
|
<UploadArea active={draggingOver} onClose={this.closeUploadModal} />
|
|
|
|
</div>
|
|
|
|
</HotKeys>
|
2016-09-19 21:25:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|