1

在尝试制作演示预约系统时,我遇到了一个奇怪的情况。我想通过 Django 后端 rest api 获取事件,它工作得很好,我也可以看到控制台中的数据。

这是我的索引文件(提供者所在的位置): https ://hastebin.com/ubefumofor.js

我的日历渲染组件: https ://hastebin.com/oronefibap.scala

我的 Redux,我正在使用它的 reduxsauce 库: https ://hastebin.com/usetavasub.js

我的 ReduxSaga 文件: https ://hastebin.com/wutuvelefi.js

现在,问题是,在获取事件后,我正在努力做一些事情:

  • 如果我在 componentWillUpdate 或 componentDidUpdate 中调用它,它会在哪里设置状态?

  • 如果我使用 this.props.events,我会收到以下错误,我已将其作为图片附加。它说uncaught at fetchEventsByDoctor The sort method cannot be invoked on an Immutable data structure. 在此处输入图像描述

现在我知道道具不能修改,状态可以。

有什么建议可能是错的吗?谢谢

注意:我是 react 和 redux 相关技术的新手。 在此处输入图像描述


解决方案


componentDidUpdate(prevProps, prevState){

if(prevProps.events !== this.props.events) {

     let a = this.state.events.slice();
     let p = this.props.events
     for(var i = 0; i < p.length; i++ ){
         a[a.length] = p[i]

     }
     this.setState({events: a})



   }
  }

这应该可以解决问题,但下面 Nagaraj 的回答也是一个很好的工作解决方案。

4

1 回答 1

1

