import React, { Component } from 'react'; import { getUsersDataById, deleteStaffById } from "../actions/getUserById" import { Link } from "react-router-dom"; import { Icon } from 'antd'; import { connect } from 'react-redux'; import { bindActionCreators } from "redux"; import Header from '../container/Header' import { stat } from 'fs'; class activeStaffs extends Component { componentDidUpdate(prevProps){ if(prevProps.del !== this.props.del){ const { getUsersDataById } = this.props let localS = JSON.parse(localStorage.getItem("login")); if (localS === null) { } else { getUsersDataById(localS) } } } componentDidMount() { const { getUsersDataById } = this.props let localS = JSON.parse(localStorage.getItem("login")); if (localS === null) { } else { getUsersDataById(localS) } } deleteStaff = (id) => { const { deleteStaffById } = this.props var qs = require("querystring"); var http = require("http"); var options = { "method": "DELETE", "hostname": [ "127.0.0.1:2000/api/staffs" ], "headers": { "Content-Type": "application/x-www-form-urlencoded", "cache-control": "no-cache", "mode":'cors' } }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function () { var body = Buffer.concat(chunks); deleteStaffById(body.toString()); }); }); req.write(qs.stringify({ id: `${id}`, undefined: undefined })); req.end(); } render() { const { getUser } = this.props const { name, id, del } = this.props const { staffs } = getUser return (
{staffs !== undefined && staffs.reverse().map((el, key) =>
{el.state ? lorem : lorem}

{el.title}

Цена: {el.price}

)}
); } } const mapStateToProps = state => ({ getUser: state.getUserById.getUser, params: state.getUserById.params, del: state.getUserById.del }); const mapDispatchToProps = dispatch => bindActionCreators({ getUsersDataById, deleteStaffById }, dispatch); export default activeStaffs = connect( mapStateToProps, mapDispatchToProps )(activeStaffs);