react-code-dataset / wp-calypso /client /my-sites /comments /comment /comment-html-editor /add-link-dialog.jsx
| import { Dialog, FormLabel } from '@automattic/components'; | |
| import { localize } from 'i18n-calypso'; | |
| import PropTypes from 'prop-types'; | |
| import { Component } from 'react'; | |
| import FormCheckbox from 'calypso/components/forms/form-checkbox'; | |
| import FormFieldset from 'calypso/components/forms/form-fieldset'; | |
| import FormTextInput from 'calypso/components/forms/form-text-input'; | |
| const REGEXP_EMAIL = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i; | |
| const REGEXP_URL = /^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,4}[^ "]*$/i; | |
| const REGEXP_STANDALONE_URL = /^(?:[a-z]+:|#|\?|\.|\/)/; | |
| function inferUrl( selectedText ) { | |
| if ( REGEXP_EMAIL.test( selectedText ) ) { | |
| return 'mailto:' + selectedText; | |
| } else if ( REGEXP_URL.test( selectedText ) ) { | |
| return selectedText.replace( /&|�?38;/gi, '&' ); | |
| } | |
| return ''; | |
| } | |
| export class AddLinkDialog extends Component { | |
| static propTypes = { | |
| onClose: PropTypes.func, | |
| onInsert: PropTypes.func, | |
| selectedText: PropTypes.string, | |
| shouldDisplay: PropTypes.bool, | |
| translate: PropTypes.func, | |
| }; | |
| state = { | |
| linkNewTab: false, | |
| linkUrl: inferUrl( this.props.selectedText ), | |
| linkText: this.props.selectedText, | |
| }; | |
| correctUrl() { | |
| const url = this.state.linkUrl.trim(); | |
| if ( REGEXP_EMAIL.test( url ) ) { | |
| return `mailto:${ url }`; | |
| } | |
| if ( ! REGEXP_STANDALONE_URL.test( url ) ) { | |
| return `http://${ url }`; | |
| } | |
| return url; | |
| } | |
| setLinkUrl = ( event ) => this.setState( { linkUrl: event.target.value } ); | |
| setLinkText = ( event ) => this.setState( { linkText: event.target.value } ); | |
| setLinkNewTab = ( event ) => this.setState( { linkNewTab: event.target.checked } ); | |
| closeDialog = () => | |
| this.setState( | |
| { | |
| linkNewTab: false, | |
| linkText: '', | |
| linkUrl: '', | |
| }, | |
| this.props.onClose | |
| ); | |
| insertATag = () => { | |
| const { linkNewTab, linkText } = this.state; | |
| this.props.onInsert( | |
| { | |
| href: this.correctUrl(), | |
| ...( linkNewTab ? { target: '_blank' } : {} ), | |
| }, | |
| linkText | |
| ); | |
| this.closeDialog(); | |
| }; | |
| render() { | |
| const { shouldDisplay, translate } = this.props; | |
| const { linkNewTab, linkText, linkUrl } = this.state; | |
| const buttons = [ | |
| { | |
| action: 'cancel', | |
| label: translate( 'Cancel' ), | |
| }, | |
| { | |
| action: 'add-link', | |
| isPrimary: true, | |
| label: translate( 'Add Link' ), | |
| onClick: this.insertATag, | |
| }, | |
| ]; | |
| return ( | |
| <Dialog | |
| isVisible={ shouldDisplay } | |
| buttons={ buttons } | |
| onClose={ this.closeDialog } | |
| additionalClassNames="comment-html-editor__dialog" | |
| > | |
| <FormFieldset> | |
| <FormLabel htmlFor="link_url">{ translate( 'URL' ) }</FormLabel> | |
| <FormTextInput name="link_url" onChange={ this.setLinkUrl } value={ linkUrl } /> | |
| </FormFieldset> | |
| <FormFieldset> | |
| <FormLabel htmlFor="link_text">{ translate( 'Link Text' ) }</FormLabel> | |
| <FormTextInput name="link_text" onChange={ this.setLinkText } value={ linkText } /> | |
| </FormFieldset> | |
| <FormFieldset> | |
| <FormLabel> | |
| <FormCheckbox | |
| checked={ linkNewTab } | |
| name="link_new_tab" | |
| onChange={ this.setLinkNewTab } | |
| /> | |
| <span>{ translate( 'Open link in a new window/tab' ) }</span> | |
| </FormLabel> | |
| </FormFieldset> | |
| </Dialog> | |
| ); | |
| } | |
| } | |
| export default localize( AddLinkDialog ); | |