我在您的 js 文件中更改了一些内容:

  1. 始终使用 setState 函数来改变状态,不要直接改变状态元素,比如this.state.events.push(..直接更新状态,这是错误的。
  2. 用于componentWillReceiveProps检查,如果nextProps收到的新 props ( ) 与旧 props ( this.props) 不同,则只有setState. 通常,当fetchEvent触发动作时,将事件设置为未定义,当您获得响应时,将其设置回 api 响应,在这种情况下您可以使用:

像:

if (!this.props.events && nextProps.events) {
  this.setState({ events: nextProps.events });
}

日历文件:

import React from 'react';
import ReactDOM from 'react-dom';
import BigCalendar from 'react-big-calendar';
import events from './events';
import moment from 'moment';
import {
  ButtonGroup,
  Button,
  Modal,
  Form,
  FieldGroup,
  FormGroup,
  ControlLabel,
  FormControl,
  HelpBlock,
  Alert,
  OverlayTrigger,
  Popover
} from 'react-bootstrap';
import DateTime from 'react-datetime';
import {
  connect
} from 'react-redux';
import AppointmentActions from './Redux/AppointmentRedux';
import EventComponent from './Components/EventComponent';
import Halogen = require('halogen');


BigCalendar.setLocalizer( BigCalendar.momentLocalizer(moment) );

class Calendar extends React.Component {
  props: {
    handleAddCity: () => void,
    bookAppointmentForDoctor: () => void,
    fetchEvents: () => void,
    events: null
  }

  constructor(props) {
    super(props);
    this.state = {
      date: new Date(),
      events: props.events,
      fromDate: null,
      toDate: new Date(),
      forValue: 15,
      showAddFormModal: false,
      hours: 12,
      minutes: 20,
      enabled: true,
      showNameError: '',
      showFromDateError: ''
    };
    console.log(this.props)
  }

  handleSelect(info) {
    console.log(info.start.toLocaleString())
  }

  onClick() {
    // Create a copy of the object before you change the state
    let events = this.state.events.slice();
    events.push({
      'title': 'some Party',
      'start': new Date(2017, 3, 15, 7, 0, 0).toLocaleString(),
      'end': new Date(2017, 3, 16, 10, 30, 0).toLocaleString()
    });
    this.setState({ events });
  }

  open() {
    this.setState({ showAddFormModal: true });
  }

  close() {
    this.setState({ showAddFormModal: false });
  }

  handleFromDateTimeChange(newDate) {
    return this.setState({ fromDate: newDate });
  }

  handleToDateTimeChange(newDate) {
    return this.setState({ toDate: newDate });
  }

  handleEventSelect(event, _this) {
    return (<Popover id="popover-positioned-right" title="Popover right">
        <strong>Holy guacamole!</strong> Check this info.
      </Popover>);
  }

  handleMinutesSelect(_this) {
    this.setState({ forValue: _this.target.value });
  }

  handleAddSubmitButton() {
    var flag = true
    const nameValue = ReactDOM.findDOMNode(this.refs.name).value;
    if (nameValue === '') {
      this.setState({ showNameError: "Please input a name. " });
      flag = false;
    }

    if (this.state.fromDate === null) {
      this.setState({ showFromDateError: 'Please input right date and time' });
      flag = false;
    }

    const fromDate = new Date(this.state.fromDate).toLocaleString();
    const toDate = moment(fromDate).add(this.state.forValue, 'm');
    const newToDate = new Date(toDate).toLocaleString();

    console.log(nameValue, this.state.forValue, fromDate, newToDate);

    // Create a copy of the object before you change the state
    let events = this.state.events.slice();
    events.push({
      'title': nameValue,
      'start': new Date(fromDate),
      'end': new Date(newToDate),
      'hexColor': '#FF5722',
    });

    if (flag) {
      this.props.bookAppointmentForDoctor(3, nameValue, new Date(fromDate), new Date(newToDate))
      this.setState({ showAddFormModal: false });
    }
  }

  eventStyleGetter(event, start, end, isSelected) {
    var backgroundColor = event.hexColor;

    var style = {
      backgroundColor: backgroundColor,
      borderRadius: '0px',
      opacity: 0.8,
      color: 'black',
      border: '0px',
      display: 'block'
    };

    return { style: style };
  }

  componentDidMount() {
    this.props.fetchEvents(1);
  }

  componentWillReceiveProps(nextProps) {
    let oldEvents = this.props.events;
    let newEvents = nextProps.events;

    // Check here if only newEvents is different than oldEvents and update state.
    // Like always set events as undefined if ajax request starts and set it back
    // Once you receive the data
    // if (newEvents <---> oldEvents ??? ) {
      this.setState({ events });
    // }
  }

  render() {
    let { hours, minutes, enabled } = this.state;

    if (this.props.fetching) {
      return (<h1>loading.....</h1>)
    }

    if (this.state.events !== null) {

      return (
        <div style={{height: 580}}>
          <h3 className="callout">Book appointment and events here.</h3>
          <BigCalendar
            selectable
            popup
            events={this.state.events}
            height={500}
            defaultView='month'
            scrollToTime={new Date(1970, 1, 1, 6)}
            defaultDate={new Date()}
            onSelectEvent={(event, e) => this.handleEventSelect(event, e)}
            onSelectSlot={(slotInfo) => this.handleSelect(slotInfo)}
            eventPropGetter={(event) => this.eventStyleGetter(event)}
            components={{
                toolbar: this.CustomToolbar,
                event: EventComponent,
              }} 
            />

          <Button
            bsStyle="primary"
            bsSize="small"
            onClick={this.open.bind(this)}>
            Add appointment
          </Button>

          <Modal show={this.state.showAddFormModal} onHide={this.close.bind(this)}>
              <Modal.Header closeButton>
                  <Modal.Title>Add Appointment</Modal.Title>
              </Modal.Header>
                  <Modal.Body>
                    <form>
                         <FormGroup bsSize="large">
                            <FormControl type="text" placeholder="Enter Name" ref="name"/>{this.state.showNameError}
                          </FormGroup>
                       <FormGroup>
                          <ControlLabel>From (Date and Time)</ControlLabel>
                          <DateTime onChange={this.handleFromDateTimeChange.bind(this)}/>
                          { this.state.showFromDateError }
                          <HelpBlock>Please choose Date and Time of from when you want the appointment from,
                            both could be done using the same widget.</HelpBlock>
                        </FormGroup>
                       <FormGroup controlId="formControlsSelect">
                           <ControlLabel>For a period of</ControlLabel>
                           <FormControl componentClass="select" onChange={this.handleMinutesSelect.bind(this)} value={this.state.forValue}>
                              <option value="15">15 minutes</option>
                              <option value="30">30 minutes</option>
                              <option value="45">45 minutes</option>
                              <option value="60">60 minutes</option>
                              <option value="90">90 minutes</option>
                              <option value="120">2 hours</option>
                           </FormControl>
                       </FormGroup>

                      <Button type="button" onClick={this.handleAddSubmitButton.bind(this)}>
                          Submit
                      </Button>
                    </form>
              </Modal.Body>
          </Modal>
        </div>
      )
    }

    return (<h1>loading....</h1>);
  }
}


const mapStateToProps = (state) => {
  return {
    city: state.appointment.city,
    events: state.appointment.events,
    fetching: state.appointment.fetching,
  }
}

const mapDispatchToProps = (dispatch) => {
  return {
    handleAddCity: (city) => dispatch(AppointmentActions.setUserCity(city)),
    bookAppointmentForDoctor: (doctor_id, customer_name, from_date, to_date) =>
      dispatch(AppointmentActions.bookAppointmentForDoctor(doctor_id, customer_name, from_date, to_date)),
    fetchEvents: (doctor_id) =>
      dispatch(AppointmentActions.fetchEventsByDoctor(doctor_id))
  }
}

export default connect(mapStateToProps, mapDispatchToProps)(Calendar)
于 2017-05-22T16:22:51.067 回答