Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { recordTracksEvent } from '@automattic/calypso-analytics';
import { Button, FormLabel } from '@automattic/components';
import { NextButton } from '@automattic/onboarding';
import { createElement, createInterpolateElement } from '@wordpress/element';
import { Icon, info } from '@wordpress/icons';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import React, { ChangeEvent, FormEvent, useState, useEffect, useRef } from 'react';
import { useLocation } from 'react-router-dom';
import { CAPTURE_URL_RGX } from 'calypso/blocks/import/util';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation';
import FormTextInput from 'calypso/components/forms/form-text-input';
import getValidationMessage from './url-validation-message-helper';
import type { OnInputChange, OnInputEnter } from './types';
import type { FunctionComponent, ReactNode } from 'react';
interface Props {
dontHaveSiteAddressLabel?: string;
hasError?: boolean;
hideImporterListLink?: boolean;
label?: ReactNode;
nextLabelText?: string;
onDontHaveSiteAddressClick?: () => void;
onInputChange?: OnInputChange;
onInputEnter: OnInputEnter;
placeholder?: string;
skipInitialChecking?: boolean;
}
const CaptureInput: FunctionComponent< Props > = ( props ) => {
const {
onInputEnter,
onInputChange,
onDontHaveSiteAddressClick,
hasError,
skipInitialChecking,
label,
placeholder = 'artfulbaker.blog',
dontHaveSiteAddressLabel,
hideImporterListLink = false,
nextLabelText,
} = props;
const translate = useTranslate();
const [ urlValue, setUrlValue ] = useState( '' );
const [ isValid, setIsValid ] = useState( false );
const [ submitted, setSubmitted ] = useState( false );
const [ validationMessage, setValidationMessage ] = useState( '' );
const lastInvalidValue = useRef< string | undefined >();
const showValidationMsg = hasError || ( submitted && ! isValid );
const { search } = useLocation();
useEffect( () => checkInitSubmissionState(), [] );
function checkInitSubmissionState() {
const urlValue = new URLSearchParams( search ).get( 'from' ) || '';
if ( skipInitialChecking ) {
setUrlValue( urlValue );
validateUrl( urlValue );
return;
}
if ( urlValue ) {
const isValid = CAPTURE_URL_RGX.test( urlValue );
if ( isValid && ! hasError ) {
onInputEnter( urlValue );
setSubmitted( true );
} else {
setUrlValue( urlValue );
}
}
}
function validateUrl( url: string ) {
const isValid = CAPTURE_URL_RGX.test( url );
setIsValid( isValid );
const tempValidationMessage = isValid ? '' : getValidationMessage( url, translate );
setValidationMessage( tempValidationMessage );
}
function onChange( e: ChangeEvent< HTMLInputElement > ) {
const trimmedValue = e.target.value.trim();
setSubmitted( false );
setUrlValue( trimmedValue );
validateUrl( trimmedValue );
onInputChange?.( trimmedValue );
}
function onFormSubmit( e: FormEvent< HTMLFormElement > ) {
e.preventDefault();
isValid && onInputEnter( urlValue );
setSubmitted( true );
if ( ! isValid && urlValue?.length > 4 && urlValue !== lastInvalidValue.current ) {
lastInvalidValue.current = urlValue;
recordTracksEvent( 'calypso_importer_capture_input_invalid', {
url: urlValue,
} );
}
}
return (
<form className="import__capture" onSubmit={ onFormSubmit }>
<FormFieldset>
<FormLabel htmlFor="capture-site-url">
{ label ?? translate( 'Enter the URL of the site:' ) }
</FormLabel>
<FormTextInput
id="capture-site-url"
type="text"
className={ clsx( { 'is-error': showValidationMsg } ) }
// eslint-disable-next-line jsx-a11y/no-autofocus
autoFocus
autoComplete="off"
autoCorrect="off"
spellCheck="false"
value={ urlValue }
placeholder={ placeholder }
onChange={ onChange }
/>
<FormSettingExplanation>
<span className={ clsx( { 'is-error': showValidationMsg } ) }>
{ showValidationMsg && (
<>
<Icon icon={ info } size={ 20 } />{ ' ' }
{ validationMessage
? validationMessage
: translate( 'Please enter a valid website address. You can copy and paste.' ) }
</>
) }
</span>
</FormSettingExplanation>
</FormFieldset>
<NextButton type="submit">{ nextLabelText ?? translate( 'Continue' ) }</NextButton>
<div className="action-buttons__importer-list">
{ ! hideImporterListLink &&
onDontHaveSiteAddressClick &&
createInterpolateElement(
dontHaveSiteAddressLabel ??
translate( 'Or <button>choose a content platform</button>' ),
{
button: createElement( Button, {
borderless: true,
onClick: onDontHaveSiteAddressClick,
} ),
}
) }
</div>
</form>
);
};
export default CaptureInput;