PromucFlow_constructor/app/client/src/components/designSystems/blueprint/RadioGroupComponent.tsx

84 lines
2.2 KiB
TypeScript
Raw Normal View History

2019-11-05 05:09:50 +00:00
import React from "react";
import styled from "styled-components";
2019-11-25 05:07:27 +00:00
import { ComponentProps } from "components/designSystems/appsmith/BaseComponent";
import { RadioOption } from "widgets/RadioGroupWidget";
import {
RadioGroup,
Radio,
ControlGroup,
Label,
Classes,
} from "@blueprintjs/core";
import { WIDGET_PADDING } from "constants/WidgetConstants";
2020-02-06 07:01:25 +00:00
import { BlueprintControlTransform, labelStyle } from "constants/DefaultTheme";
2020-01-28 08:21:22 +00:00
const StyledControlGroup = styled(ControlGroup)`
&&& {
& > label {
2020-01-28 08:21:22 +00:00
${labelStyle}
flex: 0 1 30%;
2020-03-13 07:24:03 +00:00
margin: 7px ${WIDGET_PADDING * 2}px 0 0;
text-align: right;
2020-03-13 07:24:03 +00:00
align-self: flex-start;
max-width: calc(30% - ${WIDGET_PADDING}px);
}
}
`;
2020-02-06 07:01:25 +00:00
const StyledRadioGroup = styled(RadioGroup)`
${BlueprintControlTransform};
2020-03-13 07:24:03 +00:00
label {
margin: 7px ${WIDGET_PADDING * 2}px 0 0;
}
2020-02-06 07:01:25 +00:00
`;
2019-11-05 05:09:50 +00:00
class RadioGroupComponent extends React.Component<RadioGroupComponentProps> {
render() {
return (
<StyledControlGroup fill>
2020-01-28 11:46:04 +00:00
{this.props.label && (
2020-01-31 11:13:16 +00:00
<Label
className={
this.props.isLoading
? Classes.SKELETON
: Classes.TEXT_OVERFLOW_ELLIPSIS
}
>
2020-01-28 11:46:04 +00:00
{this.props.label}
</Label>
)}
<StyledRadioGroup
disabled={this.props.isDisabled}
onChange={this.onRadioSelectionChange}
selectedValue={this.props.selectedOptionValue}
>
2020-12-24 04:32:25 +00:00
{this.props.options.map((option) => {
return (
<Radio
className={this.props.isLoading ? "bp3-skeleton" : ""}
key={option.value}
label={option.label}
value={option.value}
/>
);
})}
</StyledRadioGroup>
</StyledControlGroup>
2019-11-05 05:09:50 +00:00
);
}
onRadioSelectionChange = (event: React.FormEvent<HTMLInputElement>) => {
this.props.onRadioSelectionChange(event.currentTarget.value);
};
}
export interface RadioGroupComponentProps extends ComponentProps {
label: string;
options: RadioOption[];
onRadioSelectionChange: (updatedOptionValue: string) => void;
selectedOptionValue: string;
2019-12-03 04:41:10 +00:00
isLoading: boolean;
2019-11-05 05:09:50 +00:00
}
export default RadioGroupComponent;