aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/components/material-ui/toggleButton.tsx
blob: 522ff12c87ecc6f799835f1e6b544c8b3f6891fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import * as React from 'react';
import classNames from 'classnames';
import { withStyles, WithStyles, Theme, createStyles } from '@material-ui/core/styles';
import { fade } from '@material-ui/core/styles/colorManipulator';
import ButtonBase from '@material-ui/core/ButtonBase';


export const styles = (theme: Theme) => createStyles({
    /* Styles applied to the root element. */
    root: {
        ...theme.typography.button,
        height: 32,
        minWidth: 48,
        margin: 0,
        padding: `${theme.spacing.unit - 4}px ${theme.spacing.unit * 1.5}px`,
        borderRadius: 2,
        willChange: 'opacity',
        color: fade(theme.palette.action.active, 0.38),
        '&:hover': {
            textDecoration: 'none',
            // Reset on mouse devices
            backgroundColor: fade(theme.palette.text.primary, 0.12),
            '@media (hover: none)': {
                backgroundColor: 'transparent',
            },
            '&$disabled': {
                backgroundColor: 'transparent',
            },
        },
        '&:not(:first-child)': {
            borderTopLeftRadius: 0,
            borderBottomLeftRadius: 0,
        },
        '&:not(:last-child)': {
            borderTopRightRadius: 0,
            borderBottomRightRadius: 0,
        },
    },
    /* Styles applied to the root element if `disabled={true}`. */
    disabled: {
        color: fade(theme.palette.action.disabled, 0.12),
    },
    /* Styles applied to the root element if `selected={true}`. */
    selected: {
        color: theme.palette.action.active,
        '&:after': {
            content: '""',
            display: 'block',
            position: 'absolute',
            overflow: 'hidden',
            borderRadius: 'inherit',
            width: '100%',
            height: '100%',
            left: 0,
            top: 0,
            pointerEvents: 'none',
            zIndex: 0,
            backgroundColor: 'currentColor',
            opacity: 0.38,
        },
        '& + &:before': {
            content: '""',
            display: 'block',
            position: 'absolute',
            overflow: 'hidden',
            width: 1,
            height: '100%',
            left: 0,
            top: 0,
            pointerEvents: 'none',
            zIndex: 0,
            backgroundColor: 'currentColor',
            opacity: 0.12,
        },
    },
    /* Styles applied to the `label` wrapper element. */
    label: {
        width: '100%',
        display: 'inherit',
        alignItems: 'inherit',
        justifyContent: 'inherit',
    },
});

export type ToggleButtonClassKey = 'disabled' | 'root' | 'label' | 'selected';

interface IToggleButtonProps extends WithStyles<typeof styles> {
    className?: string;
    component?: React.ReactType<IToggleButtonProps>;
    disabled?: boolean;
    disableFocusRipple?: boolean;
    disableRipple?: boolean;
    selected?: boolean;
    type?: string;
    value?: any;
    onClick?: (event: React.FormEvent<HTMLElement>, value?: any) => void;
    onChange?: (event: React.FormEvent<HTMLElement>, value?: any) => void;
}

class ToggleButtonComponent extends React.Component<IToggleButtonProps> {
    handleChange = (event: React.FormEvent<HTMLElement>) => {
        const { onChange, onClick, value } = this.props;

        if (onClick) {
            onClick(event, value);
            if (event.isDefaultPrevented()) {
                return;
            }
        }

        if (onChange) {
            onChange(event, value);
        }
    };

    render() {
        const {
            children,
            className: classNameProp,
            classes,
            disableFocusRipple,
            disabled,
            selected,
            ...other
        } = this.props;

        const className = classNames(
            classes.root,
            {
                [classes.disabled]: disabled,
                [classes.selected]: selected,
            },
            classNameProp,
        );

        return (
            <ButtonBase
                className={className}
                disabled={disabled}
                focusRipple={!disableFocusRipple}
                onClick={this.handleChange}
                {...other}
            >
                <span className={classes.label}>{children}</span>
            </ButtonBase>
        );
    }
    public static defaultProps = {
        disabled: false,
        disableFocusRipple: false,
        disableRipple: false,
    };

    public static muiName = 'ToggleButton';
}

export const ToggleButton = withStyles(styles, { name: 'MuiToggleButton' })(ToggleButtonComponent);
export default ToggleButton;