2017-12-20 16:50:29 +01:00
|
|
|
import React from 'react';
|
|
|
|
import Column from 'flavours/glitch/features/ui/components/column';
|
|
|
|
import ColumnBackButtonSlim from 'flavours/glitch/components/column_back_button_slim';
|
2019-04-27 19:17:42 +02:00
|
|
|
import { connect } from 'react-redux';
|
2017-12-20 16:50:29 +01:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'keyboard_shortcuts.heading', defaultMessage: 'Keyboard Shortcuts' },
|
|
|
|
});
|
|
|
|
|
2019-04-27 19:17:42 +02:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
collapseEnabled: state.getIn(['local_settings', 'collapsed', 'enabled']),
|
|
|
|
});
|
|
|
|
|
2019-09-09 15:16:08 +02:00
|
|
|
export default @connect(mapStateToProps)
|
2017-12-20 16:50:29 +01:00
|
|
|
@injectIntl
|
2019-09-09 15:16:08 +02:00
|
|
|
class KeyboardShortcuts extends ImmutablePureComponent {
|
2017-12-20 16:50:29 +01:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
multiColumn: PropTypes.bool,
|
2019-04-27 19:17:42 +02:00
|
|
|
collapseEnabled: PropTypes.bool,
|
2017-12-20 16:50:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2019-08-01 19:17:17 +02:00
|
|
|
const { intl, collapseEnabled, multiColumn } = this.props;
|
2017-12-20 16:50:29 +01:00
|
|
|
|
|
|
|
return (
|
2019-08-01 19:17:17 +02:00
|
|
|
<Column bindToDocument={!multiColumn} icon='question' heading={intl.formatMessage(messages.heading)}>
|
2017-12-20 16:50:29 +01:00
|
|
|
<ColumnBackButtonSlim />
|
|
|
|
<div className='keyboard-shortcuts scrollable optionally-scrollable'>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th><FormattedMessage id='keyboard_shortcuts.hotkey' defaultMessage='Hotkey' /></th>
|
|
|
|
<th><FormattedMessage id='keyboard_shortcuts.description' defaultMessage='Description' /></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>r</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.reply' defaultMessage='to reply' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>m</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.mention' defaultMessage='to mention author' /></td>
|
|
|
|
</tr>
|
2018-07-26 21:51:50 +02:00
|
|
|
<tr>
|
|
|
|
<td><kbd>p</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.profile' defaultMessage="to open author's profile" /></td>
|
|
|
|
</tr>
|
2017-12-20 16:50:29 +01:00
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>f</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.favourite' defaultMessage='to favourite' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>b</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td>
|
|
|
|
</tr>
|
2019-04-27 19:08:38 +02:00
|
|
|
<tr>
|
|
|
|
<td><kbd>d</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.bookmark' defaultMessage='to bookmark' /></td>
|
|
|
|
</tr>
|
2017-12-20 16:50:29 +01:00
|
|
|
<tr>
|
2018-07-24 20:58:32 +02:00
|
|
|
<td><kbd>enter</kbd>, <kbd>o</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td>
|
|
|
|
</tr>
|
2019-11-29 17:02:36 +01:00
|
|
|
<tr>
|
|
|
|
<td><kbd>e</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.open_media' defaultMessage='to open media' /></td>
|
|
|
|
</tr>
|
2018-07-24 20:44:19 +02:00
|
|
|
<tr>
|
|
|
|
<td><kbd>x</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toggle_hidden' defaultMessage='to show/hide text behind CW' /></td>
|
|
|
|
</tr>
|
2019-05-26 18:58:14 +02:00
|
|
|
<tr>
|
|
|
|
<td><kbd>h</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toggle_sensitivity' defaultMessage='to show/hide media' /></td>
|
|
|
|
</tr>
|
2019-04-27 19:17:42 +02:00
|
|
|
{collapseEnabled && (
|
|
|
|
<tr>
|
|
|
|
<td><kbd>shift</kbd>+<kbd>x</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toggle_collapse' defaultMessage='to collapse/uncollapse toots' /></td>
|
|
|
|
</tr>
|
|
|
|
)}
|
2017-12-20 16:50:29 +01:00
|
|
|
<tr>
|
2018-07-24 20:58:32 +02:00
|
|
|
<td><kbd>up</kbd>, <kbd>k</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-07-24 20:58:32 +02:00
|
|
|
<td><kbd>down</kbd>, <kbd>j</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>1</kbd>-<kbd>9</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.column' defaultMessage='to focus a status in one of the columns' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>n</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.compose' defaultMessage='to focus the compose textarea' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>alt</kbd>+<kbd>n</kbd></td>
|
2022-05-03 10:59:23 +02:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toot' defaultMessage='to start a brand new post' /></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
</tr>
|
2020-06-09 10:32:32 +02:00
|
|
|
<tr>
|
|
|
|
<td><kbd>alt</kbd>+<kbd>x</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.spoilers' defaultMessage='to show/hide CW field' /></td>
|
|
|
|
</tr>
|
2017-12-20 16:50:29 +01:00
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>backspace</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.back' defaultMessage='to navigate back' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>s</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.search' defaultMessage='to focus search' /></td>
|
|
|
|
</tr>
|
2020-02-21 12:25:23 +01:00
|
|
|
<tr>
|
|
|
|
<td><kbd>alt</kbd>+<kbd>enter</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.secondary_toot' defaultMessage='to send toot using secondary privacy setting' /></td>
|
|
|
|
</tr>
|
2017-12-20 16:50:29 +01:00
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>esc</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.unfocus' defaultMessage='to un-focus compose textarea/search' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-21 20:04:40 +01:00
|
|
|
<td><kbd>?</kbd></td>
|
2017-12-20 16:50:29 +01:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.legend' defaultMessage='to display this legend' /></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|