PromucFlow_constructor/app/client/src/components/formControls/SwitchControl.tsx

92 lines
2.0 KiB
TypeScript
Raw Normal View History

import React from "react";
import BaseControl, { ControlProps } from "./BaseControl";
import { StyledSwitch } from "./StyledControls";
import { ControlType } from "constants/PropertyControlConstants";
import FormLabel from "components/editorComponents/FormLabel";
import { Field, WrappedFieldProps } from "redux-form";
import styled from "styled-components";
type Props = WrappedFieldProps & {
label: string;
isRequired: boolean;
info: string;
};
const StyledFormLabel = styled(FormLabel)`
margin-bottom: 0px;
`;
const SwitchWrapped = styled.div`
flex-direction: row;
display: flex;
align-items: center;
.bp3-control {
margin-bottom: 0px;
}
max-width: 60vw;
`;
const Info = styled.div`
font-size: 12px;
opacity: 0.7;
margin-top: 8px;
max-width: 60vw;
`;
export class SwitchField extends React.Component<Props, any> {
get value() {
const { input } = this.props;
if (typeof input.value !== "string") return !!input.value;
else {
if (input.value.toLocaleLowerCase() === "false") return false;
else return !!input.value;
}
}
render() {
const { info, input, isRequired, label } = this.props;
return (
<div>
<SwitchWrapped data-cy={this.props.input.name}>
<StyledFormLabel>
{label} {isRequired && "*"}
</StyledFormLabel>
<StyledSwitch
checked={this.value}
large
onChange={(value) => input.onChange(value)}
/>
</SwitchWrapped>
{info && <Info>{info}</Info>}
</div>
);
}
}
class SwitchControl extends BaseControl<SwitchControlProps> {
render() {
const { configProperty, info, isRequired, label } = this.props;
return (
<Field
component={SwitchField}
info={info}
isRequired={isRequired}
label={label}
name={configProperty}
/>
);
}
getControlType(): ControlType {
return "SWITCH";
}
}
export interface SwitchControlProps extends ControlProps {
info?: string;
}
export default SwitchControl;