You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
5.2 KiB
195 lines
5.2 KiB
import React, { useState } from "react"; |
|
import _ from "lodash"; |
|
|
|
|
|
const langDetector = (lang, option1, option2) => { |
|
return lang === "fa" ? option1 : option2; |
|
}; |
|
|
|
const inputStatusHandler = (value, focus, status, primary, success, danger) => { |
|
if (!focus) { |
|
return ""; |
|
} else { |
|
if (!value) { |
|
return primary; |
|
} else { |
|
if (status) { |
|
return success; |
|
} else { |
|
return danger; |
|
} |
|
} |
|
} |
|
}; |
|
|
|
export default function Input({ backgroundColor, |
|
lang, |
|
theme, |
|
inputMode, |
|
label, |
|
status, |
|
maxLength, |
|
message, |
|
onChange, |
|
align, |
|
name, |
|
regex, |
|
direction, |
|
width, |
|
|
|
title, |
|
borderType, |
|
gapSize, |
|
id, |
|
type, |
|
className, |
|
style, |
|
bg}) { |
|
const [value, setValue] = useState(""); |
|
const [focusToggle, setFocusToggle] = useState(false); |
|
|
|
// const { |
|
|
|
// } = props; |
|
|
|
const focusHandler = (id) => { |
|
let inputs = document.querySelectorAll(".Login-box-form-item"); |
|
let label = document.querySelectorAll(".Login-box-form-item-label"); |
|
let line = document.querySelectorAll(".Login-box-form-item-line"); |
|
|
|
inputs[id].style.borderColor = "#df1452"; |
|
inputs[id].style.backgroundColor = "#fff"; |
|
label[id].style.transform = `translate(-10px,-27px)`; |
|
label[id].style.color = "#df1452"; |
|
line[id].style.backgroundColor = "#fff"; |
|
|
|
|
|
}; |
|
|
|
const blurHandler = (id) => { |
|
let inputsBox = document.querySelectorAll(".Login-box-form-item"); |
|
let inputs = document.querySelectorAll(".Login-box-form-item-input"); |
|
let label = document.querySelectorAll(".Login-box-form-item-label"); |
|
let line = document.querySelectorAll(".Login-box-form-item-line"); |
|
if (inputs[id]?.value === "") { |
|
inputsBox[id].style.borderColor = "#EBEBEB"; |
|
label[id].style.transform = "translate(0px,0px)"; |
|
label[id].style.color = "#959595"; |
|
line[id].style.backgroundColor = "#EBEBEB"; |
|
} |
|
}; |
|
|
|
return ( |
|
<div style={style} className={`${className} Login-box-form-item w-full ml-4 h-12 ${borderType ? borderType : 'rounded-lg'} border border-color7 mt-6 relative flex items-center flex-row-reverse`}> |
|
<div className={`Login-box-form-item-line w-${gapSize ? gapSize : '20'} h-px absolute top-[-1px] right-7 bg-color7`}></div> |
|
<div className="Login-box-form-item-label text-sm text-color19 bg-white absolute right-6 transition-all duration-300 pointer-events-none"> |
|
{title ? title : 'نام کاربری'} |
|
</div> |
|
{/* <label |
|
className={_.join( |
|
[ |
|
"absolute top-1/2 transform -translate-y-1/2 text-gray-500 dark:text-white px-2 text-xs transition-all duration-300", |
|
langDetector(lang, "right-2", "left-2"), |
|
inputStatusHandler( |
|
value, |
|
focusToggle, |
|
status, |
|
"input__labelFocus", |
|
"input__labelSuccess", |
|
"input__labelDanger" |
|
), |
|
], |
|
" " |
|
)} |
|
onClick={() => setFocusToggle(true)} |
|
> |
|
{label} |
|
</label> */} |
|
<input |
|
type={type ? type : "text"} |
|
inputMode={inputMode} |
|
|
|
className={_.join( |
|
[ |
|
`flex-1 dark:bg-opacity-10 bg-transparent rounded-md outline-none py-3 px-4 text-tiny ${backgroundColor} ${align}`, |
|
inputStatusHandler( |
|
value, |
|
focusToggle, |
|
status, |
|
"input__inputActive", |
|
"input__inputSuccess", |
|
"input__inputDanger" |
|
), |
|
"transition", |
|
], |
|
" " |
|
)} |
|
style={{ direction: direction }} |
|
onChange={(e) => |
|
onChange(name, (e.target.value = regex(e.target.value))) |
|
} |
|
// onFocus={() => setFocusToggle(true)} |
|
// onBlur={() => (!value ? setFocusToggle(false) : setFocusToggle(true))} |
|
onFocus={() => focusHandler(id ? id : 0)} |
|
onBlur={() => blurHandler(id ? id : 0)} |
|
maxLength={maxLength} |
|
/> |
|
|
|
|
|
{value && !status && ( |
|
<span |
|
className={_.join( |
|
[ |
|
"input__message text-xs absolute -bottom-5", |
|
langDetector(lang, "right-2", "left-2"), |
|
inputStatusHandler( |
|
value, |
|
focusToggle, |
|
status, |
|
"", |
|
"input__messageSuccess", |
|
"input__messageDanger" |
|
), |
|
"transition", |
|
], |
|
" " |
|
)} |
|
> |
|
{message} |
|
</span> |
|
)} |
|
{value && ( |
|
<span |
|
className={_.join( |
|
[ |
|
"input__length absolute -bottom-5 text-xs", |
|
langDetector(lang, "left-2", "right-2"), |
|
inputStatusHandler( |
|
value, |
|
focusToggle, |
|
status, |
|
"", |
|
"input__lengthSuccess", |
|
"input__lengthDanger" |
|
), |
|
"transition", |
|
], |
|
" " |
|
)} |
|
> |
|
{value.length + "/" + maxLength} |
|
</span> |
|
)} |
|
</div> |
|
); |
|
} |
|
|
|
Input.defaultProps = { |
|
lang: "fa", |
|
inputMode: "numeric", |
|
label: "label", |
|
status: "", |
|
maxLength: "", |
|
message: "", |
|
direction: "rtl", |
|
};
|
|
|