diff --git a/app/pages/CreateCollection.tsx b/app/pages/CreateCollection.tsx index 38b3904..0f2cd40 100644 --- a/app/pages/CreateCollection.tsx +++ b/app/pages/CreateCollection.tsx @@ -27,6 +27,10 @@ export const CreateCollectionPage = () => { title: "", description: "", }); + const [stringLength, setStringLength] = useState({ + title: 0, + description: 0, + }); const collection_id = searchParams.get("id") || null; const mode = searchParams.get("mode") || null; @@ -78,14 +82,22 @@ export const CreateCollectionPage = () => { }; function handleInput(e) { + const regex = /[^a-zA-Zа-яА-Я0-9_.,:()!? \[\]]/g; setCollectionInfo({ ...collectionInfo, - [e.target.name]: e.target.value, + [e.target.name]: e.target.value.replace(regex, ""), + }); + setStringLength({ + ...stringLength, + [e.target.name]: e.target.value.replace(regex, "").length, }); } function submit(e) { e.preventDefault(); + + console.log(collectionInfo.title.length); + console.log({ ...collectionInfo, private: isPrivate, @@ -100,7 +112,7 @@ export const CreateCollectionPage = () => { {edit ? "Редактирование коллекции" : "Создание коллекции"}