2017-11-28 07:31:58 +11:00
|
|
|
import React from 'react';
|
2022-10-05 05:13:23 +11:00
|
|
|
import Column from 'mastodon/components/column';
|
2017-11-29 00:32:27 +11:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-11-28 07:31:58 +11:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2022-10-05 05:13:23 +11:00
|
|
|
import ColumnHeader from 'mastodon/components/column_header';
|
2022-10-20 23:35:29 +11:00
|
|
|
import { Helmet } from 'react-helmet';
|
2017-11-28 07:31:58 +11:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'keyboard_shortcuts.heading', defaultMessage: 'Keyboard Shortcuts' },
|
|
|
|
});
|
|
|
|
|
2018-09-15 01:59:48 +10:00
|
|
|
export default @injectIntl
|
|
|
|
class KeyboardShortcuts extends ImmutablePureComponent {
|
2017-11-28 07:31:58 +11:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2019-08-02 03:17:17 +10:00
|
|
|
const { intl, multiColumn } = this.props;
|
2017-11-28 07:31:58 +11:00
|
|
|
|
|
|
|
return (
|
2022-10-05 05:13:23 +11:00
|
|
|
<Column>
|
|
|
|
<ColumnHeader
|
|
|
|
title={intl.formatMessage(messages.heading)}
|
|
|
|
icon='question'
|
|
|
|
multiColumn={multiColumn}
|
|
|
|
/>
|
|
|
|
|
2017-11-28 07:31:58 +11:00
|
|
|
<div className='keyboard-shortcuts scrollable optionally-scrollable'>
|
|
|
|
<table>
|
|
|
|
<thead>
|
2017-11-29 00:32:27 +11:00
|
|
|
<tr>
|
|
|
|
<th><FormattedMessage id='keyboard_shortcuts.hotkey' defaultMessage='Hotkey' /></th>
|
|
|
|
<th><FormattedMessage id='keyboard_shortcuts.description' defaultMessage='Description' /></th>
|
|
|
|
</tr>
|
2017-11-28 07:31:58 +11:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-11-29 00:32:27 +11:00
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>r</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.reply' defaultMessage='to reply' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>m</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.mention' defaultMessage='to mention author' /></td>
|
|
|
|
</tr>
|
2018-07-26 12:51:25 +10:00
|
|
|
<tr>
|
|
|
|
<td><kbd>p</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.profile' defaultMessage="to open author's profile" /></td>
|
|
|
|
</tr>
|
2017-11-29 00:32:27 +11:00
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>f</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.favourite' defaultMessage='to favourite' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>b</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-07-26 12:51:25 +10:00
|
|
|
<td><kbd>enter</kbd>, <kbd>o</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td>
|
|
|
|
</tr>
|
2019-11-30 03:02:36 +11:00
|
|
|
<tr>
|
|
|
|
<td><kbd>e</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.open_media' defaultMessage='to open media' /></td>
|
|
|
|
</tr>
|
2018-04-18 21:15:57 +10: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 07:20:51 +10:00
|
|
|
<tr>
|
|
|
|
<td><kbd>h</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toggle_sensitivity' defaultMessage='to show/hide media' /></td>
|
|
|
|
</tr>
|
2017-11-29 00:32:27 +11:00
|
|
|
<tr>
|
2018-07-26 12:51:25 +10:00
|
|
|
<td><kbd>up</kbd>, <kbd>k</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-07-26 12:51:25 +10:00
|
|
|
<td><kbd>down</kbd>, <kbd>j</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>1</kbd>-<kbd>9</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.column' defaultMessage='to focus a status in one of the columns' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>n</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.compose' defaultMessage='to focus the compose textarea' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>alt</kbd>+<kbd>n</kbd></td>
|
2022-04-29 08:24:31 +10:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.toot' defaultMessage='to start a brand new post' /></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
</tr>
|
2020-06-09 18:32:32 +10: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-11-29 00:32:27 +11:00
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>backspace</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.back' defaultMessage='to navigate back' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>s</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.search' defaultMessage='to focus search' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>esc</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.unfocus' defaultMessage='to un-focus compose textarea/search' /></td>
|
|
|
|
</tr>
|
2018-08-27 04:22:16 +10:00
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>h</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.home' defaultMessage='to open home timeline' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>n</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.notifications' defaultMessage='to open notifications column' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>l</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.local' defaultMessage='to open local timeline' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>t</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.federated' defaultMessage='to open federated timeline' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>d</kbd></td>
|
2022-05-03 17:09:09 +10:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.direct' defaultMessage='to open direct messages column' /></td>
|
2018-08-27 04:22:16 +10:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>s</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.start' defaultMessage='to open "get started" column' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>f</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.favourites' defaultMessage='to open favourites list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>p</kbd></td>
|
2022-04-29 08:24:31 +10:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.pinned' defaultMessage='to open pinned posts list' /></td>
|
2018-08-27 04:22:16 +10:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>u</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.my_profile' defaultMessage='to open your profile' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>b</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.blocked' defaultMessage='to open blocked users list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>m</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.muted' defaultMessage='to open muted users list' /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><kbd>g</kbd>+<kbd>r</kbd></td>
|
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.requests' defaultMessage='to open follow requests list' /></td>
|
|
|
|
</tr>
|
2017-11-29 00:32:27 +11:00
|
|
|
<tr>
|
2017-12-20 13:46:25 +11:00
|
|
|
<td><kbd>?</kbd></td>
|
2017-11-29 00:32:27 +11:00
|
|
|
<td><FormattedMessage id='keyboard_shortcuts.legend' defaultMessage='to display this legend' /></td>
|
|
|
|
</tr>
|
2017-11-28 07:31:58 +11:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-10-20 23:35:29 +11:00
|
|
|
|
|
|
|
<Helmet>
|
|
|
|
<meta name='robots' content='noindex' />
|
|
|
|
</Helmet>
|
2017-11-28 07:31:58 +11:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|