PromucFlow_constructor/app/client/src/widgets/RadioGroupWidget/component/index.tsx

99 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-11-05 05:09:50 +00:00
import React from "react";
import styled from "styled-components";
import { ComponentProps } from "widgets/BaseComponent";
import { RadioOption } from "../constants";
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";
import { Colors } from "constants/Colors";
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};
.${Classes.CONTROL} {
display: flex;
align-items: center;
margin-bottom: 0;
min-height: 36px;
margin: 0px 12px;
color: ${Colors.GREY_10};
&:hover {
& input:not(:checked) ~ .bp3-control-indicator {
border: 1px solid ${Colors.GREY_5} !important;
}
}
& .bp3-control-indicator {
border: 1px solid ${Colors.GREY_3};
}
2020-03-13 07:24:03 +00:00
}
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}
>
{this.props.options.map((option, optInd) => {
return (
<Radio
className={this.props.isLoading ? "bp3-skeleton" : ""}
key={optInd}
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;