UNPKG

zy-react-native-calendars

Version:
120 lines (106 loc) 3.53 kB
import React, {Component} from 'react'; import {TouchableOpacity, Text, View} from 'react-native'; import PropTypes from 'prop-types'; import {shouldUpdate} from '../../../component-updater'; import styleConstructor from './style'; class Day extends Component { static displayName = 'IGNORE'; static propTypes = { // TODO: disabled props should be removed state: PropTypes.oneOf(['disabled', 'today', '']), // Specify theme properties to override specific styles for calendar parts. Default = {} theme: PropTypes.object, marking: PropTypes.any, onPress: PropTypes.func, onLongPress: PropTypes.func, date: PropTypes.object }; constructor(props) { super(props); this.style = styleConstructor(props.theme); this.onDayPress = this.onDayPress.bind(this); this.onDayLongPress = this.onDayLongPress.bind(this); } onDayPress() { this.props.onPress(this.props.date); } onDayLongPress() { this.props.onLongPress(this.props.date); } shouldComponentUpdate(nextProps) { return shouldUpdate(this.props, nextProps, ['state', 'children', 'marking', 'onPress', 'onLongPress']); } renderPeriods(marking) { const baseDotStyle = [this.style.dot, this.style.visibleDot]; if ( marking.periods && Array.isArray(marking.periods) && marking.periods.length > 0 ) { // Filter out dots so that we we process only those items which have key and color property const validPeriods = marking.periods.filter(d => d && d.color); return validPeriods.map((period, index) => { const style = [ ...baseDotStyle, { backgroundColor: period.color } ]; if (period.startingDay) { style.push({ borderTopLeftRadius: 2, borderBottomLeftRadius: 2, marginLeft: 4 }); } if (period.endingDay) { style.push({ borderTopRightRadius: 2, borderBottomRightRadius: 2, marginRight: 4 }); } return <View key={index} style={style}/>; }); } return; } render() { const containerStyle = [this.style.base]; const textStyle = [this.style.text]; const marking = this.props.marking || {}; const periods = this.renderPeriods(marking); const isDisabled = typeof marking.disabled !== 'undefined' ? marking.disabled : this.props.state === 'disabled'; if (marking.selected) { containerStyle.push(this.style.selected); textStyle.push(this.style.selectedText); } else if (isDisabled) { textStyle.push(this.style.disabledText); } else if (this.props.state === 'today') { containerStyle.push(this.style.today); textStyle.push(this.style.todayText); } return ( <View style={{alignSelf: 'stretch'}}> <TouchableOpacity testID={this.props.testID} style={containerStyle} onPress={this.onDayPress} onLongPress={this.onDayLongPress} disabled={marking.disableTouchEvent} accessible accessibilityRole={isDisabled ? undefined : 'button'} accessibilityLabel={this.props.accessibilityLabel} > <Text allowFontScaling={false} style={textStyle}> {String(this.props.children)} </Text> </TouchableOpacity> <View style={{alignSelf: 'stretch'}}> {periods} </View> </View> ); } } export default Day;