Index.js 13.2 KB
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
import React, { PureComponent } from 'react';
import { 
  StyleSheet, 
  View, 
  Text, 
  Image, 
  TouchableOpacity, 
  TouchableWithoutFeedback, 
  ScrollView 
} from 'react-native';
import _ from 'lodash';
import moment from 'moment';
import solarLunar from 'solarlunar';
import { width, height, zoomW, zoomH } from '../../utils/getSize';

import IMG_CBO1 from '../../assets/chevronBackOutline1.png';
import IMG_CFO1 from '../../assets/chevronForwardOutline1.png';

export default class Calendar extends PureComponent {
  constructor(props) {
    super(props);

    const currentDate = moment().format('YYYY-MM-DD');
    this.state = {
      displayMode: 'month',
      selectMonthOrWeek: currentDate,
      currentDate: currentDate,
    };
  }

  handleLeftActionPress = () => {
    const { displayMode, selectMonthOrWeek } = this.state;
    if (displayMode == 'month') {
      const temp = moment(selectMonthOrWeek).subtract(1, 'months');
      this.setState({ selectMonthOrWeek: temp, });
    } else {
      const temp = moment(selectMonthOrWeek).subtract(1, 'week');
      this.setState({ selectMonthOrWeek: temp, });
    }
  }

  handleRightActionPress = () => {
    const { displayMode, selectMonthOrWeek } = this.state;
    if (displayMode == 'month') {
      const temp = moment(selectMonthOrWeek).add(1, 'months');
      this.setState({ selectMonthOrWeek: temp, });
    } else {
      const temp = moment(selectMonthOrWeek).add(1, 'week');
      this.setState({ selectMonthOrWeek: temp, });
    }
  }

  handleHeaderPress = () => {
    const { displayMode } = this.state;
    if (displayMode == 'month') {
      this.setState({ displayMode: 'week', });
    } else {
      this.setState({ displayMode: 'month', });
    }
  }

  renderHeader = () => {
    return (
      <View style={[styles.calendarHeaderWrap]}>
        <TouchableWithoutFeedback onPress={this.handleLeftActionPress}>
          <View style={[styles.calendarHeaderAction]}>
            {/* <Text style={[styles.actionText]}></Text> */}
            <Image source={IMG_CBO1} style={[styles.actionIcon]} />
          </View>
        </TouchableWithoutFeedback>
        <TouchableWithoutFeedback onPress={this.handleHeaderPress}>
          <View style={[styles.calendarHeaderTitle]}>
            <Text style={[styles.headerTitle]}>{moment(this.state.selectMonthOrWeek).format('YYYY年 MM月')}</Text>
          </View>
        </TouchableWithoutFeedback>
        <TouchableWithoutFeedback onPress={this.handleRightActionPress}>
          <View style={[styles.calendarHeaderAction]}>
            <Image source={IMG_CFO1} style={[styles.actionIcon]} />
          </View>
        </TouchableWithoutFeedback>
    </View>
    );
  }

  getMonthRange = function (startDate, endDate) {
    startDate.subtract(startDate.day(), 'd'); // 第一行的第一列
    endDate.add(6 - endDate.day(), 'd');      // 最后一行的最后一列

    // 计算一共有几周
    const weekLength = Math.ceil(endDate.diff(startDate, 'd') / 7);
    const monthRange = _.map(_.range(weekLength), () => []);

    let index = 0;
    while (endDate.isAfter(startDate)) {
      const length = monthRange[index].push(startDate.format('YYYY-MM-DD'));
      if (!(length % 7)) {
        index++;
      }

      startDate.add(1, 'd');
    }

    return monthRange;
  }

  getWeekRange = function (startDate, endDate) {
    const weekRange = [];
    
    while (endDate.isAfter(startDate)) {
      weekRange.push(startDate.format('YYYY-MM-DD'));
      startDate.add(1, 'd');
    }

    return weekRange;
  }

  getRangeByMode = () => {
    const { selectMonthOrWeek, displayMode } = this.state;
    let startDate, endDate;
    if (displayMode == 'month') {
      startDate = moment(selectMonthOrWeek).startOf('month'); // 当前月第一天
      endDate = moment(selectMonthOrWeek).endOf('month');     // 当前月最后一天
      return this.getMonthRange(startDate, endDate);
    } else {
      startDate = moment(selectMonthOrWeek).startOf('week'); // 当前周第一天
      endDate = moment(selectMonthOrWeek).endOf('week');     // 当前周最后一天
      return this.getWeekRange(startDate, endDate);
    }
  }

  handleDaySelect = (date) => {
    const { onDaySelected } = this.props;

    this.setState({ selectMonthOrWeek: date, currentDate: date, });
    if (onDaySelected) {
      onDaySelected(date);
    }
  }

