Files
Mav-Mobile-UI/src/components/SettingForms/Channel1-JSON/ChannelFields.tsx

74 lines
2.3 KiB
TypeScript
Raw Normal View History

2025-08-18 12:53:30 +01:00
import { Field, useFormikContext } from "formik";
import FormGroup from "../components/FormGroup";
2025-09-16 14:20:38 +01:00
import { useState } from "react";
import { faEyeSlash, faEye } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
2025-08-18 12:53:30 +01:00
const ChannelFields = () => {
useFormikContext();
2025-09-16 14:20:38 +01:00
const [showPwd, setShowPwd] = useState(false);
2025-08-18 12:53:30 +01:00
return (
<div className="flex flex-col space-y-2">
<FormGroup>
<label htmlFor="backoffice" className="m-0">
Back Office URL
</label>
<Field
name={"backOfficeURL"}
type="text"
id="backoffice"
placeholder="https://www.backoffice.com"
2025-09-22 09:26:45 +01:00
className="p-1.5 border border-gray-400 rounded-lg w-full md:w-60"
2025-08-18 12:53:30 +01:00
/>
</FormGroup>
<FormGroup>
<label htmlFor="username">Username</label>
<Field
name={"username"}
type="text"
id="username"
placeholder="Back office username"
2025-09-22 09:26:45 +01:00
className="p-1.5 border border-gray-400 rounded-lg w-full md:w-60"
2025-08-18 12:53:30 +01:00
/>
</FormGroup>
<FormGroup>
<label htmlFor="password">Password</label>
<Field
name={"password"}
2025-09-16 14:20:38 +01:00
type={showPwd ? "text" : "password"}
2025-08-18 12:53:30 +01:00
id="password"
placeholder="Back office password"
2025-09-22 09:26:45 +01:00
className="p-1.5 border border-gray-400 rounded-lg w-full md:w-60"
2025-08-18 12:53:30 +01:00
/>
2025-09-16 14:20:38 +01:00
<FontAwesomeIcon
type="button"
className="absolute right-5 end-0"
onClick={() => setShowPwd((s) => !s)}
icon={showPwd ? faEyeSlash : faEye}
/>
2025-08-18 12:53:30 +01:00
</FormGroup>
<FormGroup>
<label htmlFor="connectTimeoutSeconds">Connect Timeout Seconds</label>
<Field
name={"connectTimeoutSeconds"}
type="number"
id="connectTimeoutSeconds"
2025-09-22 09:26:45 +01:00
className="p-1.5 border border-gray-400 rounded-lg w-full md:w-60"
2025-08-18 12:53:30 +01:00
/>
</FormGroup>
<FormGroup>
<label htmlFor="readTimeoutSeconds">Read Timeout Seconds</label>
<Field
name={"readTimeoutSeconds"}
type="number"
id="readTimeoutSeconds"
placeholder="https://example.com"
2025-09-22 09:26:45 +01:00
className="p-1.5 border border-gray-400 rounded-lg w-full md:w-60"
2025-08-18 12:53:30 +01:00
/>
</FormGroup>
</div>
);
};
export default ChannelFields;