makstravm 2 år sedan
förälder
incheckning
f9c45213ab
5 ändrade filer med 9200 tillägg och 95 borttagningar
  1. 41 37
      package.json
  2. 0 38
      src/App.css
  3. 382 20
      src/App.js
  4. 56 0
      src/App.scss
  5. 8721 0
      yarn.lock

+ 41 - 37
package.json

@@ -1,38 +1,42 @@
 {
-  "name": "shop-react",
-  "version": "0.1.0",
-  "private": true,
-  "dependencies": {
-    "@testing-library/jest-dom": "^5.16.1",
-    "@testing-library/react": "^12.1.2",
-    "@testing-library/user-event": "^13.5.0",
-    "react": "^17.0.2",
-    "react-dom": "^17.0.2",
-    "react-scripts": "5.0.0",
-    "web-vitals": "^2.1.2"
-  },
-  "scripts": {
-    "start": "react-scripts start",
-    "build": "react-scripts build",
-    "test": "react-scripts test",
-    "eject": "react-scripts eject"
-  },
-  "eslintConfig": {
-    "extends": [
-      "react-app",
-      "react-app/jest"
-    ]
-  },
-  "browserslist": {
-    "production": [
-      ">0.2%",
-      "not dead",
-      "not op_mini all"
-    ],
-    "development": [
-      "last 1 chrome version",
-      "last 1 firefox version",
-      "last 1 safari version"
-    ]
-  }
-}
+    "name": "shop-react",
+    "version": "0.1.0",
+    "private": true,
+    "dependencies": {
+        "@testing-library/jest-dom": "^5.16.1",
+        "@testing-library/react": "^12.1.2",
+        "@testing-library/user-event": "^13.5.0",
+        "react": "^17.0.2",
+        "react-dom": "^17.0.2",
+        "react-redux": "^7.2.6",
+        "react-scripts": "5.0.0",
+        "redux": "^4.1.2",
+        "redux-thunk": "^2.4.1",
+        "sass": "^1.45.0",
+        "web-vitals": "^2.1.2"
+    },
+    "scripts": {
+        "start": "react-scripts start",
+        "build": "react-scripts build",
+        "test": "react-scripts test",
+        "eject": "react-scripts eject"
+    },
+    "eslintConfig": {
+        "extends": [
+            "react-app",
+            "react-app/jest"
+        ]
+    },
+    "browserslist": {
+        "production": [
+            ">0.2%",
+            "not dead",
+            "not op_mini all"
+        ],
+        "development": [
+            "last 1 chrome version",
+            "last 1 firefox version",
+            "last 1 safari version"
+        ]
+    }
+}

+ 0 - 38
src/App.css

@@ -1,38 +0,0 @@
-.App {
-  text-align: center;
-}
-
-.App-logo {
-  height: 40vmin;
-  pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
-  .App-logo {
-    animation: App-logo-spin infinite 20s linear;
-  }
-}
-
-.App-header {
-  background-color: #282c34;
-  min-height: 100vh;
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-  justify-content: center;
-  font-size: calc(10px + 2vmin);
-  color: white;
-}
-
-.App-link {
-  color: #61dafb;
-}
-
-@keyframes App-logo-spin {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}

+ 382 - 20
src/App.js

@@ -1,25 +1,387 @@
-import logo from './logo.svg';
-import './App.css';
+import logoDefault from './logo.svg';
+import './App.scss';
+import { Provider, connect } from 'react-redux';
+import { createStore, combineReducers, applyMiddleware } from 'redux';
+import thunk from 'redux-thunk';
 
