blob: 17aafb7fc12b274ed7e03da2fcf6a70b1141ec02 (
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
|
import * as React from 'react';
import { Button, Component, Text, Types } from 'reactxp';
import { colors } from '../../config.json';
import styles from './AppButtonStyles';
import ImageView from './ImageView';
interface ILabelProps {
children?: React.ReactText;
}
export class Label extends Component<ILabelProps> {
public render() {
return <Text style={styles.label}>{this.props.children}</Text>;
}
}
interface IIconProps {
source: string;
width?: number;
height?: number;
}
export class Icon extends Component<IIconProps> {
public render() {
return (
<ImageView
source={this.props.source}
width={this.props.width}
height={this.props.height}
tintColor={colors.white}
style={styles.icon}
/>
);
}
}
interface IProps {
children?: React.ReactNode;
style?: Types.ButtonStyleRuleSet;
disabled?: boolean;
onPress?: () => void;
}
interface IState {
hovered: boolean;
}
class BaseButton extends Component<IProps, IState> {
public state: IState = { hovered: false };
public backgroundStyle = (): Types.ButtonStyleRuleSet => {
throw new Error('Implement backgroundStyle in subclasses.');
};
public onHoverStart = () => (!this.props.disabled ? this.setState({ hovered: true }) : null);
public onHoverEnd = () => (!this.props.disabled ? this.setState({ hovered: false }) : null);
public render() {
const { children, style, ...otherProps } = this.props;
return (
<Button
{...otherProps}
style={[styles.common, this.backgroundStyle(), style]}
onHoverStart={this.onHoverStart}
onHoverEnd={this.onHoverEnd}>
{React.Children.map(children, (child) =>
typeof child === 'string' ? <Label>{child as string}</Label> : child,
)}
</Button>
);
}
}
export class RedButton extends BaseButton {
public backgroundStyle = () => (this.state.hovered ? styles.redHover : styles.red);
}
export class GreenButton extends BaseButton {
public backgroundStyle = () => (this.state.hovered ? styles.greenHover : styles.green);
}
export class BlueButton extends BaseButton {
public backgroundStyle = () => (this.state.hovered ? styles.blueHover : styles.blue);
}
export class TransparentButton extends BaseButton {
public backgroundStyle = () =>
this.state.hovered ? styles.transparentHover : styles.transparent;
}
export class RedTransparentButton extends BaseButton {
public backgroundStyle = () =>
this.state.hovered ? styles.redTransparentHover : styles.redTransparent;
}
|