/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the Chameleon License found in the * LICENSE file in the root directory of this source tree. */ import { ChangeEvent, useState } from "react"; export type InputToggleProps = { value: boolean; optional?: boolean; label?: string; className?: string; onValueChange: (n: any) => void; }; export function InputToggle({ value, onValueChange, optional = false, label, className, }: InputToggleProps) { const [skipped, setSkipped] = useState(false); function handleOptional(evt: ChangeEvent) { // if checked, skip should be false if (evt.currentTarget.checked === skipped) { setSkipped(!skipped); } } const input = (
onValueChange(evt.currentTarget.checked)} /> {value ? "Yes" : "No"}
); return label ? (
{input}
) : ( input ); }