-function App() {
-  return (
-    <div className="App">
-      <header className="App-header">
-        <img src={logo} className="App-logo" alt="logo" />
-        <p>
-          Edit <code>src/App.js</code> and save to reload.
-        </p>
-        <a
-          className="App-link"
-          href="https://reactjs.org"
-          target="_blank"
-          rel="noopener noreferrer"
-        >
-          Learn React
-        </a>
-      </header>
+const jwtDecode = token => {
+    try {
+        let arrToken = token.split('.')
+        let base64Token = atob(arrToken[1])
+        return JSON.parse(base64Token)
+    }
+    catch (e) {
+        console.log('Лажа, Бро ' + e);
+    }
+}
+
+function authReducer(state, { type, token }) {
+    if (!state) {
+        if (localStorage.authToken) {
+            type = 'AUTH_LOGIN'
+            token = localStorage.authToken
+        } else state = {}
+    }
+    if (type === 'AUTH_LOGIN') {
+        localStorage.setItem('authToken', token)
+        let payload = jwtDecode(token)
+        if (typeof payload === 'object') {
+            return {
+                ...state,
+                token,
+                payload
+            }
+        } else return state
+    }
+    if (type === 'AUTH_LOGOUT') {
+        localStorage.removeItem('authToken')
+        return {}
+    }
+    return state
+}
+
+const actionAuthLogin = token => ({ type: 'AUTH_LOGIN', token })
+const actionAuthLogout = () => ({ type: 'AUTH_LOGOUT' })
+
+
+function cartReducer(state = {}, { type, good = {}, count = 1 }) {
+    const { _id } = good
+    const types = {
+        CART_ADD() {
+            count = +count
+            if (!count) return state
+            return {
+                ...state,
+                [_id]: {
+                    good,
+                    count: count + (state[_id]?.count || 0)
+                }
+            }
+        },
+        CART_CHANGE() {
+            count = +count
+            if (!count) return state
+            return {
+                ...state,
+                [_id]: {
+                    good,
+                    count: count
+                }
+            }
+        },
+        CART_REMOVE() {
+            let { [_id]: remove, ...newState } = state
+            return {
+                ...newState
+            }
+        },
+        CART_CLEAR() {
+            return {}
+        },
+    }
+    if (type in types) {
+        return types[type]()
+    }
+    return state
+}
+
+const actionAddCart = (good, count) => ({ type: 'CART_ADD', good, count })
+const actionChangeCart = (good, count) => ({ type: 'CART_CHANGE', good, count })
+const actionRemoveCart = good => ({ type: 'CART_REMOVE', good })
+const actionCleanCart = () => ({ type: 'CART_CLEAR' })
+
+function promiseReducer(state = {}, { type, status, payload, error, name }) {
+    if (type === 'PROMISE') {
+        return {
+            ...state,
+            [name]: { status, payload, error }
+        }
+    }
+    return state;
+}
+
+const actionPending = name => ({ type: 'PROMISE', status: 'PENDING', name })
+const actionResolved = (name, payload) => ({ type: 'PROMISE', status: 'RESOLVED', name, payload })
+const actionRejected = (name, error) => ({ type: 'PROMISE', status: 'REJECTED', name, error })
+
+const actionPromise = (name, promise) =>
+    async dispatch => {
+        dispatch(actionPending(name))
+        try {
+            let data = await promise
+            dispatch(actionResolved(name, data))
+            return data
+        }
+        catch (error) {
+            dispatch(actionRejected(name, error))
+        }
+    }
+
+const getGQL = url =>
+    async (query, variables = {}) => {
+        let obj = await fetch(url, {
+            method: 'POST',
+            headers: {
+                "Content-Type": "application/json",
+                Authorization: localStorage.authToken ? 'Bearer ' + localStorage.authToken : {},
+            },
+            body: JSON.stringify({ query, variables })
+        })
+        let a = await obj.json()
+        if (!a.data && a.errors)
+            throw new Error(JSON.stringify(a.errors))
+        return a.data[Object.keys(a.data)[0]]
+    }
+
+const backURL = 'http://shop-roles.asmer.fs.a-level.com.ua'
+
+const gql = getGQL(backURL + '/graphql');
+
+const actionRootCats = () =>
+    actionPromise('rootCats', gql(`query {
+            CategoryFind(query: "[{\\"parent\\":null}]"){
+                _id name
+            }
+        }`))
+
+const actionCatById = (_id) =>
+    actionPromise('catById', gql(`query catById($q: String){
+            CategoryFindOne(query: $q){
+                subCategories{name, _id}
+                _id name goods {
+                    _id name price images {
+                        url
+                    }
+                }
+            }
+        }`, { q: JSON.stringify([{ _id }]) }))
+
+const store = createStore(combineReducers({
+    promise: promiseReducer,
+    auth: authReducer,
+    cart: cartReducer
+}),
+    applyMiddleware(thunk))
+
+
+store.subscribe(() => console.log(store.getState()))
+store.dispatch(actionRootCats())
+store.dispatch(actionCatById('5dc49f4d5df9d670df48cc64'))
+
+
+
+
+// {
+// const defaultRootCats = [
+//     {
+//         "_id": "5dc49f4d5df9d670df48cc64",
+//         "name": "Airconditions"
+//     },
+//     {
+//         "_id": "5dc458985df9d670df48cc47",
+//         "name": "     Smartphones"
+//     },
+//     {
+//         "_id": "5dc4b2553f23b553bf354101",
+//         "name": "Крупная бытовая техника"
+//     },
+//     {
+//         "_id": "5dcac1b56d09c45440d14cf8",
+//         "name": "Макароны"
+//     }]
+
+
+// const defaultCat = {
+//     "subCategories": null,
+//     "_id": "5dc458985df9d670df48cc47",
+//     "name": "     Smartphones",
+//     "goods": [
+//         {
+//             "_id": "61b105f9c750c12ba6ba4524",
+//             "name": "iPhone ",
+//             "price": 1200,
+//             "images": [
+//                 {
+//                     "url": "images/50842a3af34bfa28be037aa644910d07"
+//                 }
+//             ]
+//         },
+//         {
+//             "_id": "61b1069ac750c12ba6ba4526",
+//             "name": "iPhone ",
+//             "price": 1000,
+//             "images": [
+//                 {
+//                     "url": "images/d12b07d983dac81ccad404582a54d8be"
+//                 }
+//             ]
+//         },
+//         {
+//             "_id": "61b23f94c750c12ba6ba472a",
+//             "name": "name1",
+//             "price": 1214,
+//             "images": [
+//                 {
+//                     "url": null
+//                 }
+//             ]
+//         },
+//         {
+//             "_id": "61b23fbac750c12ba6ba472c",
+//             "name": "smart",
+//             "price": 1222,
+//             "images": [
+//                 {
+//                     "url": "images/871f4e6edbf86c35f70b72dcdebcd8b2"
+//                 }
+//             ]
+//         }
+//     ]
+// }
+
+// const JSONTest = ({ data }) =>
+//     <pre>
+//         {JSON.stringify(data, null, 4)}
+//         {Math.random() > 0.5 && <h1>asdfasf</h1>}
+//     </pre>
+
+// const ReduxJSON = connect(state => ({ data: state }))(JSONTest)
+
+// const ListItem = ({ item }) =>
+//     <li>{item}</li>
+
+// const List = ({ data = ["пиво", "чипсы", "сиги"] }) =>
+//     <ul>
+//         {data.map(item => <ListItem item={item} />)}
+//     </ul>
+// }
+
+//============== RootCategory =================
+
+const RootCategory = ({ cat: { _id, name } = {} }) =>
+    <li>
+        <a href={`#/${_id}`}>{name}</a>
+    </li>
+
+const RootCategories = ({ cats = [] }) =>
+    <ul className='RootCategories'>
+        {cats.map(cat => <RootCategory cat={cat} />)}
+    </ul>
+
+const CRootCategories = connect(state => ({ cats: state.promise.rootCats?.payload || [] }))
+    (RootCategories)
+
+//============== Category =================
+
+const SubCategories = ({ cats }) =>
+    <></>
+
+const GoodCard = ({ good: { _id, name, price, images } = {}, onCartAdd }) =>
+    <div className='GoodCard'>
+        <h2>{name}</h2>
+        {images && images[0] && images[0].url && <img src={backURL + '/' + images[0].url} alt='product img' />}
+        <strong>{price}</strong>
+        <button onClick={() => onCartAdd({ _id, name, price, images })}>+</button>
+    </div>
+
+const CGoodCard = connect(null, { onCartAdd: actionAddCart })(GoodCard)
+
+const Category = ({ cat: { _id, name, goods, subCategories } = {} }) =>
+    <div className='Category'>
+        <h1>{name}</h1>
+        {subCategories && <SubCategories cats={subCategories} />}
+        {(goods || []).map(good => <CGoodCard good={good} />)}
+    </div>
+
+const CCategory = connect(state => ({ cat: state.promise.catById?.payload }))(Category)
+
+
+//============== Cart =================
+
+const CartItem = ({ cartItem: { good, count }, removeCart, onChangeCart }) =>
+    <div className='CartItem'>
+        {good.images && good.images[0] && good.images[0].url && <img src={backURL + '/' + good.images[0].url} alt='productimg'/>}
+        <h4>{good.name}</h4>
+        <span>К-во:<input type='number' value={count} onChange={(e) => onChangeCart(good, e.currentTarget.value)} /></span>
+        <span>Цена: <strong>{good.price * count}</strong></span>
+        <button onClick={() => removeCart(good)}>X</button>
     </div>
-  );
+
+const CCartItem = connect(null, { removeCart: actionRemoveCart, onChangeCart: actionChangeCart })(CartItem)
+
+const Cart = ({ cart, clearCart }) =>
+    <div className='Cart'>
+        <h3>Корзин</h3>
+        {Object.keys(cart).length !== 0 ?
+            <button onClick={() => clearCart()}
+                className='clearBtn'> Очистить корзину</button > : ''}
+        {Object.entries(cart).map(([, cartItem]) => <CCartItem cartItem={cartItem} />)}
+    </div >
+
+const CCart = connect(state => ({ cart: state.cart }), { clearCart: actionCleanCart })(Cart)
+
+//============== Header =================
+const Header = ({ logo = logoDefault }) =>
+    <header>
+        <Logo logo={logo} />
+        <CKoshik />
+    </header>
+const Logo = ({ logo = logoDefault }) =>
+    <a href='#' className="Logo">
+        <img src={logo} alt='logo' alt='logo' />
+    </a>
+
+const Koshik = ({ cart }) => {
+    let count = 0;
+    let sum = Object.entries(cart).map(([, val]) => val.count)
+    count = sum.reduce((a, b) => a + b, 0)
+    return (
+        <div className='Koshik'>{count}</div>
+    )
+}
+
+const CKoshik = connect(({ cart }) => ({ cart }))(Koshik)
+
+//============== Main =================
+
+const Aside = () =>
+    <aside>
+        <CRootCategories />
+    </aside>
+
+const Content = ({ children }) =>
+    <div className='Content'>
+        {children}
+    </div>
+
+const Main = () =>
+    <main>
+        <Aside />
+        <Content>
+            <CCategory />
+        </Content>
+    </main>
+
+//============== Footer =================
+
+const Footer = ({ logo = logoDefault }) =>
+    <footer>
+        <Logo logo={logo} />
+    </footer>
+
+//============== APP =================
+
+function App() {
+    return (
+        <Provider store={store}>
+            <div className="App">
+                <Header />
+                <Main />
+                <CCart />
+                <Footer />
+            </div>
+        </Provider>
+    );
 }
 
 export default App;

+ 56 - 0
src/App.scss

@@ -0,0 +1,56 @@
+.Logo {
+    img {
+        max-height: 100px;
+    }
+}
+.GoodCard {
+    border: 1px solid cyan;
+    border-radius: 15px;
+    img {
+        max-width: 50%;
+    }
+}
+.App {
+    header {
+        .Logo {
+            img {
+                max-height: 100px;
+            }
+        }
+    }
+
+    footer {
+        background-color: #303030;
+        .Logo {
+            img {
+                max-height: 200px;
+            }
+        }
+    }
+
+    main {
+        display: flex;
+        flex-direction: row;
+        aside {
+            width: 30%;
+            background-color: cyan;
+        }
+    }
+}
+.CartItem {
+    padding: 15px 0;
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    img {
+        max-width: 10vw;
+    }
+    input {
+        max-width: 7vw;
+        text-align: center;
+        margin-left: 8px;
+    }
+    button {
+        cursor: pointer;
+    }
+}

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 8721 - 0
yarn.lock