  getLunar = (date) => {
    const temp = moment(date);
    const year = temp.format('YYYY');
    const month = temp.format('MM');
    const day = temp.format('DD');
    const lunarDate = solarLunar.solar2lunar(year, month, day);
    return lunarDate.term || lunarDate.dayCn;
  }

  renderDay = (date) => {
    const { selectMonthOrWeek, currentDate, displayMode } = this.state;

    const selectYear = moment(selectMonthOrWeek).year();
    const selectMonth = moment(selectMonthOrWeek).month();
    const selectWeek = moment(selectMonthOrWeek).week();
    const currentDateYear = moment(currentDate).year();
    const currentDateMonth = moment(currentDate).month();
    const currentDateWeek = moment(currentDate).week();
    const tempYear = moment(date).year();
    const tempMonth = moment(date).month();
    const tempWeek = moment(date).week();

    // console.log(`selectMonth: ${selectMonth}`)
    // console.log(`selectWeek: ${selectWeek}`)
    // console.log(`currentDateMonth: ${currentDateMonth}`)
    // console.log(`currentDateWeek: ${currentDateWeek}`)
    // console.log(`tempMonth: ${tempMonth}`)
    // console.log(`tempWeek: ${tempWeek}`)


    if ((displayMode == 'month' && selectYear == currentDateYear && selectMonth == currentDateMonth) || 
        (displayMode == 'week' && selectYear == currentDateYear && selectWeek == currentDateWeek)) {
      
      // 当前选中日期
      const temp = moment(currentDate).isSame(date, 'day');
      if (temp === true) {
        return (
          <TouchableWithoutFeedback key={date} onPress={() => this.handleDaySelect(date)}>
            <View style={[styles.weekItem]}>
              <View style={[styles.dayItem, styles.daySelected2]}>
                <Text style={[styles.dayText, styles.dayTextSelected2]}>
                  {moment(date).format('D')}
                </Text>
              </View>
              <Text style={[styles.lunarText]}>{this.getLunar(date)}</Text>
            </View>
          </TouchableWithoutFeedback>
        );
      }
    }

    if ((displayMode == 'month' && selectYear == tempYear && selectMonth == tempMonth) || 
        (displayMode == 'week' && selectYear == tempYear && selectWeek == tempWeek)) {
      
      const { markedDates } = this.props;
      if (markedDates && markedDates.length > 0) {
        for (let i = 0; i < markedDates.length; i++) {
          const item = markedDates[i];
          const temp1 = moment(item).isSame(date, 'day');
          if (temp1 == true) {
            return (
              <TouchableWithoutFeedback key={date} onPress={() => this.handleDaySelect(date)}>
                <View style={[styles.weekItem]}>
                  <View style={[styles.dayItem, styles.daySelected]}>
                    <Text style={[styles.dayText, styles.dayTextSelected]}>
                      {moment(date).format('D')}
                    </Text>
                  </View>
                  <Text style={[styles.lunarText]}>{this.getLunar(date)}</Text>
                </View>
              </TouchableWithoutFeedback>
            );
          }
        }
      }
    } else {

      const { markedDates } = this.props;
      if (markedDates && markedDates.length > 0) {
        for (let i = 0; i < markedDates.length; i++) {
          const item = markedDates[i];
          const temp1 = moment(item).isSame(date, 'day');
          if (temp1 == true) {
            return (
              <TouchableWithoutFeedback key={date} onPress={() => this.handleDaySelect(date)}>
                <View style={[styles.weekItem]}>
                  <View style={[styles.dayItem, styles.daySelected]}>
                    <Text style={[styles.dayText, styles.dayTextSelected]}>
                      {moment(date).format('D')}
                    </Text>
                  </View>
                  <Text style={[styles.lunarText]}>{this.getLunar(date)}</Text>
                </View>
              </TouchableWithoutFeedback>
            );
          }
        }
      }
      
      return (
        <TouchableWithoutFeedback key={date} onPress={() => this.handleDaySelect(date)}>
          <View style={[styles.weekItem]}>
            <View style={[styles.dayItem]}>
              <Text style={[styles.dayText, styles.dayText2]}>
                {moment(date).format('D')}
              </Text>
            </View>
            <Text style={[styles.lunarText]}>{this.getLunar(date)}</Text>
          </View>
        </TouchableWithoutFeedback>
      );
    }

    return (
      <TouchableWithoutFeedback key={date} onPress={() => this.handleDaySelect(date)}>
        <View style={[styles.weekItem]}>
          <View style={[styles.dayItem]}>
            <Text style={[styles.dayText]}>
              {moment(date).format('D')}
            </Text>
          </View>
          <Text style={[styles.lunarText]}>{this.getLunar(date)}</Text>
        </View>
      </TouchableWithoutFeedback>
    );
  }

