correction of working capacity
This commit is contained in:
parent
bc293f6370
commit
fa5fe30c34
11 changed files with 180 additions and 82 deletions
|
|
@ -20,6 +20,10 @@ export const registerUser = async (data: IRegistrationData) => {
|
||||||
|
|
||||||
if (responseData.accessToken) {
|
if (responseData.accessToken) {
|
||||||
localStorage.setItem("token", responseData.accessToken);
|
localStorage.setItem("token", responseData.accessToken);
|
||||||
|
localStorage.setItem("user", JSON.stringify({
|
||||||
|
firstName: data.firstName,
|
||||||
|
lastName: data.lastName
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
return responseData;
|
return responseData;
|
||||||
|
|
@ -41,6 +45,14 @@ export const authUser = async (data: IAuthData) => {
|
||||||
const token = responseData.accessToken || responseData.token;
|
const token = responseData.accessToken || responseData.token;
|
||||||
if (token) {
|
if (token) {
|
||||||
localStorage.setItem("token", token);
|
localStorage.setItem("token", token);
|
||||||
|
const user = localStorage.getItem("user");
|
||||||
|
if (!responseData.user && user) {
|
||||||
|
responseData.user = JSON.parse(user);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseData.user) {
|
||||||
|
localStorage.setItem("user", JSON.stringify(responseData.user));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return responseData;
|
return responseData;
|
||||||
|
|
|
||||||
|
|
@ -1,46 +1,67 @@
|
||||||
/*AnswerOption.module.css*/
|
/*!*AnswerOption.module.css*!*/
|
||||||
|
|
||||||
.answer{
|
.answer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
margin-bottom: 17px;
|
margin-bottom: 17px;
|
||||||
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.textAnswer{
|
.textAnswer {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #ffffff;
|
background: none;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
width: 70%;
|
width: 70%;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 24px;
|
||||||
|
cursor: text;
|
||||||
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonMarker{
|
.buttonMarker {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: transparent;
|
background: none;
|
||||||
|
position: relative;
|
||||||
|
top: 0;
|
||||||
|
transition: top 0.1s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.answerIcon{
|
.buttonMarker.editing {
|
||||||
vertical-align: middle;
|
top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.answerIcon {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.answerInput{
|
.answerInput {
|
||||||
vertical-align: middle;
|
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
outline: none;
|
outline: none;
|
||||||
border: none;
|
border: none;
|
||||||
resize: none;
|
resize: none;
|
||||||
display: flex;
|
width: 70%;
|
||||||
align-items: center;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
margin-top: 2px;
|
||||||
|
font-family: inherit;
|
||||||
|
min-height: 24px;
|
||||||
|
height: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
line-height: 1.5;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.deleteButton{
|
.deleteButton {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,22 @@ const AnswerOption: React.FC<AnswerOptionProps> = ({index, value, onChange, onDe
|
||||||
|
|
||||||
const handleTextareaChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
|
const handleTextareaChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
setCurrentValue(event.target.value);
|
setCurrentValue(event.target.value);
|
||||||
|
// Автоматическое изменение высоты
|
||||||
|
if (textAreaRef.current) {
|
||||||
|
textAreaRef.current.style.height = 'auto';
|
||||||
|
textAreaRef.current.style.height = `${textAreaRef.current.scrollHeight}px`;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isEditing && textAreaRef.current) {
|
||||||
|
textAreaRef.current.focus();
|
||||||
|
// Установка начальной высоты
|
||||||
|
textAreaRef.current.style.height = 'auto';
|
||||||
|
textAreaRef.current.style.height = `${textAreaRef.current.scrollHeight}px`;
|
||||||
|
}
|
||||||
|
}, [isEditing]);
|
||||||
|
|
||||||
const handleSave = () => {
|
const handleSave = () => {
|
||||||
setIsEditing(false);
|
setIsEditing(false);
|
||||||
onChange(currentValue);
|
onChange(currentValue);
|
||||||
|
|
@ -66,7 +80,10 @@ const AnswerOption: React.FC<AnswerOptionProps> = ({index, value, onChange, onDe
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.answer}>
|
<div className={styles.answer}>
|
||||||
<button className={styles.buttonMarker} onClick={toggleSelect}>
|
<button
|
||||||
|
className={`${styles.buttonMarker} ${isEditing ? styles.editing : ''}`}
|
||||||
|
onClick={toggleSelect}
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
className={styles.answerIcon}
|
className={styles.answerIcon}
|
||||||
src={getImage()}
|
src={getImage()}
|
||||||
|
|
@ -74,7 +91,8 @@ const AnswerOption: React.FC<AnswerOptionProps> = ({index, value, onChange, onDe
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
{isEditing ? (
|
{isEditing ? (
|
||||||
<textarea className={styles.answerInput}
|
<textarea
|
||||||
|
className={styles.answerInput}
|
||||||
ref={textAreaRef}
|
ref={textAreaRef}
|
||||||
value={currentValue}
|
value={currentValue}
|
||||||
onChange={handleTextareaChange}
|
onChange={handleTextareaChange}
|
||||||
|
|
@ -92,6 +110,7 @@ const AnswerOption: React.FC<AnswerOptionProps> = ({index, value, onChange, onDe
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default AnswerOption;
|
export default AnswerOption;
|
||||||
|
|
@ -2,19 +2,24 @@ import React from "react";
|
||||||
import Logo from "../Logo/Logo.tsx";
|
import Logo from "../Logo/Logo.tsx";
|
||||||
import Account from "../Account/Account.tsx";
|
import Account from "../Account/Account.tsx";
|
||||||
import styles from './Header.module.css'
|
import styles from './Header.module.css'
|
||||||
import {Link, useLocation} from "react-router-dom";
|
import {Link, useLocation, useNavigate} from "react-router-dom";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const Header: React.FC = () => {
|
const Header: React.FC = () => {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
const navigate = useNavigate();
|
||||||
const isCreateSurveyActive = location.pathname.includes('/survey/create');
|
const isCreateSurveyActive = location.pathname.includes('/survey/create');
|
||||||
const isSurveyPage = location.pathname.includes('/survey/') && !location.pathname.includes('/survey/create');
|
const isSurveyPage = location.pathname.includes('/survey/') && !location.pathname.includes('/survey/create');
|
||||||
const isMySurveysPage = location.pathname === '/my-surveys' || isSurveyPage;
|
const isMySurveysPage = location.pathname === '/my-surveys' || isSurveyPage;
|
||||||
|
|
||||||
|
const handleLogoClick = () => {
|
||||||
|
navigate(location.pathname, { replace: true });
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.header}>
|
<div className={styles.header}>
|
||||||
<Logo href='/' />
|
<Logo href={location.pathname} onClick={handleLogoClick} />
|
||||||
<nav className={styles.pagesNav}>
|
<nav className={styles.pagesNav}>
|
||||||
<Link to='/survey/create/questions'
|
<Link to='/survey/create/questions'
|
||||||
className={`${styles.pageLink} ${isCreateSurveyActive ? styles.active : ''}`}>
|
className={`${styles.pageLink} ${isCreateSurveyActive ? styles.active : ''}`}>
|
||||||
|
|
@ -27,10 +32,7 @@ const Header: React.FC = () => {
|
||||||
{isMySurveysPage && <hr className={styles.activeLine}/>}
|
{isMySurveysPage && <hr className={styles.activeLine}/>}
|
||||||
</Link>
|
</Link>
|
||||||
</nav>
|
</nav>
|
||||||
<Account
|
<Account href={'/profile'} user={'Иванов Иван'}/>
|
||||||
href='/profile'
|
|
||||||
user='Иванов Иван'
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,12 @@ import styles from './Logo.module.css'
|
||||||
|
|
||||||
interface LogoProps {
|
interface LogoProps {
|
||||||
href: string;
|
href: string;
|
||||||
|
onClick: () => void
|
||||||
}
|
}
|
||||||
|
|
||||||
const Logo: React.FC<LogoProps> = ({href}) => {
|
const Logo: React.FC<LogoProps> = ({href, onClick}) => {
|
||||||
return (
|
return (
|
||||||
<a className={styles.logo} href={href}>
|
<a className={styles.logo} href={href} onClick={onClick}>
|
||||||
<img src='../../../public/logo.svg' alt="" />
|
<img src='../../../public/logo.svg' alt="" />
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,9 @@
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
line-height: 1.5;
|
||||||
|
overflow-y: hidden;
|
||||||
|
min-height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonQuestion{
|
.buttonQuestion{
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,11 @@ const QuestionItem: React.FC<QuestionItemProps> = ({indexQuestion, initialTextQu
|
||||||
|
|
||||||
const handleTextareaQuestionChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
|
const handleTextareaQuestionChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
setTextQuestion(event.target.value);
|
setTextQuestion(event.target.value);
|
||||||
|
|
||||||
|
if (textareaQuestionRef.current) {
|
||||||
|
textareaQuestionRef.current.style.height = 'auto';
|
||||||
|
textareaQuestionRef.current.style.height = `${textareaQuestionRef.current.scrollHeight}px`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleSaveQuestion = () => {
|
const handleSaveQuestion = () => {
|
||||||
|
|
@ -59,6 +64,8 @@ const QuestionItem: React.FC<QuestionItemProps> = ({indexQuestion, initialTextQu
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isEditingQuestion && textareaQuestionRef.current) {
|
if (isEditingQuestion && textareaQuestionRef.current) {
|
||||||
textareaQuestionRef.current.focus();
|
textareaQuestionRef.current.focus();
|
||||||
|
textareaQuestionRef.current.style.height = 'auto';
|
||||||
|
textareaQuestionRef.current.style.height = `${textareaQuestionRef.current.scrollHeight}px`;
|
||||||
}
|
}
|
||||||
}, [isEditingQuestion]);
|
}, [isEditingQuestion]);
|
||||||
|
|
||||||
|
|
@ -109,6 +116,7 @@ const QuestionItem: React.FC<QuestionItemProps> = ({indexQuestion, initialTextQu
|
||||||
onKeyDown={handleQuestionKeyDown}
|
onKeyDown={handleQuestionKeyDown}
|
||||||
onBlur={handleQuestionBlur}
|
onBlur={handleQuestionBlur}
|
||||||
placeholder={initialTextQuestion}
|
placeholder={initialTextQuestion}
|
||||||
|
rows={1}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<button className={styles.buttonQuestion} onClick={handleQuestionClick}>
|
<button className={styles.buttonQuestion} onClick={handleQuestionClick}>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,11 @@ const RegisterForm = () => {
|
||||||
const responseData = await registerUser({username, firstName, lastName, email, password});
|
const responseData = await registerUser({username, firstName, lastName, email, password});
|
||||||
console.log(responseData); //проверка вывода данных
|
console.log(responseData); //проверка вывода данных
|
||||||
if (responseData && !responseData.error) {
|
if (responseData && !responseData.error) {
|
||||||
console.log('Регистрация успешна')
|
console.log('Регистрация успешна');
|
||||||
|
localStorage.setItem("user", JSON.stringify({
|
||||||
|
firstName,
|
||||||
|
lastName
|
||||||
|
}));
|
||||||
navigate('/my-surveys');
|
navigate('/my-surveys');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.param{
|
.param{
|
||||||
|
border-radius: 4px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 97px;
|
padding-bottom: 97px;
|
||||||
|
|
|
||||||
|
|
@ -24,50 +24,60 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: 20px;
|
|
||||||
margin-bottom: 23px;
|
margin-bottom: 23px;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.textareaTitle{
|
.textareaTitle,
|
||||||
margin-top: -17px;
|
.textareaDescrip {
|
||||||
width: 80%;
|
width: 100%;
|
||||||
padding-top: 35px;
|
|
||||||
resize: none;
|
resize: none;
|
||||||
text-align: center;
|
|
||||||
font-size: 40px;
|
|
||||||
font-weight: 600;
|
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
line-height: 30px;
|
font-family: inherit;
|
||||||
word-break: break-word;
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background: transparent;
|
||||||
|
display: block;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description{
|
.textareaTitle {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1.2;
|
||||||
|
min-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textareaDescrip {
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 500;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1.4;
|
||||||
|
min-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.descriptionWrapper {
|
||||||
|
width: 80%;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 24px;
|
font-size: 18px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
padding: 5px 0;
|
||||||
|
width: 80%;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
padding: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.textareaDescrip{
|
|
||||||
width: 80%;
|
|
||||||
outline: none;
|
|
||||||
border: none;
|
|
||||||
resize: none;
|
|
||||||
text-align: center;
|
|
||||||
margin: 0 auto;
|
|
||||||
font-size: 22px;
|
|
||||||
font-weight: 500;
|
|
||||||
word-break: break-word;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.descripButton{
|
.descripButton{
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
||||||
|
|
@ -9,34 +9,50 @@ const SurveyInfo: React.FC = () => {
|
||||||
const titleTextareaRef = useRef<HTMLTextAreaElement>(null);
|
const titleTextareaRef = useRef<HTMLTextAreaElement>(null);
|
||||||
const descriptionTextareaRef = useRef<HTMLTextAreaElement>(null);
|
const descriptionTextareaRef = useRef<HTMLTextAreaElement>(null);
|
||||||
|
|
||||||
|
const adjustTextareaHeight = (textarea: HTMLTextAreaElement | null) => {
|
||||||
|
if (textarea) {
|
||||||
|
// Сброс высоты перед расчетом
|
||||||
|
textarea.style.height = 'auto';
|
||||||
|
// Устанавливаем высоту равной scrollHeight + небольшой отступ
|
||||||
|
textarea.style.height = `${textarea.scrollHeight}px`;
|
||||||
|
// Центрируем содержимое вертикально
|
||||||
|
textarea.style.paddingTop = `${Math.max(0, (textarea.clientHeight - textarea.scrollHeight) / 2)}px`;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const handleDescriptionChange = (descripEvent: React.ChangeEvent<HTMLTextAreaElement>) => {
|
const handleDescriptionChange = (descripEvent: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
setDescriptionSurvey(descripEvent.target.value);
|
setDescriptionSurvey(descripEvent.target.value);
|
||||||
}
|
adjustTextareaHeight(descripEvent.target);
|
||||||
|
};
|
||||||
|
|
||||||
const handleNewTitleChange = (titleEvent: React.ChangeEvent<HTMLTextAreaElement>) => {
|
const handleNewTitleChange = (titleEvent: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
setTitleSurvey(titleEvent.target.value);
|
setTitleSurvey(titleEvent.target.value);
|
||||||
|
adjustTextareaHeight(titleEvent.target);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (showNewTitleField && titleTextareaRef.current) {
|
||||||
|
titleTextareaRef.current.focus();
|
||||||
|
adjustTextareaHeight(titleTextareaRef.current);
|
||||||
}
|
}
|
||||||
|
}, [showNewTitleField]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (showDescriptionField && descriptionTextareaRef.current) {
|
||||||
|
descriptionTextareaRef.current.focus();
|
||||||
|
adjustTextareaHeight(descriptionTextareaRef.current);
|
||||||
|
}
|
||||||
|
}, [showDescriptionField]);
|
||||||
|
|
||||||
|
|
||||||
const handleAddNewTitleClick = () => {
|
const handleAddNewTitleClick = () => {
|
||||||
setShowNewTitleField(true);
|
setShowNewTitleField(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (showNewTitleField && titleTextareaRef.current) {
|
|
||||||
titleTextareaRef.current.focus();
|
|
||||||
}
|
|
||||||
}, [showNewTitleField]);
|
|
||||||
|
|
||||||
const handleAddDescriptionClick = () => {
|
const handleAddDescriptionClick = () => {
|
||||||
setShowDescriptionField(true);
|
setShowDescriptionField(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (showDescriptionField && descriptionTextareaRef.current){
|
|
||||||
descriptionTextareaRef.current.focus();
|
|
||||||
}
|
|
||||||
}, [showDescriptionField]);
|
|
||||||
|
|
||||||
const handleTitleKeyDown = (titleClickEnter: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
const handleTitleKeyDown = (titleClickEnter: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
||||||
if (titleClickEnter.key === 'Enter'){
|
if (titleClickEnter.key === 'Enter'){
|
||||||
titleClickEnter.preventDefault();
|
titleClickEnter.preventDefault();
|
||||||
|
|
@ -64,7 +80,7 @@ const SurveyInfo: React.FC = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const renderDescription = ()=> {
|
const renderDescription = () => {
|
||||||
if (descriptionSurvey && !showDescriptionField) {
|
if (descriptionSurvey && !showDescriptionField) {
|
||||||
return (
|
return (
|
||||||
<button className={styles.description} onClick={handleParagraphClick}>
|
<button className={styles.description} onClick={handleParagraphClick}>
|
||||||
|
|
@ -73,7 +89,7 @@ const SurveyInfo: React.FC = () => {
|
||||||
);
|
);
|
||||||
} else if (showDescriptionField) {
|
} else if (showDescriptionField) {
|
||||||
return (
|
return (
|
||||||
<p className={styles.description}>
|
<div className={styles.descriptionWrapper}>
|
||||||
<textarea
|
<textarea
|
||||||
ref={descriptionTextareaRef}
|
ref={descriptionTextareaRef}
|
||||||
className={styles.textareaDescrip}
|
className={styles.textareaDescrip}
|
||||||
|
|
@ -82,8 +98,9 @@ const SurveyInfo: React.FC = () => {
|
||||||
onChange={handleDescriptionChange}
|
onChange={handleDescriptionChange}
|
||||||
onKeyDown={handleDescriptionKeyDown}
|
onKeyDown={handleDescriptionKeyDown}
|
||||||
onBlur={handleDescriptionBlur}
|
onBlur={handleDescriptionBlur}
|
||||||
|
rows={1} // Начальное количество строк
|
||||||
/>
|
/>
|
||||||
</p>
|
</div>
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue