2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2023-05-23 11:15:17 -04:00
import { PureComponent } from 'react' ;
2017-03-25 14:22:24 -04:00
import { injectIntl , defineMessages } from 'react-intl' ;
2023-05-23 11:15:17 -04:00
2017-10-01 06:20:00 -04:00
import classNames from 'classnames' ;
2023-05-23 11:15:17 -04:00
import Overlay from 'react-overlays/Overlay' ;
2024-01-16 05:27:26 -05:00
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react' ;
import LockIcon from '@/material-icons/400-24px/lock.svg?react' ;
import PublicIcon from '@/material-icons/400-24px/public.svg?react' ;
2024-01-25 10:41:31 -05:00
import QuietTimeIcon from '@/material-icons/400-24px/quiet_time.svg?react' ;
2023-05-08 21:11:56 -04:00
import { Icon } from 'mastodon/components/icon' ;
2017-03-24 19:01:43 -04:00
2024-02-27 06:41:19 -05:00
import { PrivacyDropdownMenu } from './privacy_dropdown_menu' ;
2017-03-25 14:22:24 -04:00
const messages = defineMessages ( {
public _short : { id : 'privacy.public.short' , defaultMessage : 'Public' } ,
2024-01-25 10:41:31 -05:00
public _long : { id : 'privacy.public.long' , defaultMessage : 'Anyone on and off Mastodon' } ,
unlisted _short : { id : 'privacy.unlisted.short' , defaultMessage : 'Quiet public' } ,
unlisted _long : { id : 'privacy.unlisted.long' , defaultMessage : 'Fewer algorithmic fanfares' } ,
private _short : { id : 'privacy.private.short' , defaultMessage : 'Followers' } ,
private _long : { id : 'privacy.private.long' , defaultMessage : 'Only your followers' } ,
direct _short : { id : 'privacy.direct.short' , defaultMessage : 'Specific people' } ,
direct _long : { id : 'privacy.direct.long' , defaultMessage : 'Everyone mentioned in the post' } ,
change _privacy : { id : 'privacy.change' , defaultMessage : 'Change post privacy' } ,
unlisted _extra : { id : 'privacy.unlisted.additional' , defaultMessage : 'This behaves exactly like public, except the post will not appear in live feeds or hashtags, explore, or Mastodon search, even if you are opted-in account-wide.' } ,
2017-03-25 14:22:24 -04:00
} ) ;
2023-05-23 04:52:27 -04:00
class PrivacyDropdown extends PureComponent {
2017-03-24 19:01:43 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
2017-07-27 16:31:59 -04:00
isUserTouching : PropTypes . func ,
onModalOpen : PropTypes . func ,
onModalClose : PropTypes . func ,
2017-05-12 08:44:10 -04:00
value : PropTypes . string . isRequired ,
onChange : PropTypes . func . isRequired ,
2021-02-11 00:22:11 -05:00
noDirect : PropTypes . bool ,
2021-02-10 18:53:12 -05:00
container : PropTypes . func ,
2022-02-12 13:00:33 -05:00
disabled : PropTypes . bool ,
2017-05-20 11:31:47 -04:00
intl : PropTypes . object . isRequired ,
2017-05-12 08:44:10 -04:00
} ;
state = {
2017-05-20 11:31:47 -04:00
open : false ,
2018-10-18 18:00:19 -04:00
placement : 'bottom' ,
2017-05-12 08:44:10 -04:00
} ;
2017-03-24 19:01:43 -04:00
2023-01-11 15:58:46 -05:00
handleToggle = ( ) => {
2024-01-25 10:41:31 -05:00
if ( this . state . open && this . activeElement ) {
this . activeElement . focus ( { preventScroll : true } ) ;
2017-07-27 16:31:59 -04:00
}
2024-01-25 10:41:31 -05:00
this . setState ( { open : ! this . state . open } ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-03-24 19:01:43 -04:00
2017-10-01 06:20:00 -04:00
handleKeyDown = e => {
switch ( e . key ) {
case 'Escape' :
this . handleClose ( ) ;
break ;
2017-07-27 22:37:30 -04:00
}
2023-01-29 19:45:35 -05:00
} ;
2017-03-24 19:01:43 -04:00
2019-08-06 05:59:58 -04:00
handleMouseDown = ( ) => {
if ( ! this . state . open ) {
this . activeElement = document . activeElement ;
}
2023-01-29 19:45:35 -05:00
} ;
2019-08-06 05:59:58 -04:00
handleButtonKeyDown = ( e ) => {
switch ( e . key ) {
case ' ' :
case 'Enter' :
this . handleMouseDown ( ) ;
break ;
}
2023-01-29 19:45:35 -05:00
} ;
2019-08-06 05:59:58 -04:00
2017-10-01 06:20:00 -04:00
handleClose = ( ) => {
2019-08-06 05:59:58 -04:00
if ( this . state . open && this . activeElement ) {
2020-08-21 08:14:28 -04:00
this . activeElement . focus ( { preventScroll : true } ) ;
2019-08-06 05:59:58 -04:00
}
2017-10-01 06:20:00 -04:00
this . setState ( { open : false } ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-10-01 06:20:00 -04:00
handleChange = value => {
this . props . onChange ( value ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-03-24 19:01:43 -04:00
2023-05-10 03:05:32 -04:00
UNSAFE _componentWillMount ( ) {
2017-07-27 16:31:59 -04:00
const { intl : { formatMessage } } = this . props ;
this . options = [
2023-10-24 13:45:08 -04:00
{ icon : 'globe' , iconComponent : PublicIcon , value : 'public' , text : formatMessage ( messages . public _short ) , meta : formatMessage ( messages . public _long ) } ,
2024-01-25 10:41:31 -05:00
{ icon : 'unlock' , iconComponent : QuietTimeIcon , value : 'unlisted' , text : formatMessage ( messages . unlisted _short ) , meta : formatMessage ( messages . unlisted _long ) , extra : formatMessage ( messages . unlisted _extra ) } ,
2023-10-24 13:45:08 -04:00
{ icon : 'lock' , iconComponent : LockIcon , value : 'private' , text : formatMessage ( messages . private _short ) , meta : formatMessage ( messages . private _long ) } ,
2017-07-27 16:31:59 -04:00
] ;
2021-02-10 18:53:12 -05:00
if ( ! this . props . noDirect ) {
this . options . push (
2023-10-24 13:45:08 -04:00
{ icon : 'at' , iconComponent : AlternateEmailIcon , value : 'direct' , text : formatMessage ( messages . direct _short ) , meta : formatMessage ( messages . direct _long ) } ,
2021-02-10 18:53:12 -05:00
) ;
}
2017-07-27 16:31:59 -04:00
}
2023-01-11 15:58:46 -05:00
setTargetRef = c => {
this . target = c ;
2023-01-29 19:45:35 -05:00
} ;
2023-01-11 15:58:46 -05:00
findTarget = ( ) => {
return this . target ;
2023-01-29 19:45:35 -05:00
} ;
2023-01-11 15:58:46 -05:00
handleOverlayEnter = ( state ) => {
this . setState ( { placement : state . placement } ) ;
2023-01-29 19:45:35 -05:00
} ;
2023-01-11 15:58:46 -05:00
2017-03-24 19:01:43 -04:00
render ( ) {
2022-02-12 13:00:33 -05:00
const { value , container , disabled , intl } = this . props ;
2018-04-11 14:42:50 -04:00
const { open , placement } = this . state ;
2017-03-24 19:01:43 -04:00
2017-07-27 16:31:59 -04:00
const valueOption = this . options . find ( item => item . value === value ) ;
2017-03-24 19:01:43 -04:00
return (
2023-10-24 13:45:08 -04:00
< div ref = { this . setTargetRef } onKeyDown = { this . handleKeyDown } >
2024-01-25 10:41:31 -05:00
< button
type = 'button'
2023-10-24 13:45:08 -04:00
title = { intl . formatMessage ( messages . change _privacy ) }
2024-01-25 10:41:31 -05:00
aria - expanded = { open }
2023-10-24 13:45:08 -04:00
onClick = { this . handleToggle }
onMouseDown = { this . handleMouseDown }
onKeyDown = { this . handleButtonKeyDown }
disabled = { disabled }
2024-01-25 10:41:31 -05:00
className = { classNames ( 'dropdown-button' , { active : open } ) }
>
< Icon id = { valueOption . icon } icon = { valueOption . iconComponent } / >
< span className = 'dropdown-button__label' > { valueOption . text } < / span >
< / button >
2023-10-24 13:45:08 -04:00
2024-01-25 10:41:31 -05:00
< Overlay show = { open } offset = { [ 5 , 5 ] } placement = { placement } flip target = { this . findTarget } container = { container } popperConfig = { { strategy : 'fixed' , onFirstUpdate : this . handleOverlayEnter } } >
2023-01-11 15:58:46 -05:00
{ ( { props , placement } ) => (
2023-01-12 10:43:02 -05:00
< div { ...props } >
2023-01-11 15:58:46 -05:00
< div className = { ` dropdown-animation privacy-dropdown__dropdown ${ placement } ` } >
< PrivacyDropdownMenu
items = { this . options }
value = { value }
onClose = { this . handleClose }
onChange = { this . handleChange }
/ >
< / div >
< / div >
) }
2017-10-01 06:20:00 -04:00
< / Overlay >
2017-03-24 19:01:43 -04:00
< / div >
) ;
}
2017-04-21 14:05:35 -04:00
}
2023-03-23 22:17:53 -04:00
export default injectIntl ( PrivacyDropdown ) ;