import { FormLabel } from '@automattic/components';
import { Icon, check } from '@wordpress/icons';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import React, { useEffect, useRef, useState } from 'react';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormTextInput from 'calypso/components/forms/form-text-input';
import StatsButton from '../components/stats-button';
import './style.scss';
type InputFieldProps = {
id: string;
label: string;
name: string;
placeholder: string;
value: string;
onChange: ( e: React.ChangeEvent< HTMLInputElement > ) => void;
labelReference?: React.RefObject< HTMLLabelElement >;
ariaDescribedBy?: string;
};
export type UtmBuilderProps = {
initialData?: {
url?: string;
utm_source?: string;
utm_medium?: string;
utm_campaign?: string;
};
};
const utmKeys = [ 'url', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term' ];
type UtmKeyType = ( typeof utmKeys )[ number ];
type inputValuesType = Record< UtmKeyType, string >;
type formLabelsType = Record<
UtmKeyType,
{ label: string; placeholder: string; describedBy?: string }
>;
const useConfirmationMessage = ( visibleDuration = 2000, fadeOutDuration = 500 ) => {
const [ showConfirmation, setShowConfirmation ] = useState( false );
const [ fadeOut, setFadeOut ] = useState( false );
const timeoutRef = useRef< NodeJS.Timeout | null >( null );
useEffect( () => {
return () => {
if ( timeoutRef.current ) {
clearTimeout( timeoutRef.current );
}
};
}, [] );
const triggerConfirmation = () => {
if ( timeoutRef.current ) {
clearTimeout( timeoutRef.current );
}
setFadeOut( false );
setShowConfirmation( true );
timeoutRef.current = setTimeout( () => {
setFadeOut( true );
timeoutRef.current = setTimeout( () => {
setShowConfirmation( false );
}, fadeOutDuration );
}, visibleDuration );
};
return { showConfirmation, fadeOut, triggerConfirmation };
};
const CopyConfirmation = ( { show, fadeOut }: { show: boolean; fadeOut: boolean } ) => {
const translate = useTranslate();
return (
show && (
{ translate( 'Copied' ) }
)
);
};
const InputField: React.FC< InputFieldProps > = ( {
id,
label,
name,
placeholder,
value,
onChange,
labelReference,
ariaDescribedBy,
} ) => {
return (
{ label }
);
};
const UtmBuilder: React.FC< UtmBuilderProps > = ( { initialData } ) => {
const translate = useTranslate();
const [ url, setUrl ] = useState( initialData?.url || '' );
const [ inputValues, setInputValues ] = useState< inputValuesType >( {
utm_campaign: initialData?.utm_campaign || '',
utm_source: initialData?.utm_source || '',
utm_medium: initialData?.utm_medium || '',
} );
// Focus the initial input field when rendered.
const initialFieldReference = useRef< HTMLLabelElement >( null );
const { showConfirmation, fadeOut, triggerConfirmation } = useConfirmationMessage();
useEffect( () => {
setTimeout( () => {
initialFieldReference.current!.focus();
}, 100 );
}, [] );
const fromLabels: formLabelsType = {
url: {
label: translate( 'Destination URL' ),
placeholder: '',
describedBy: 'stats-utm-builder-help-section-url',
},
utm_campaign: {
label: translate( 'UTM Campaign' ),
placeholder: translate( 'e.g. promotion' ),
describedBy: 'stats-utm-builder-help-section-campaign-name',
},
utm_source: {
label: translate( 'UTM Source' ),
placeholder: translate( 'e.g. newsletter' ),
describedBy: 'stats-utm-builder-help-section-campaign-source',
},
utm_medium: {
label: translate( 'UTM Medium' ),
placeholder: translate( 'e.g. email, social' ),
describedBy: 'stats-utm-builder-help-section-campaign-medium',
},
};
const handleInputChange = ( e: React.ChangeEvent< HTMLInputElement > ) => {
const { name, value } = e.target;
setInputValues( ( prevValues ) => ( {
...prevValues,
[ name ]: value,
} ) );
};
const handleSubmit = ( e: React.FormEvent ) => {
// Prevent submittin the form
e.preventDefault();
};
const campaignString = Object.entries( inputValues )
.map( ( [ key, value ] ) => ( value ? `${ key }=${ encodeURIComponent( value ) }` : '' ) )
.filter( ( value ) => value.length )
.join( '&' );
const utmString = ! url
? translate( 'Fill out campaign parameters to see the URL' )
: `${ url }${
campaignString ? `${ url.includes( '?' ) ? '&' : '?' }${ campaignString }` : ''
}`;
const handleCopy = () => {
if ( url ) {
navigator.clipboard.writeText( utmString );
triggerConfirmation();
}
};
return (
<>
{ translate( 'Your URL to share' ) }
{ utmString }
{ translate( 'Copy to clipboard' ) }
>
);
};
export default UtmBuilder;