2017-07-18 20:21:04 +02:00
// Package imports
2017-06-29 07:00:54 +02:00
import React from 'react' ;
import PropTypes from 'prop-types' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-07-20 04:54:02 +02:00
import { defineMessages , FormattedMessage , injectIntl } from 'react-intl' ;
2017-07-12 10:02:51 +02:00
2017-07-18 20:21:04 +02:00
// Our imports
2022-05-15 17:30:40 +02:00
import { expandSpoilers , disableSwiping } from 'flavours/glitch/util/initial_state' ;
import { preferenceLink } from 'flavours/glitch/util/backend_links' ;
2017-07-20 04:54:02 +02:00
import LocalSettingsPageItem from './item' ;
2022-05-15 17:30:40 +02:00
import DeprecatedLocalSettingsPageItem from './deprecated_item' ;
2017-06-29 07:00:54 +02:00
2017-07-20 04:54:02 +02:00
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2017-07-04 04:51:00 +02:00
const messages = defineMessages ( {
layout _auto : { id : 'layout.auto' , defaultMessage : 'Auto' } ,
2019-06-12 20:40:20 +02:00
layout _auto _hint : { id : 'layout.hint.auto' , defaultMessage : 'Automatically chose layout based on “Enable advanced web interface” setting and screen size.' } ,
2017-07-04 04:51:00 +02:00
layout _desktop : { id : 'layout.desktop' , defaultMessage : 'Desktop' } ,
2019-06-12 20:40:20 +02:00
layout _desktop _hint : { id : 'layout.hint.desktop' , defaultMessage : 'Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.' } ,
2017-07-04 04:51:00 +02:00
layout _mobile : { id : 'layout.single' , defaultMessage : 'Mobile' } ,
2019-06-12 20:40:20 +02:00
layout _mobile _hint : { id : 'layout.hint.single' , defaultMessage : 'Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.' } ,
2017-09-23 23:11:02 +02:00
side _arm _none : { id : 'settings.side_arm.none' , defaultMessage : 'None' } ,
2022-10-05 14:10:15 +02:00
side _arm _keep : { id : 'settings.side_arm_reply_mode.keep' , defaultMessage : 'Keep its set privacy' } ,
2018-07-11 22:49:07 +02:00
side _arm _copy : { id : 'settings.side_arm_reply_mode.copy' , defaultMessage : 'Copy privacy setting of the toot being replied to' } ,
2018-07-12 12:06:42 +02:00
side _arm _restrict : { id : 'settings.side_arm_reply_mode.restrict' , defaultMessage : 'Restrict privacy setting to that of the toot being replied to' } ,
2018-08-28 17:16:30 +02:00
regexp : { id : 'settings.content_warnings.regexp' , defaultMessage : 'Regular expression' } ,
2019-08-28 22:13:41 +02:00
rewrite _mentions _no : { id : 'settings.rewrite_mentions_no' , defaultMessage : 'Do not rewrite mentions' } ,
rewrite _mentions _acct : { id : 'settings.rewrite_mentions_acct' , defaultMessage : 'Rewrite with username and domain (when the account is remote)' } ,
rewrite _mentions _username : { id : 'settings.rewrite_mentions_username' , defaultMessage : 'Rewrite with username' } ,
2020-10-26 20:45:25 +01:00
pop _in _left : { id : 'settings.pop_in_left' , defaultMessage : 'Left' } ,
pop _in _right : { id : 'settings.pop_in_right' , defaultMessage : 'Right' } ,
2017-07-04 04:51:00 +02:00
} ) ;
2019-09-09 15:16:08 +02:00
export default @ injectIntl
class LocalSettingsPage extends React . PureComponent {
2017-06-29 07:00:54 +02:00
static propTypes = {
2017-07-20 04:54:02 +02:00
index : PropTypes . number ,
intl : PropTypes . object . isRequired ,
onChange : PropTypes . func . isRequired ,
settings : ImmutablePropTypes . map . isRequired ,
2017-06-29 07:00:54 +02:00
} ;
2017-07-20 04:54:02 +02:00
pages = [
( { intl , onChange , settings } ) => (
< div className = 'glitch local-settings__page general' >
2017-06-29 07:00:54 +02:00
< h1 > < FormattedMessage id = 'settings.general' defaultMessage = 'General' / > < / h 1 >
2018-08-22 13:17:21 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'show_reply_count' ] }
id = 'mastodon-settings--reply-count'
onChange = { onChange }
>
< FormattedMessage id = 'settings.show_reply_counter' defaultMessage = 'Display an estimate of the reply count' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2019-04-27 17:41:49 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'hicolor_privacy_icons' ] }
id = 'mastodon-settings--hicolor_privacy_icons'
onChange = { onChange }
>
< FormattedMessage id = 'settings.hicolor_privacy_icons' defaultMessage = 'High color privacy icons' / >
< span className = 'hint' > < FormattedMessage id = 'settings.hicolor_privacy_icons.hint' defaultMessage = "Display privacy icons in bright and easily distinguishable colors" / > < / s p a n >
< / L o c a l S e t t i n g s P a g e I t e m >
2019-06-07 18:38:07 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'confirm_boost_missing_media_description' ] }
id = 'mastodon-settings--confirm_boost_missing_media_description'
onChange = { onChange }
>
< FormattedMessage id = 'settings.confirm_boost_missing_media_description' defaultMessage = 'Show confirmation dialog before boosting toots lacking media descriptions' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2019-08-01 15:01:09 +02:00
< LocalSettingsPageItem
settings = { settings }
2019-08-01 18:48:16 +02:00
item = { [ 'tag_misleading_links' ] }
id = 'mastodon-settings--tag_misleading_links'
2019-08-01 15:01:09 +02:00
onChange = { onChange }
>
2019-08-01 18:48:16 +02:00
< FormattedMessage id = 'settings.tag_misleading_links' defaultMessage = 'Tag misleading links' / >
< span className = 'hint' > < FormattedMessage id = 'settings.tag_misleading_links.hint' defaultMessage = "Add a visual indication with the link target host to every link not mentioning it explicitly" / > < / s p a n >
2019-08-01 15:01:09 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2019-08-28 22:13:41 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'rewrite_mentions' ] }
id = 'mastodon-settings--rewrite_mentions'
options = { [
{ value : 'no' , message : intl . formatMessage ( messages . rewrite _mentions _no ) } ,
{ value : 'acct' , message : intl . formatMessage ( messages . rewrite _mentions _acct ) } ,
{ value : 'username' , message : intl . formatMessage ( messages . rewrite _mentions _username ) } ,
] }
onChange = { onChange }
>
< FormattedMessage id = 'settings.rewrite_mentions' defaultMessage = 'Rewrite mentions in displayed statuses' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2018-09-06 20:55:11 +02:00
< section >
< h2 > < FormattedMessage id = 'settings.notifications_opts' defaultMessage = 'Notifications options' / > < / h 2 >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'notifications' , 'tab_badge' ] }
id = 'mastodon-settings--notifications-tab_badge'
onChange = { onChange }
>
2018-10-01 22:12:46 +02:00
< FormattedMessage id = 'settings.notifications.tab_badge' defaultMessage = "Unread notifications badge" / >
< span className = 'hint' > < FormattedMessage id = 'settings.notifications.tab_badge.hint' defaultMessage = "Display a badge for unread notifications in the column icons when the notifications column isn't open" / > < / s p a n >
2018-09-06 20:55:11 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'notifications' , 'favicon_badge' ] }
id = 'mastodon-settings--notifications-favicon_badge'
onChange = { onChange }
>
2018-10-01 22:12:46 +02:00
< FormattedMessage id = 'settings.notifications.favicon_badge' defaultMessage = 'Unread notifications favicon badge' / >
< span className = 'hint' > < FormattedMessage id = 'settings.notifications.favicon_badge.hint' defaultMessage = "Add a badge for unread notifications to the favicon" / > < / s p a n >
2018-09-06 20:55:11 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< / s e c t i o n >
2022-05-27 16:34:29 +02:00
< section >
< h2 > < FormattedMessage id = 'settings.status_icons' defaultMessage = 'Toot icons' / > < / h 2 >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'status_icons' , 'language' ] }
id = 'mastodon-settings--status-icons-language'
onChange = { onChange }
>
< FormattedMessage id = 'settings.status_icons_language' defaultMessage = 'Language indicator' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'status_icons' , 'reply' ] }
id = 'mastodon-settings--status-icons-reply'
onChange = { onChange }
>
< FormattedMessage id = 'settings.status_icons_reply' defaultMessage = 'Reply indicator' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'status_icons' , 'local_only' ] }
id = 'mastodon-settings--status-icons-local_only'
onChange = { onChange }
>
< FormattedMessage id = 'settings.status_icons_local_only' defaultMessage = 'Local-only indicator' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'status_icons' , 'media' ] }
id = 'mastodon-settings--status-icons-media'
onChange = { onChange }
>
< FormattedMessage id = 'settings.status_icons_media' defaultMessage = 'Media and poll indicators' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'status_icons' , 'visibility' ] }
id = 'mastodon-settings--status-icons-visibility'
onChange = { onChange }
>
< FormattedMessage id = 'settings.status_icons_visibility' defaultMessage = 'Toot privacy indicator' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< / s e c t i o n >
2018-08-22 13:01:12 +02:00
< section >
< h2 > < FormattedMessage id = 'settings.layout_opts' defaultMessage = 'Layout options' / > < / h 2 >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'layout' ] }
id = 'mastodon-settings--layout'
options = { [
2019-06-12 20:40:20 +02:00
{ value : 'auto' , message : intl . formatMessage ( messages . layout _auto ) , hint : intl . formatMessage ( messages . layout _auto _hint ) } ,
{ value : 'multiple' , message : intl . formatMessage ( messages . layout _desktop ) , hint : intl . formatMessage ( messages . layout _desktop _hint ) } ,
{ value : 'single' , message : intl . formatMessage ( messages . layout _mobile ) , hint : intl . formatMessage ( messages . layout _mobile _hint ) } ,
2018-08-22 13:01:12 +02:00
] }
onChange = { onChange }
>
< FormattedMessage id = 'settings.layout' defaultMessage = 'Layout:' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'stretch' ] }
id = 'mastodon-settings--stretch'
onChange = { onChange }
>
< FormattedMessage id = 'settings.wide_view' defaultMessage = 'Wide view (Desktop mode only)' / >
2018-10-01 22:12:46 +02:00
< span className = 'hint' > < FormattedMessage id = 'settings.wide_view_hint' defaultMessage = 'Stretches columns to better fill the available space.' / > < / s p a n >
2018-08-22 13:01:12 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'navbar_under' ] }
id = 'mastodon-settings--navbar_under'
onChange = { onChange }
>
< FormattedMessage id = 'settings.navbar_under' defaultMessage = 'Navbar at the bottom (Mobile only)' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2022-05-15 17:30:40 +02:00
< DeprecatedLocalSettingsPageItem
2019-01-04 18:53:27 +01:00
id = 'mastodon-settings--swipe_to_change_columns'
2022-05-15 17:30:40 +02:00
value = { ! disableSwiping }
2019-01-04 18:53:27 +01:00
>
< FormattedMessage id = 'settings.swipe_to_change_columns' defaultMessage = 'Allow swiping to change columns (Mobile only)' / >
2022-05-15 17:30:40 +02:00
< span className = 'hint' >
< FormattedMessage
id = 'settings.deprecated_setting'
defaultMessage = "This setting is now controlled from Mastodon's {settings_page_link}"
values = { {
settings _page _link : (
< a href = { preferenceLink ( 'user_setting_disable_swiping' ) } >
< FormattedMessage
id = 'settings.shared_settings_link'
defaultMessage = 'user preferences'
/ >
< / a >
)
} }
/ >
< / s p a n >
< / D e p r e c a t e d L o c a l S e t t i n g s P a g e I t e m >
2018-08-22 13:01:12 +02:00
< / s e c t i o n >
2018-09-06 20:46:42 +02:00
< / d i v >
) ,
( { intl , onChange , settings } ) => (
2018-09-28 18:18:57 +02:00
< div className = 'glitch local-settings__page compose_box_opts' >
2019-02-03 00:34:52 +01:00
< h1 > < FormattedMessage id = 'settings.compose_box_opts' defaultMessage = 'Compose box' / > < / h 1 >
2018-09-06 20:46:42 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'always_show_spoilers_field' ] }
id = 'mastodon-settings--always_show_spoilers_field'
onChange = { onChange }
>
< FormattedMessage id = 'settings.always_show_spoilers_field' defaultMessage = 'Always enable the Content Warning field' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2020-01-07 18:11:50 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'prepend_cw_re' ] }
id = 'mastodon-settings--prepend_cw_re'
onChange = { onChange }
>
< FormattedMessage id = 'settings.prepend_cw_re' defaultMessage = 'Prepend “re: ” to content warnings when replying' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2018-09-28 20:58:03 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'preselect_on_reply' ] }
id = 'mastodon-settings--preselect_on_reply'
onChange = { onChange }
>
2018-10-01 22:12:46 +02:00
< FormattedMessage id = 'settings.preselect_on_reply' defaultMessage = 'Pre-select usernames on reply' / >
< span className = 'hint' > < FormattedMessage id = 'settings.preselect_on_reply_hint' defaultMessage = 'When replying to a conversation with multiple participants, pre-select usernames past the first' / > < / s p a n >
2018-09-28 20:58:03 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2018-09-06 20:46:42 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'confirm_missing_media_description' ] }
id = 'mastodon-settings--confirm_missing_media_description'
onChange = { onChange }
>
< FormattedMessage id = 'settings.confirm_missing_media_description' defaultMessage = 'Show confirmation dialog before sending toots lacking media descriptions' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2018-11-27 18:25:51 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'confirm_before_clearing_draft' ] }
id = 'mastodon-settings--confirm_before_clearing_draft'
onChange = { onChange }
>
2018-11-27 18:54:47 +01:00
< FormattedMessage id = 'settings.confirm_before_clearing_draft' defaultMessage = 'Show confirmation dialog before overwriting the message being composed' / >
2018-11-27 18:25:51 +01:00
< / L o c a l S e t t i n g s P a g e I t e m >
2019-05-12 21:55:44 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'show_content_type_choice' ] }
id = 'mastodon-settings--show_content_type_choice'
onChange = { onChange }
>
< FormattedMessage id = 'settings.show_content_type_choice' defaultMessage = 'Show content-type choice when authoring toots' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2018-09-06 20:46:42 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'side_arm' ] }
id = 'mastodon-settings--side_arm'
options = { [
{ value : 'none' , message : intl . formatMessage ( messages . side _arm _none ) } ,
{ value : 'direct' , message : intl . formatMessage ( { id : 'privacy.direct.short' } ) } ,
{ value : 'private' , message : intl . formatMessage ( { id : 'privacy.private.short' } ) } ,
{ value : 'unlisted' , message : intl . formatMessage ( { id : 'privacy.unlisted.short' } ) } ,
{ value : 'public' , message : intl . formatMessage ( { id : 'privacy.public.short' } ) } ,
] }
onChange = { onChange }
>
< FormattedMessage id = 'settings.side_arm' defaultMessage = 'Secondary toot button:' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'side_arm_reply_mode' ] }
id = 'mastodon-settings--side_arm_reply_mode'
options = { [
{ value : 'keep' , message : intl . formatMessage ( messages . side _arm _keep ) } ,
{ value : 'copy' , message : intl . formatMessage ( messages . side _arm _copy ) } ,
{ value : 'restrict' , message : intl . formatMessage ( messages . side _arm _restrict ) } ,
] }
onChange = { onChange }
>
2022-10-05 14:10:15 +02:00
< FormattedMessage id = 'settings.side_arm_reply_mode' defaultMessage = 'When replying to a toot, the secondary toot button should:' / >
2018-09-06 20:46:42 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2017-06-29 07:00:54 +02:00
< / d i v >
2017-07-20 04:54:02 +02:00
) ,
2018-08-28 17:16:30 +02:00
( { intl , onChange , settings } ) => (
2018-08-28 14:10:26 +02:00
< div className = 'glitch local-settings__page content_warnings' >
< h1 > < FormattedMessage id = 'settings.content_warnings' defaultMessage = 'Content warnings' / > < / h 1 >
2022-07-24 20:01:30 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'content_warnings' , 'shared_state' ] }
id = 'mastodon-settings--content_warnings-shared_state'
onChange = { onChange }
>
< FormattedMessage id = 'settings.content_warnings_shared_state' defaultMessage = 'Show/hide content of all copies at once' / >
< span className = 'hint' > < FormattedMessage id = 'settings.content_warnings_shared_state_hint' defaultMessage = 'Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW' / > < / s p a n >
< / L o c a l S e t t i n g s P a g e I t e m >
2022-07-24 11:10:49 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'content_warnings' , 'media_outside' ] }
id = 'mastodon-settings--content_warnings-media_outside'
onChange = { onChange }
>
< FormattedMessage id = 'settings.content_warnings_media_outside' defaultMessage = 'Display media attachments outside content warnings' / >
< span className = 'hint' > < FormattedMessage id = 'settings.content_warnings_media_outside_hint' defaultMessage = 'Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments' / > < / s p a n >
< / L o c a l S e t t i n g s P a g e I t e m >
2022-07-24 17:28:47 +02:00
< section >
< h2 > < FormattedMessage id = 'settings.content_warnings_unfold_opts' defaultMessage = 'Auto-unfolding options' / > < / h 2 >
< DeprecatedLocalSettingsPageItem
id = 'mastodon-settings--content_warnings-auto_unfold'
value = { expandSpoilers }
>
< FormattedMessage id = 'settings.enable_content_warnings_auto_unfold' defaultMessage = 'Automatically unfold content-warnings' / >
< span className = 'hint' >
< FormattedMessage
id = 'settings.deprecated_setting'
defaultMessage = "This setting is now controlled from Mastodon's {settings_page_link}"
values = { {
settings _page _link : (
< a href = { preferenceLink ( 'user_setting_expand_spoilers' ) } >
< FormattedMessage
id = 'settings.shared_settings_link'
defaultMessage = 'user preferences'
/ >
< / a >
)
} }
/ >
< / s p a n >
< / D e p r e c a t e d L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
item = { [ 'content_warnings' , 'filter' ] }
id = 'mastodon-settings--content_warnings-auto_unfold'
onChange = { onChange }
placeholder = { intl . formatMessage ( messages . regexp ) }
disabled = { ! expandSpoilers }
>
< FormattedMessage id = 'settings.content_warnings_filter' defaultMessage = 'Content warnings to not automatically unfold:' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< / s e c t i o n >
2018-08-28 14:10:26 +02:00
< / d i v >
) ,
2017-07-20 04:54:02 +02:00
( { onChange , settings } ) => (
< div className = 'glitch local-settings__page collapsed' >
2017-06-29 07:00:54 +02:00
< h1 > < FormattedMessage id = 'settings.collapsed_statuses' defaultMessage = 'Collapsed toots' / > < / h 1 >
2017-07-20 04:54:02 +02:00
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'enabled' ] }
id = 'mastodon-settings--collapsed-enabled'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
>
< FormattedMessage id = 'settings.enable_collapsed' defaultMessage = 'Enable collapsed toots' / >
2022-07-24 11:11:38 +02:00
< span className = 'hint' > < FormattedMessage id = 'settings.enable_collapsed_hint' defaultMessage = 'Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature' / > < / s p a n >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2018-10-01 19:21:36 +02:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'collapsed' , 'show_action_bar' ] }
id = 'mastodon-settings--collapsed-show-action-bar'
onChange = { onChange }
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
>
< FormattedMessage id = 'settings.show_action_bar' defaultMessage = 'Show action buttons in collapsed toots' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2017-06-29 07:00:54 +02:00
< section >
< h2 > < FormattedMessage id = 'settings.auto_collapse' defaultMessage = 'Automatic collapsing' / > < / h 2 >
2017-07-20 04:54:02 +02:00
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'auto' , 'all' ] }
id = 'mastodon-settings--collapsed-auto-all'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_all' defaultMessage = 'Everything' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'auto' , 'notifications' ] }
id = 'mastodon-settings--collapsed-auto-notifications'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
dependsOnNot = { [ [ 'collapsed' , 'auto' , 'all' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_notifications' defaultMessage = 'Notifications' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'auto' , 'lengthy' ] }
id = 'mastodon-settings--collapsed-auto-lengthy'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
dependsOnNot = { [ [ 'collapsed' , 'auto' , 'all' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_lengthy' defaultMessage = 'Lengthy toots' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
2017-11-06 00:05:12 +01:00
settings = { settings }
item = { [ 'collapsed' , 'auto' , 'reblogs' ] }
id = 'mastodon-settings--collapsed-auto-reblogs'
onChange = { onChange }
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
dependsOnNot = { [ [ 'collapsed' , 'auto' , 'all' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_reblogs' defaultMessage = 'Boosts' / >
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
2017-07-20 04:54:02 +02:00
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'auto' , 'replies' ] }
id = 'mastodon-settings--collapsed-auto-replies'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
dependsOnNot = { [ [ 'collapsed' , 'auto' , 'all' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_replies' defaultMessage = 'Replies' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'auto' , 'media' ] }
id = 'mastodon-settings--collapsed-auto-media'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
dependsOnNot = { [ [ 'collapsed' , 'auto' , 'all' ] ] }
>
< FormattedMessage id = 'settings.auto_collapse_media' defaultMessage = 'Toots with media' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2017-06-29 07:00:54 +02:00
< / s e c t i o n >
< section >
< h2 > < FormattedMessage id = 'settings.image_backgrounds' defaultMessage = 'Image backgrounds' / > < / h 2 >
2017-07-20 04:54:02 +02:00
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'backgrounds' , 'user_backgrounds' ] }
id = 'mastodon-settings--collapsed-user-backgrouns'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
>
< FormattedMessage id = 'settings.image_backgrounds_users' defaultMessage = 'Give collapsed toots an image background' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
2017-06-29 07:00:54 +02:00
item = { [ 'collapsed' , 'backgrounds' , 'preview_images' ] }
id = 'mastodon-settings--collapsed-preview-images'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-29 07:00:54 +02:00
dependsOn = { [ [ 'collapsed' , 'enabled' ] ] }
>
< FormattedMessage id = 'settings.image_backgrounds_media' defaultMessage = 'Preview collapsed toot media' / >
2022-07-24 11:11:38 +02:00
< span className = 'hint' > < FormattedMessage id = 'settings.image_backgrounds_media_hint' defaultMessage = 'If the post has any media attachment, use the first one as a background' / > < / s p a n >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2017-06-29 07:00:54 +02:00
< / s e c t i o n >
< / d i v >
2017-07-20 04:54:02 +02:00
) ,
2020-10-26 20:45:25 +01:00
( { intl , onChange , settings } ) => (
2017-07-20 04:54:02 +02:00
< div className = 'glitch local-settings__page media' >
2017-06-30 11:15:18 +02:00
< h1 > < FormattedMessage id = 'settings.media' defaultMessage = 'Media' / > < / h 1 >
2017-07-20 04:54:02 +02:00
< LocalSettingsPageItem
settings = { settings }
2017-06-30 11:15:18 +02:00
item = { [ 'media' , 'letterbox' ] }
id = 'mastodon-settings--media-letterbox'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-06-30 11:15:18 +02:00
>
< FormattedMessage id = 'settings.media_letterbox' defaultMessage = 'Letterbox media' / >
2018-10-01 22:12:46 +02:00
< span className = 'hint' > < FormattedMessage id = 'settings.media_letterbox_hint' defaultMessage = 'Scale down and letterbox media to fill the image containers instead of stretching and cropping them' / > < / s p a n >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
< LocalSettingsPageItem
settings = { settings }
2017-07-08 11:01:56 +02:00
item = { [ 'media' , 'fullwidth' ] }
id = 'mastodon-settings--media-fullwidth'
2017-07-20 04:54:02 +02:00
onChange = { onChange }
2017-07-08 11:01:56 +02:00
>
< FormattedMessage id = 'settings.media_fullwidth' defaultMessage = 'Full-width media previews' / >
2017-07-20 04:54:02 +02:00
< / L o c a l S e t t i n g s P a g e I t e m >
2018-10-30 14:46:48 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'inline_preview_cards' ] }
id = 'mastodon-settings--inline-preview-cards'
onChange = { onChange }
>
< FormattedMessage id = 'settings.inline_preview_cards' defaultMessage = 'Inline preview cards for external links' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2019-03-10 20:34:51 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'media' , 'reveal_behind_cw' ] }
id = 'mastodon-settings--reveal-behind-cw'
onChange = { onChange }
>
< FormattedMessage id = 'settings.media_reveal_behind_cw' defaultMessage = 'Reveal sensitive media behind a CW by default' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2020-10-26 20:11:35 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'media' , 'pop_in_player' ] }
id = 'mastodon-settings--pop-in-player'
onChange = { onChange }
>
< FormattedMessage id = 'settings.pop_in_player' defaultMessage = 'Enable pop-in player' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2020-10-26 20:45:25 +01:00
< LocalSettingsPageItem
settings = { settings }
item = { [ 'media' , 'pop_in_position' ] }
id = 'mastodon-settings--pop-in-position'
options = { [
{ value : 'left' , message : intl . formatMessage ( messages . pop _in _left ) } ,
{ value : 'right' , message : intl . formatMessage ( messages . pop _in _right ) } ,
] }
onChange = { onChange }
dependsOn = { [ [ 'media' , 'pop_in_player' ] ] }
>
< FormattedMessage id = 'settings.pop_in_position' defaultMessage = 'Pop-in player position:' / >
< / L o c a l S e t t i n g s P a g e I t e m >
2017-06-30 11:15:18 +02:00
< / d i v >
2017-07-20 04:54:02 +02:00
) ,
] ;
2017-06-29 07:00:54 +02:00
render ( ) {
2017-07-20 04:54:02 +02:00
const { pages } = this ;
const { index , intl , onChange , settings } = this . props ;
const CurrentPage = pages [ index ] || pages [ 0 ] ;
2017-06-29 07:00:54 +02:00
2017-07-20 04:54:02 +02:00
return < CurrentPage intl = { intl } onChange = { onChange } settings = { settings } / > ;
2017-06-29 07:00:54 +02:00
}
}