2022-10-07 08:14:31 +00:00
import PropTypes from 'prop-types' ;
2023-07-27 14:11:17 +00:00
import React from 'react' ;
2023-05-28 14:38:10 +00:00
2023-07-27 14:11:17 +00:00
import { FormattedMessage , defineMessages , injectIntl } from 'react-intl' ;
2023-05-28 14:38:10 +00:00
2022-10-07 08:14:31 +00:00
import classNames from 'classnames' ;
2023-05-28 14:38:10 +00:00
import { connect } from 'react-redux' ;
2023-07-27 14:11:17 +00:00
import { throttle , escapeRegExp } from 'lodash' ;
2022-10-26 17:35:55 +00:00
import { openModal , closeModal } from 'flavours/glitch/actions/modal' ;
2023-07-27 14:11:17 +00:00
import api from 'flavours/glitch/api' ;
import Button from 'flavours/glitch/components/button' ;
2023-05-28 14:38:10 +00:00
import { Icon } from 'flavours/glitch/components/icon' ;
import { registrationsOpen } from 'flavours/glitch/initial_state' ;
2022-10-07 08:14:31 +00:00
2023-07-27 14:11:17 +00:00
const messages = defineMessages ( {
loginPrompt : { id : 'interaction_modal.login.prompt' , defaultMessage : 'Domain of your home server, e.g. mastodon.social' } ,
} ) ;
2022-10-07 08:14:31 +00:00
const mapStateToProps = ( state , { accountId } ) => ( {
displayNameHtml : state . getIn ( [ 'accounts' , accountId , 'display_name_html' ] ) ,
} ) ;
2022-10-26 17:35:55 +00:00
const mapDispatchToProps = ( dispatch ) => ( {
onSignupClick ( ) {
2023-07-27 14:11:17 +00:00
dispatch ( closeModal ( ) ) ;
dispatch ( openModal ( 'CLOSED_REGISTRATIONS' ) ) ;
2022-10-26 17:35:55 +00:00
} ,
} ) ;
2023-07-27 14:11:17 +00:00
const PERSISTENCE _KEY = 'flavours/glitch_home' ;
const isValidDomain = value => {
const url = new URL ( 'https:///path' ) ;
url . hostname = value ;
return url . hostname === value ;
} ;
const valueToDomain = value => {
// If the user starts typing an URL
if ( /^https?:\/\// . test ( value ) ) {
try {
const url = new URL ( value ) ;
// Consider that if there is a path, the URL is more meaningful than a bare domain
if ( url . pathname . length > 1 ) {
return '' ;
}
return url . host ;
} catch {
return undefined ;
}
// If the user writes their full handle including username
} else if ( value . includes ( '@' ) ) {
if ( value . replace ( /^@/ , '' ) . split ( '@' ) . length > 2 ) {
return undefined ;
}
return '' ;
}
return value ;
} ;
const addInputToOptions = ( value , options ) => {
value = value . trim ( ) ;
if ( value . includes ( '.' ) && isValidDomain ( value ) ) {
return [ value ] . concat ( options . filter ( ( x ) => x !== value ) ) ;
}
return options ;
} ;
class LoginForm extends React . PureComponent {
2022-10-07 08:14:31 +00:00
static propTypes = {
2023-07-27 14:11:17 +00:00
resourceUrl : PropTypes . string ,
intl : PropTypes . object . isRequired ,
2022-10-07 08:14:31 +00:00
} ;
state = {
2023-07-27 14:11:17 +00:00
value : localStorage ? ( localStorage . getItem ( PERSISTENCE _KEY ) || '' ) : '' ,
expanded : false ,
selectedOption : - 1 ,
isLoading : false ,
isSubmitting : false ,
error : false ,
options : [ ] ,
networkOptions : [ ] ,
2022-10-07 08:14:31 +00:00
} ;
setRef = c => {
this . input = c ;
2023-02-03 19:52:07 +00:00
} ;
2022-10-07 08:14:31 +00:00
2023-07-27 14:11:17 +00:00
handleChange = ( { target } ) => {
this . setState ( state => ( { value : target . value , isLoading : true , error : false , options : addInputToOptions ( target . value , state . networkOptions ) } ) , ( ) => this . _loadOptions ( ) ) ;
2023-02-03 19:52:07 +00:00
} ;
2022-10-07 08:14:31 +00:00
2023-07-27 14:11:17 +00:00
handleMessage = ( event ) => {
const { resourceUrl } = this . props ;
if ( event . origin !== window . origin || event . source !== this . iframeRef . contentWindow ) {
return ;
}
if ( event . data ? . type === 'fetchInteractionURL-failure' ) {
this . setState ( { isSubmitting : false , error : true } ) ;
} else if ( event . data ? . type === 'fetchInteractionURL-success' ) {
if ( /^https?:\/\// . test ( event . data . template ) ) {
if ( localStorage ) {
localStorage . setItem ( PERSISTENCE _KEY , event . data . uri _or _domain ) ;
}
window . location . href = event . data . template . replace ( '{uri}' , encodeURIComponent ( resourceUrl ) ) ;
} else {
this . setState ( { isSubmitting : false , error : true } ) ;
}
}
2023-02-03 19:52:07 +00:00
} ;
2022-10-07 08:14:31 +00:00
2023-07-27 14:11:17 +00:00
componentDidMount ( ) {
window . addEventListener ( 'message' , this . handleMessage ) ;
}
2022-10-07 08:14:31 +00:00
componentWillUnmount ( ) {
2023-07-27 14:11:17 +00:00
window . removeEventListener ( 'message' , this . handleMessage ) ;
2022-10-07 08:14:31 +00:00
}
2023-07-27 14:11:17 +00:00
handleSubmit = ( ) => {
const { value } = this . state ;
this . setState ( { isSubmitting : true } ) ;
this . iframeRef . contentWindow . postMessage ( {
type : 'fetchInteractionURL' ,
uri _or _domain : value . trim ( ) ,
} , window . origin ) ;
} ;
setIFrameRef = ( iframe ) => {
this . iframeRef = iframe ;
}
handleFocus = ( ) => {
this . setState ( { expanded : true } ) ;
} ;
handleBlur = ( ) => {
this . setState ( { expanded : false } ) ;
} ;
handleKeyDown = ( e ) => {
const { options , selectedOption } = this . state ;
switch ( e . key ) {
case 'ArrowDown' :
e . preventDefault ( ) ;
if ( options . length > 0 ) {
this . setState ( { selectedOption : Math . min ( selectedOption + 1 , options . length - 1 ) } ) ;
}
break ;
case 'ArrowUp' :
e . preventDefault ( ) ;
if ( options . length > 0 ) {
this . setState ( { selectedOption : Math . max ( selectedOption - 1 , - 1 ) } ) ;
}
break ;
case 'Enter' :
e . preventDefault ( ) ;
if ( selectedOption === - 1 ) {
this . handleSubmit ( ) ;
} else if ( options . length > 0 ) {
this . setState ( { value : options [ selectedOption ] , error : false } , ( ) => this . handleSubmit ( ) ) ;
}
break ;
}
} ;
handleOptionClick = e => {
const index = Number ( e . currentTarget . getAttribute ( 'data-index' ) ) ;
const option = this . state . options [ index ] ;
e . preventDefault ( ) ;
this . setState ( { selectedOption : index , value : option , error : false } , ( ) => this . handleSubmit ( ) ) ;
} ;
_loadOptions = throttle ( ( ) => {
const { value } = this . state ;
const domain = valueToDomain ( value . trim ( ) ) ;
if ( typeof domain === 'undefined' ) {
this . setState ( { options : [ ] , networkOptions : [ ] , isLoading : false , error : true } ) ;
return ;
}
if ( domain . length === 0 ) {
this . setState ( { options : [ ] , networkOptions : [ ] , isLoading : false } ) ;
return ;
}
api ( ) . get ( '/api/v1/peers/search' , { params : { q : domain } } ) . then ( ( { data } ) => {
if ( ! data ) {
data = [ ] ;
}
this . setState ( ( state ) => ( { networkOptions : data , options : addInputToOptions ( state . value , data ) , isLoading : false } ) ) ;
} ) . catch ( ( ) => {
this . setState ( { isLoading : false } ) ;
} ) ;
} , 200 , { leading : true , trailing : true } ) ;
2022-10-07 08:14:31 +00:00
render ( ) {
2023-07-27 14:11:17 +00:00
const { intl } = this . props ;
const { value , expanded , options , selectedOption , error , isSubmitting } = this . state ;
const domain = ( valueToDomain ( value ) || '' ) . trim ( ) ;
const domainRegExp = new RegExp ( ` ( ${ escapeRegExp ( domain ) } ) ` , 'gi' ) ;
const hasPopOut = domain . length > 0 && options . length > 0 ;
2022-10-07 08:14:31 +00:00
return (
2023-07-27 14:11:17 +00:00
< div className = { classNames ( 'interaction-modal__login' , { focused : expanded , expanded : hasPopOut , invalid : error } ) } >
< iframe
ref = { this . setIFrameRef }
style = { { display : 'none' } }
src = '/remote_interaction_helper'
sandbox = 'allow-scripts allow-same-origin'
title = 'remote interaction helper'
2022-10-07 08:14:31 +00:00
/ >
2023-07-27 14:11:17 +00:00
< div className = 'interaction-modal__login__input' >
< input
ref = { this . setRef }
type = 'text'
value = { value }
placeholder = { intl . formatMessage ( messages . loginPrompt ) }
aria - label = { intl . formatMessage ( messages . loginPrompt ) }
autoFocus
onChange = { this . handleChange }
onFocus = { this . handleFocus }
onBlur = { this . handleBlur }
onKeyDown = { this . handleKeyDown }
2023-08-01 15:11:30 +00:00
autocomplete = 'off'
autocapitalize = 'off'
spellcheck = 'false'
2023-07-27 14:11:17 +00:00
/ >
< Button onClick = { this . handleSubmit } disabled = { isSubmitting } > < FormattedMessage id = 'interaction_modal.login.action' defaultMessage = 'Take me home' / > < / Button >
< / div >
{ hasPopOut && (
< div className = 'search__popout' >
< div className = 'search__popout__menu' >
{ options . map ( ( option , i ) => (
< button key = { option } onMouseDown = { this . handleOptionClick } data - index = { i } className = { classNames ( 'search__popout__menu__item' , { selected : selectedOption === i } ) } >
{ option . split ( domainRegExp ) . map ( ( part , i ) => (
part . toLowerCase ( ) === domain . toLowerCase ( ) ? (
< mark key = { i } >
{ part }
< / mark >
) : (
< span key = { i } >
{ part }
< / span >
)
) ) }
< / button >
) ) }
< / div >
< / div >
) }
2022-10-07 08:14:31 +00:00
< / div >
) ;
}
}
2023-07-27 14:11:17 +00:00
const IntlLoginForm = injectIntl ( LoginForm ) ;
class InteractionModal extends React . PureComponent {
2022-10-07 08:14:31 +00:00
static propTypes = {
displayNameHtml : PropTypes . string ,
url : PropTypes . string ,
type : PropTypes . oneOf ( [ 'reply' , 'reblog' , 'favourite' , 'follow' ] ) ,
2022-10-26 17:35:55 +00:00
onSignupClick : PropTypes . func . isRequired ,
2022-10-07 08:14:31 +00:00
} ;
2022-10-26 17:35:55 +00:00
handleSignupClick = ( ) => {
this . props . onSignupClick ( ) ;
2023-02-03 19:52:07 +00:00
} ;
2022-10-26 17:35:55 +00:00
2022-10-07 08:14:31 +00:00
render ( ) {
2023-07-27 14:11:17 +00:00
const { url , type , displayNameHtml } = this . props ;
2022-10-07 08:14:31 +00:00
const name = < bdi dangerouslySetInnerHTML = { { _ _html : displayNameHtml } } / > ;
let title , actionDescription , icon ;
switch ( type ) {
case 'reply' :
icon = < Icon id = 'reply' / > ;
title = < FormattedMessage id = 'interaction_modal.title.reply' defaultMessage = "Reply to {name}'s post" values = { { name } } / > ;
actionDescription = < FormattedMessage id = 'interaction_modal.description.reply' defaultMessage = 'With an account on Mastodon, you can respond to this post.' / > ;
break ;
case 'reblog' :
icon = < Icon id = 'retweet' / > ;
title = < FormattedMessage id = 'interaction_modal.title.reblog' defaultMessage = "Boost {name}'s post" values = { { name } } / > ;
actionDescription = < FormattedMessage id = 'interaction_modal.description.reblog' defaultMessage = 'With an account on Mastodon, you can boost this post to share it with your own followers.' / > ;
break ;
case 'favourite' :
icon = < Icon id = 'star' / > ;
2023-07-21 17:09:13 +00:00
title = < FormattedMessage id = 'interaction_modal.title.favourite' defaultMessage = "Favorite {name}'s post" values = { { name } } / > ;
actionDescription = < FormattedMessage id = 'interaction_modal.description.favourite' defaultMessage = 'With an account on Mastodon, you can favorite this post to let the author know you appreciate it and save it for later.' / > ;
2022-10-07 08:14:31 +00:00
break ;
case 'follow' :
icon = < Icon id = 'user-plus' / > ;
title = < FormattedMessage id = 'interaction_modal.title.follow' defaultMessage = 'Follow {name}' values = { { name } } / > ;
actionDescription = < FormattedMessage id = 'interaction_modal.description.follow' defaultMessage = 'With an account on Mastodon, you can follow {name} to receive their posts in your home feed.' values = { { name } } / > ;
break ;
}
2022-10-26 17:35:55 +00:00
let signupButton ;
if ( registrationsOpen ) {
signupButton = (
2023-07-27 14:11:17 +00:00
< a href = '/auth/sign_up' className = 'link-button' >
2022-10-26 17:35:55 +00:00
< FormattedMessage id = 'sign_in_banner.create_account' defaultMessage = 'Create account' / >
< / a >
) ;
} else {
signupButton = (
2023-07-27 14:11:17 +00:00
< button className = 'link-button' onClick = { this . handleSignupClick } >
2022-10-26 17:35:55 +00:00
< FormattedMessage id = 'sign_in_banner.create_account' defaultMessage = 'Create account' / >
< / button >
) ;
}
2022-10-07 08:14:31 +00:00
return (
< div className = 'modal-root__modal interaction-modal' >
< div className = 'interaction-modal__lead' >
< h3 > < span className = 'interaction-modal__icon' > { icon } < / span > { title } < / h3 >
2023-07-27 14:11:17 +00:00
< p > { actionDescription } < strong > < FormattedMessage id = 'interaction_modal.sign_in' defaultMessage = 'You are not logged in to this server. Where is your account hosted?' / > < / strong > < / p >
2022-10-07 08:14:31 +00:00
< / div >
2023-07-27 14:11:17 +00:00
< IntlLoginForm resourceUrl = { url } / >
2022-10-07 08:14:31 +00:00
2023-07-27 14:11:17 +00:00
< p className = 'hint' > < FormattedMessage id = 'interaction_modal.sign_in_hint' defaultMessage = "Tip: That's the website where you signed up. If you don't remember, look for the welcome e-mail in your inbox. You can also enter your full username! (e.g. @Mastodon@mastodon.social)" / > < / p >
< p > < FormattedMessage id = 'interaction_modal.no_account_yet' defaultMessage = 'Not on Mastodon?' / > { signupButton } < / p >
2022-10-07 08:14:31 +00:00
< / div >
) ;
}
}
2023-03-24 22:15:25 +00:00
export default connect ( mapStateToProps , mapDispatchToProps ) ( InteractionModal ) ;