mirror of
https://github.com/stashapp/stash.git
synced 2026-04-30 13:44:22 -05:00
cbdd4d3cbf
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
94 lines
1.9 KiB
TypeScript
94 lines
1.9 KiB
TypeScript
import React from "react";
|
|
import { Form } from "react-bootstrap";
|
|
import { useIntl } from "react-intl";
|
|
|
|
interface IThreeStateBoolean {
|
|
id: string;
|
|
value: boolean | undefined;
|
|
setValue: (v: boolean | undefined) => void;
|
|
allowUndefined?: boolean;
|
|
label?: React.ReactNode;
|
|
disabled?: boolean;
|
|
defaultValue?: boolean;
|
|
tooltip?: string | undefined;
|
|
}
|
|
|
|
export const ThreeStateBoolean: React.FC<IThreeStateBoolean> = ({
|
|
id,
|
|
value,
|
|
setValue,
|
|
allowUndefined = true,
|
|
label,
|
|
disabled,
|
|
defaultValue,
|
|
tooltip,
|
|
}) => {
|
|
const intl = useIntl();
|
|
|
|
if (!allowUndefined) {
|
|
return (
|
|
<Form.Check
|
|
id={id}
|
|
disabled={disabled}
|
|
checked={value}
|
|
label={label}
|
|
onChange={() => setValue(!value)}
|
|
title={tooltip}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function getBooleanText(v: boolean) {
|
|
if (v) {
|
|
return intl.formatMessage({ id: "true" });
|
|
}
|
|
return intl.formatMessage({ id: "false" });
|
|
}
|
|
|
|
function getButtonText(v: boolean | undefined) {
|
|
if (v === undefined) {
|
|
const defaultVal =
|
|
defaultValue !== undefined ? (
|
|
<span className="default-value">
|
|
{" "}
|
|
({getBooleanText(defaultValue)})
|
|
</span>
|
|
) : (
|
|
""
|
|
);
|
|
return (
|
|
<span>
|
|
{intl.formatMessage({ id: "actions.use_default" })}
|
|
{defaultVal}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
return getBooleanText(v);
|
|
}
|
|
|
|
function renderModeButton(v: boolean | undefined) {
|
|
return (
|
|
<Form.Check
|
|
type="radio"
|
|
id={`${id}-value-${v ?? "undefined"}`}
|
|
checked={value === v}
|
|
onChange={() => setValue(v)}
|
|
disabled={disabled}
|
|
label={getButtonText(v)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Form.Group>
|
|
<h6 title={tooltip}>{label}</h6>
|
|
<Form.Group>
|
|
{renderModeButton(undefined)}
|
|
{renderModeButton(false)}
|
|
{renderModeButton(true)}
|
|
</Form.Group>
|
|
</Form.Group>
|
|
);
|
|
};
|