aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/TaggSquareButton.tsx
blob: c6064b92179f7057c16bddc2b8572065e21ed03c (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
import React from 'react';
import {
  GestureResponderEvent,
  StyleSheet,
  Text,
  TouchableOpacity,
  ViewProps,
  ViewStyle,
} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
import {BACKGROUND_GRADIENT_MAP} from '../../constants';
import {normalize, SCREEN_WIDTH} from '../../utils';

interface TaggSquareButtonProps extends ViewProps {
  onPress: (event: GestureResponderEvent) => void;
  title: string;
  mode: 'normal' | 'large' | 'gradient';
  color: 'purple' | 'white';
  style?: ViewStyle;
}

const TaggSquareButton: React.FC<TaggSquareButtonProps> = (props) => {
  const buttonStyles = (() => {
    switch (props.color) {
      case 'purple':
        return {backgroundColor: '#8F01FF'};
      case 'white':
      default:
        return {backgroundColor: 'white'};
    }
  })();
  switch (props.mode) {
    case 'large':
      return (
        <TouchableOpacity
          onPress={props.onPress}
          style={[styles.largeButton, buttonStyles, props.style]}>
          <Text style={styles.largeLabel}>{props.title}</Text>
        </TouchableOpacity>
      );
    case 'gradient':
      return (
        <TouchableOpacity onPress={props.onPress}>
          <LinearGradient
            style={styles.gradientButton}
            colors={BACKGROUND_GRADIENT_MAP[0]}
            useAngle
            angle={90}>
            <Text style={styles.gradientLabel}>{props.title}</Text>
          </LinearGradient>
        </TouchableOpacity>
      );
    case 'normal':
    default:
      return (
        <TouchableOpacity
          onPress={props.onPress}
          style={[styles.normalButton, buttonStyles, props.style]}>
          <Text style={styles.normalLabel}>{props.title}</Text>
        </TouchableOpacity>
      );
  }
};

const styles = StyleSheet.create({
  largeButton: {
    justifyContent: 'center',
    alignItems: 'center',
    width: '70%',
    height: '10%',
    borderRadius: 5,
  },
  largeLabel: {
    fontSize: normalize(26),
    fontWeight: '500',
    color: '#eee',
  },
  normalButton: {
    justifyContent: 'center',
    alignItems: 'center',
    width: SCREEN_WIDTH * 0.45,
    aspectRatio: 3.7,
    borderRadius: 5,
    marginBottom: '5%',
  },
  normalLabel: {
    fontSize: normalize(20),
    fontWeight: '500',
    color: '#78A0EF',
  },
  gradientButton: {
    marginTop: '8%',
    borderRadius: 5,
    paddingVertical: '5%',
    aspectRatio: 3.3,
    elevation: 2,
    backgroundColor: '#2196F3',
  },
  gradientLabel: {
    color: 'white',
    fontWeight: '600',
    textAlign: 'center',
    fontSize: normalize(17),
  },
});

export default TaggSquareButton;