  renderRow = (weekRange, weekIndex) => {
    let elements;
    if (weekRange && weekRange.length > 0) {
      elements = weekRange.map((date) => this.renderDay(date));
    }

    return (
      <View key={weekIndex} style={[styles.weekRow]}>
        {elements}
      </View>
    );
  }

  renderRange = () => {
    const { displayMode } = this.state;

    let elements;
    const range = this.getRangeByMode();

    if (displayMode == 'month') {
      if (range && range.length > 0) {
        elements = range.map((weekRange, weekIndex) => this.renderRow(weekRange, weekIndex));
      }
    } else {
      if (range && range.length > 0) {
        const dayItems = range.map((date) => this.renderDay(date));
        elements = (
          <View key={0} style={[styles.weekRow]}>
            {dayItems}
          </View>
        );
      }
    }

    return elements;
  }

  render() {
    const { displayMode } = this.state;
    return (
      <View style={[styles.calendarWrap]}>
        {this.renderHeader()}
        { displayMode == 'month' ?
          <View style={[styles.weekTitleWrap]}>
            <Text style={[styles.weekTitleText]}>周日</Text>
            <Text style={[styles.weekTitleText]}>周一</Text>
            <Text style={[styles.weekTitleText]}>周二</Text>
            <Text style={[styles.weekTitleText]}>周三</Text>
            <Text style={[styles.weekTitleText]}>周四</Text>
            <Text style={[styles.weekTitleText]}>周五</Text>
            <Text style={[styles.weekTitleText]}>周六</Text>
          </View> : 
          <View style={[styles.weekTitleWrap]}>
            <Text style={[styles.weekTitleText]}>周一</Text>
            <Text style={[styles.weekTitleText]}>周二</Text>
            <Text style={[styles.weekTitleText]}>周三</Text>
            <Text style={[styles.weekTitleText]}>周四</Text>
            <Text style={[styles.weekTitleText]}>周五</Text>
            <Text style={[styles.weekTitleText]}>周六</Text>
            <Text style={[styles.weekTitleText]}>周日</Text>
          </View> }
        <View style={[styles.range]}>
          {this.renderRange()}
        </View>
      </View>
    )
  }
}

const styles = StyleSheet.create({
  calendarWrap: {
    display: 'flex',
    flexDirection: 'column',
    paddingTop: 10 / zoomH,
    paddingBottom: 10 / zoomH,
    // borderColor: '#f3f3f3',
    // borderWidth: 1,
  },
  calendarHeaderWrap: {
    display: 'flex',
    flexDirection: 'row',
    height: 40 / zoomH,
    paddingBottom: 4 / zoomH,
    borderBottomColor: '#f3f3f3',
    borderBottomWidth: 1,
  },
  calendarHeaderTitle: {
    display: 'flex',
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    height: '100%',
  },
  headerTitle: {
    color: '#333',
    fontSize: 18,
    fontWeight: '500',
  },
  calendarHeaderAction: {
    justifyContent: 'center',
    alignItems: 'center',
    width: 50 / zoomH,
    height: '100%',
  },
  actionText: {
    color: '#666',
    fontSize: 15,
  },
  actionIcon: {
    width: 22 / zoomW,
    height: 22 / zoomH,
  },
  weekTitleWrap: {
    display: 'flex',
    flexDirection: 'row',
    height: 32 / zoomH,
  },
  weekTitleText: {
    flex: 1,
    color: '#666',
    fontSize: 12,
    fontWeight: '500',
    alignSelf: 'center',
    textAlign: 'center',
    textAlignVertical: 'center',
  },
  weekWrap: {
    display: 'flex',
    flexDirection: 'column',
  },
  weekRow: {
    display: 'flex',
    flexDirection: 'row',
    height: 52 / zoomH,
  },
  weekItem: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    height: '100%',
  },
  dayItem: {
    justifyContent: 'center',
    alignItems: 'center',
    width: 30,
    height: 30,
  },
  daySelected: {
    borderWidth: 1,
    borderColor: '#e02021',
    borderRadius: 15,
  },
  daySelected2: {
    backgroundColor: '#404040',
    borderRadius: 15,
  },
  dayText: {
    color: '#666',
    fontSize: 15,
  },
  dayText2: {
    color: '#b3b3b3',
    fontSize: 14,
  },
  dayTextSelected: {
    color: '#e02021',
    // fontWeight: '500',
  },
  dayTextSelected2: {
    color: '#ffffff',
    fontWeight: '500',
  },
  lunarText: {
    marginTop: 2 / zoomH,
    color: '#666',
    fontSize: 11,
  },
});