Xử lí upload file trong react

Chào mọi người, em đang học reactjs của anh nghiepuit. Tới đây, em muốn thêm upload file, nhưng mà khi chọn hình là nó lại đứng, em log ra được tên file rồi ạ mà không set được, không biết em xử lý sai chỗ nào, mong mọi người giúp đỡ với ạ. Em xin cảm ơn anh chị đã đọc ạ

import React from 'react';

class TaskForm extends React.Component {
  constructor(props) {
    super(props);
    this.state = {  
      //tại vì taskEditing có thuộc tính id nên tạo id
      id: '',
      name: '',
      description: '',
      imageTodo: '',
      //cho mặc định là ẩn
      status: false
    }
  }

  onCloseForm = () => {
    //tên props của thằng cha truyền xuống
    this.props.onCloseForm();
  }

  onChange = event => {
    let target = event.target;
    let name = target.name;
    let value = target.value;
    if(name === 'status') {
      value = target.value === 'true' ? true : false
    }
    this.setState({
      [name]: value
    })
  }

  handleChange = event => {
    this.setState({
      ...this.state,
      [event.target.name]: event.target.files[0].name
    })
    console.log(event.target.name);
  }

  onClear = () => {
    this.setState({
      name: '',
      status: false
    })
  }

  onSubmit = event => {
    //ngăn reload lại trang
    event.preventDefault();
    //truyền qua thằng cha
    if(this.state.name !== "") {
      this.props.onSubmit(this.state)
    }
    //submit xong sẽ hủy bỏ và lưu form
    this.onClear();
  }

  componentDidMount() {
    let { task } = this.props;
    if(task) {
      this.setState({
        id: task.id,
        name: task.name,
        status: task.status
      })
    }
  }

  componentWillReceiveProps(nextProps) {
    // console.log(nextProps);
    // console.log(nextProps.task);
    if (nextProps && nextProps.task) {
        this.setState({
            id: nextProps.task.id,
            name: nextProps.task.name,
            status: nextProps.task.status,
        });
    } else if (!nextProps.task) {
        this.setState({
            id: "",
            name: "",
            status: false,
        });
    }
}

  render() { 
    let { id } = this.state;
    return (  
        <div className="card">
            <h4 className="card-header">
                { id !== '' ? 'Sửa công việcc' : 'Thêm công việc' }
                <span className="fa fa-times-circle pl-84 " 
                      aria-hidden="true"
                                  //tên function của thằng này đặt
                      onClick = { this.onCloseForm }></span>
            </h4>
            <div className="card-body">
              {/* Type của button phải là submit */}
              <form onSubmit= { this.onSubmit }>
                <div className="form-group">
                <label>Tên :</label>
                <input type="text" 
                       className="form-control"
                       name = "name" 
                       value= { this.state.name }
                       onChange = { this.onChange }
                       />
                </div>
                <div className="form-group">
                <label>Chọn hình đi anh trai :</label>
                <input className="form-control"
                       type="file"
                       name = "imageTodo" 
                       value= { this.state.imageTodo }
                       onChange = { this.handleChange }
                       />
                </div>
                <label>Trạng Thái :</label>
                <select className="form-control" 
                        required="required"
                        name="status"
                        value= { this.state.status }
                        onChange= { this.onChange }>
                    <option value={ true }>Kích Hoạt</option>
                    <option value={ false }>Ẩn</option>
                </select>
                <br />
                <div className="text-center">
                    <button type="submit" className="btn btn-warning text-white">
                    <span className="fa fa-plus mr-2 "></span>Lưu lại</button>&nbsp;
                    <button type="submit" 
                            className="btn btn-danger"
                            onClick= { this.onClear }>
                    <span className="fa fa-times mr-2"></span>Hủy Bỏ</button>
                </div>
              </form>
            </div>
        </div>
    );
  }
}
 
export default TaskForm;

Sau khi em upload và bên này hiện ra, nhưng mà khi f5 lại lần nữa thì nó lỗi, ai giúp em với

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?