goodCard.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import { connect } from "react-redux";
  2. import {gql, urlUpload, actionPromise} from "../reducers";
  3. import {createStore, combineReducers, applyMiddleware, bindActionCreators} from 'redux';
  4. import { useEffect, useState } from 'react';
  5. import {BrowserRouter as Router, Route, Link, Switch, Redirect, useHistory} from 'react-router-dom';
  6. const actionGoodCard = (_id) => {
  7. const queryJson = JSON.stringify([{
  8. "_id": `${_id}`
  9. }]);
  10. return (actionPromise(`goodCard`, gql (
  11. `query oneGood($query: String) {
  12. GoodFindOne(query: $query) {
  13. _id
  14. createdAt
  15. name
  16. description
  17. price
  18. images{url}
  19. }
  20. }
  21. ` ,{ query: queryJson})))
  22. }
  23. const mapStateToProps = state => ({
  24. state: state,
  25. goodCard: getGood(state, "goodCard")
  26. });
  27. const mapDispatchToProps = dispatch => bindActionCreators({
  28. getData: actionGoodCard
  29. }, dispatch);
  30. const getGood = (state, key) => {
  31. if(state.promiseRed[key] && state.promiseRed[key].payload) {
  32. return state.promiseRed[key].payload.data.GoodFindOne
  33. }
  34. return null;
  35. };
  36. const GoodCard = ({id, goodCard = null, getData, className = "goodCard"}) => {
  37. const history = useHistory();
  38. useEffect(() => getData(id), [id]);
  39. const [width, setWidth] = useState(window.innerWidth);
  40. const [startWidth, setStartwidth] = useState(true);
  41. const [finallyWidth, setFinallyWidth] = useState(true);
  42. useEffect(() => startWidth !== finallyWidth && window.location.reload(), [startWidth, finallyWidth])
  43. window.onresize = () => {
  44. width > 900 ? setStartwidth(true) : setStartwidth(false);
  45. setWidth(window.innerWidth);
  46. width > 900 ? setFinallyWidth(true) : setFinallyWidth(false);
  47. // startWidth !== finallyWidth && history.push("./catalog")
  48. }
  49. return(
  50. <>
  51. { goodCard &&
  52. <div className = {className}>
  53. <h2>{goodCard.name}</h2>
  54. <img src = {goodCard.images ? `${urlUpload}/${goodCard.images[0].url}`: `https://images.ua.prom.st/2259265311_korobka-syurpriz-dlya.jpg`}/>
  55. <span>{`${goodCard.price}грн`}</span>
  56. <p>{goodCard.description}</p>
  57. </div>
  58. }
  59. </>
  60. )
  61. }
  62. const CGoodCard = connect(mapStateToProps, mapDispatchToProps)(GoodCard)
  63. export default CGoodCard;