| import { Button, Card, ExternalLink } from '@automattic/components'; |
| import { localizeUrl } from '@automattic/i18n-utils'; |
| import { useTranslate } from 'i18n-calypso'; |
| import { useEffect } from 'react'; |
| import { connect } from 'react-redux'; |
| import { acceptTos, requestLegalData } from 'calypso/state/legal/actions'; |
| import { shouldDisplayTosUpdateBanner } from 'calypso/state/selectors/should-display-tos-update-banner'; |
|
|
| import './style.scss'; |
|
|
| const LegalUpdateBanner = ( props ) => { |
| const translate = useTranslate(); |
|
|
| useEffect( () => { |
| props.requestLegalData(); |
| }, [] ); |
|
|
| if ( props.needsAcceptTos ) { |
| return ( |
| <Card className="legal-updates-banner"> |
| <div className="legal-updates-banner__content"> |
| { translate( |
| "We've updated our {{a}}Terms of Service{{/a}}. Please take a few moments to read them. By accepting, " + |
| 'you agree to the new Terms of Service.', |
| { |
| components: { |
| a: ( |
| <ExternalLink |
| icon |
| target="_blank" |
| href={ localizeUrl( 'https://wordpress.com/tos/' ) } |
| /> |
| ), |
| }, |
| } |
| ) } |
| </div> |
| <div className="legal-updates-banner__actions"> |
| <Button |
| primary |
| className="legal-updates-banner__accept" |
| onClick={ () => props.acceptTos() } |
| > |
| { translate( 'Accept' ) } |
| </Button> |
| </div> |
| </Card> |
| ); |
| } |
|
|
| return null; |
| }; |
|
|
| export default connect( |
| ( state ) => ( { |
| needsAcceptTos: shouldDisplayTosUpdateBanner( state ), |
| } ), |
| { |
| acceptTos, |
| requestLegalData, |
| } |
| )( LegalUpdateBanner ); |
|
|