@@ -5,12 +5,11 @@ import type {
5
5
import React from "react" ;
6
6
import { View } from "react-native" ;
7
7
import { Calendar , useCalendar } from "@marceloterreiro/flash-calendar" ;
8
- import colors from "tailwindcss/colors" ;
9
8
10
9
import { Button } from "~/components/ui/button" ;
11
10
import { Text } from "~/components/ui/text" ;
12
11
import { mockScoresData } from "~/data/scores" ;
13
- import { NAV_THEME } from "~/lib/constants" ;
12
+ import { CALENDAR_THEME } from "~/lib/constants" ;
14
13
import { ChevronLeft } from "~/lib/icons/chevron-left" ;
15
14
import { ChevronRight } from "~/lib/icons/chevron-right" ;
16
15
import { useColorScheme } from "~/lib/use-color-scheme" ;
@@ -24,28 +23,27 @@ interface BasicCalendarProps extends CalendarProps {
24
23
onNextMonthPress : ( ) => void ;
25
24
}
26
25
27
- function getScoreColor ( score : number ) {
28
- if ( score >= 70 ) return colors . green [ 500 ] ;
29
- if ( score >= 50 ) return colors . yellow [ 500 ] ;
30
- return colors . red [ 500 ] ;
31
- }
32
-
33
26
export function BasicCalendar ( props : BasicCalendarProps ) {
34
27
const { calendarRowMonth, weekDaysList, weeksList } = useCalendar ( props ) ;
35
28
const { colorScheme } = useColorScheme ( ) ;
36
29
const isDark = colorScheme === "dark" ;
37
- const theme = isDark ? NAV_THEME . dark : NAV_THEME . light ;
30
+ const theme = isDark ? CALENDAR_THEME . dark : CALENDAR_THEME . light ;
31
+
32
+ function getScoreColor ( score : number ) {
33
+ if ( score >= 70 ) return theme . good ;
34
+ if ( score >= 50 ) return theme . ok ;
35
+ return theme . bad ;
36
+ }
38
37
39
38
const calendarTheme : CalendarTheme = {
40
39
rowMonth : {
41
40
container : {
42
41
height : MONTH_HEADER_HEIGHT ,
43
- backgroundColor : theme . background ,
44
42
paddingHorizontal : 4 ,
45
43
} ,
46
44
content : {
47
- color : theme . primary ,
48
- fontSize : 16 ,
45
+ color : theme . text ,
46
+ fontSize : 14 ,
49
47
fontWeight : "bold" ,
50
48
textAlign : "center" ,
51
49
} ,
@@ -57,8 +55,10 @@ export function BasicCalendar(props: BasicCalendarProps) {
57
55
} ,
58
56
itemWeekName : {
59
57
content : {
60
- color : isDark ? "rgba(255, 255, 255, 0.5)" : "rgba(0, 0, 0, 0.5)" ,
58
+ color : theme . primary ,
59
+ opacity : 0.3 ,
61
60
fontSize : 12 ,
61
+ fontWeight : "bold" ,
62
62
} ,
63
63
} ,
64
64
itemDay : {
@@ -70,7 +70,7 @@ export function BasicCalendar(props: BasicCalendarProps) {
70
70
container : {
71
71
padding : 0 ,
72
72
borderRadius : DAY_HEIGHT / 2 ,
73
- backgroundColor : isPressed ? "transparent" : "transparent" ,
73
+ backgroundColor : isPressed ? theme . highlight : "transparent" ,
74
74
} ,
75
75
content : {
76
76
fontSize : 14 ,
@@ -80,48 +80,41 @@ export function BasicCalendar(props: BasicCalendarProps) {
80
80
} ,
81
81
} ;
82
82
} ,
83
- idle : ( { isPressed, id } ) => {
84
- const score = mockScoresData . find ( ( s ) => s . date === id ) ?. value ;
85
- const scoreColor = score ? getScoreColor ( score ) : theme . text ;
86
-
83
+ idle : ( ) => {
87
84
return {
88
85
container : {
89
- backgroundColor : isPressed ? theme . primary : "transparent" ,
86
+ // backgroundColor: isPressed ? theme.highlight : "transparent",
90
87
} ,
91
88
content : {
92
- color : scoreColor ,
93
- // color: isPressed ? theme.background : theme.text,
89
+ // color: scoreColor,
94
90
} ,
95
91
} ;
96
92
} ,
97
- today : ( { isPressed } ) => ( {
93
+ today : ( ) => ( {
98
94
container : {
99
95
borderColor : theme . primary ,
100
96
borderWidth : 1 ,
101
- backgroundColor : isPressed ? theme . primary : "transparent" ,
102
97
padding : 0 ,
103
98
} ,
104
- content : {
105
- color : isPressed ? theme . background : theme . text ,
106
- } ,
99
+ content : { } ,
107
100
} ) ,
108
- active : ( ) => ( {
101
+ active : ( { isToday } ) => ( {
109
102
container : {
110
- backgroundColor : theme . primary ,
103
+ backgroundColor : theme . active ,
111
104
borderTopLeftRadius : DAY_HEIGHT / 2 ,
112
105
borderTopRightRadius : DAY_HEIGHT / 2 ,
113
106
borderBottomLeftRadius : DAY_HEIGHT / 2 ,
114
107
borderBottomRightRadius : DAY_HEIGHT / 2 ,
108
+ borderColor : theme . primary ,
109
+ borderWidth : isToday ? 1 : 0 ,
115
110
} ,
116
- content : {
117
- color : theme . background ,
118
- } ,
111
+ content : { } ,
119
112
} ) ,
120
113
} ,
121
114
} ;
122
115
123
116
return (
124
- < View className = "flex-1 bg-background" >
117
+ < View >
125
118
< Calendar . VStack spacing = { props . calendarRowVerticalSpacing } >
126
119
< Calendar . HStack
127
120
alignItems = "center"
@@ -134,11 +127,7 @@ export function BasicCalendar(props: BasicCalendarProps) {
134
127
size = { "icon" }
135
128
className = "bg-transparent active:opacity-50"
136
129
>
137
- < ChevronLeft
138
- size = { 40 }
139
- strokeWidth = { 1.5 }
140
- className = "text-foreground"
141
- />
130
+ < ChevronLeft size = { 40 } strokeWidth = { 1.5 } color = { theme . text } />
142
131
</ Button >
143
132
< Text style = { calendarTheme . rowMonth ?. content } >
144
133
{ calendarRowMonth . toUpperCase ( ) }
@@ -148,11 +137,7 @@ export function BasicCalendar(props: BasicCalendarProps) {
148
137
size = { "icon" }
149
138
className = "bg-transparent active:opacity-50"
150
139
>
151
- < ChevronRight
152
- className = "text-foreground"
153
- size = { 40 }
154
- strokeWidth = { 1.5 }
155
- />
140
+ < ChevronRight color = { theme . text } size = { 40 } strokeWidth = { 1.5 } />
156
141
</ Button >
157
142
</ Calendar . HStack >
158
143
0 commit comments