Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 89x 28x 28x 28x 28x | import CopyButton from "@common/CopyButton";
import { RHFInput } from "@common/Input";
import { useFormContext } from "react-hook-form";
import { SLUG_MAX_CHARACTER_LENGTH } from "@constants/constants";
import useSlugPrefixFormatter from "@components/Merchants/MerchantPreview/hooks/useSlugPrefixFormatter";
type MerchantSlugInputProps = {
id?: string;
name: string;
label?: string;
parentName?: string;
disabled?: boolean;
focusViewColor?: string;
value?: string;
placeholder?: string;
};
const MerchantSlugInput = ({
name,
label,
parentName,
disabled = false,
...rest
}: MerchantSlugInputProps) => {
const { watch } = useFormContext();
const prefix = `https://${
parentName || watch("parent_slug")
}.givepayments.com/`;
const slugPrefix = useSlugPrefixFormatter(prefix);
return (
<RHFInput
name={name}
label={label}
fullWidth
maxLength={SLUG_MAX_CHARACTER_LENGTH}
disabled={disabled}
inputPrefix={slugPrefix}
endIcon={<CopyButton hidden={!watch(name)} text={prefix + watch(name)} />}
{...rest}
/>
);
};
export default MerchantSlugInput;
|