123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- import { useState } from 'react';
- import './App.css';
- import thunk from 'redux-thunk';
- import {createStore, combineReducers, applyMiddleware} from 'redux';
- import { Provider, connect } from 'react-redux';
- const store = createStore(combineReducers({
- auth: authReducer,
- promise: promiseReducer,
- cart: localStoreReducer(cartReducer, "cart")
- }), applyMiddleware(thunk))
- function jwtDecode(token) {
- try {
- return JSON.parse(atob(token.split('.')[1]))
- }
- catch (e) {
- }
- }
- function authReducer(state = {}, { type, token }) {
- //{
- // token, payload
- //}
- if (type === 'AUTH_LOGIN') {
- //пытаемся токен раскодировать
- const payload = jwtDecode(token)
- if (payload) { //и если получилось
- return {
- token, payload //payload - раскодированный токен;
- }
- }
- }
- if (type === 'AUTH_LOGOUT') {
- return {}
- }
- return state;
- }
- function countReducer(state = { count: 0 }, { type }) {
- if (type === "COUNT_INC") {
- return {
- count: state.count + 1
- }
- }
- if (type === "COUNT_DEC") {
- return {
- count: state.count - 1
- }
- }
- return state
- }
- function localStoreReducer(reducer, localStorageKey) {
- function localStoredReducer(state, action) {
- // Если state === undefined, то достать старый state из local storage
- if (state === undefined) {
- try {
- return JSON.parse(localStorage[localStorageKey])
- } catch (e) { }
- }
- const newState = reducer(state, action)
- // Сохранить newState в local storage
- localStorage[localStorageKey] = JSON.stringify(newState)
- return newState
- }
- return localStoredReducer
- }
- function promiseReducer(state = {}, { type, name, status, payload, error }) {
- ////?????
- //ОДИН ПРОМИС:
- //состояние: PENDING/FULFILLED/REJECTED
- //результат
- //ошибка:
- //{status, payload, error}
- //{
- // name1:{status, payload, error}
- // name2:{status, payload, error}
- // name3:{status, payload, error}
- //}
- if (type === 'PROMISE') {
- return {
- ...state,
- [name]: { status, payload, error }
- }
- }
- return state
- }
- const actionPending = (name) => ({
- type: 'PROMISE',
- status: 'PENDING',
- name
- })
- const actionFulfilled = (name, payload) => ({
- type: 'PROMISE',
- status: 'FULFILLED',
- name,
- payload
- })
- const actionRejected = (name, error) => ({
- type: 'PROMISE',
- status: 'REJECTED',
- name,
- error
- })
- const actionPromise = (name, promise) =>
- async dispatch => {
- try {
- dispatch(actionPending(name))
- let payload = await promise
- dispatch(actionFulfilled(name, payload))
- return payload
- }
- catch (e) {
- dispatch(actionRejected(name, e))
- }
- }
- // const delay = ms => new Promise(ok => setTimeout(() => ok(ms), ms))
- // function combineReducers(reducers) { //пачку редьюсеров как объект {auth: authReducer, promise: promiseReducer}
- // function combinedReducer(combinedState = {}, action) { //combinedState - типа {auth: {...}, promise: {....}}
- // const newCombinedState = {}
- // for (const [reducerName, reducer] of Object.entries(reducers)) {
- // const newSubState = reducer(combinedState[reducerName], action)
- // if (newSubState !== combinedState[reducerName]) {
- // newCombinedState[reducerName] = newSubState
- // }
- // }
- // if (Object.keys(newCombinedState).length === 0) {
- // return combinedState
- // }
- // return { ...combinedState, ...newCombinedState }
- // }
- // return combinedReducer //нам возвращают один редьюсер, который имеет стейт вида {auth: {...стейт authReducer-а}, promise: {...стейт promiseReducer-а}}
- // }
- function cartReducer(state = {}, { type, count = 1, good }) {
- // type CART_ADD CART_REMOVE CART_CLEAR CART_DEL
- // {
- // id1: {count: 1, good: {name, price, images, id}}
- // }
- if (type === "CART_ADD") {
- return {
- ...state,
- [good._id]: { count: count + (state[good._id]?.count || 0), good },
- };
- }
- if (type === "CART_DELETE") {
- if (state[good._id].count > 1) {
- return {
- ...state,
- [good._id]: {
- count: -count + (state[good._id]?.count || 0),
- good,
- },
- };
- }
- if (state[good._id].count === 1) {
- let { [good._id]: id1, ...newState } = state; //o4en strashnoe koldunstvo
- //delete newState[good._id]
- return newState;
- }
- }
- if (type === "CART_CLEAR") {
- return {};
- }
- if (type === "CART_REMOVE") {
- // let newState = {...state}
- let { [good._id]: id1, ...newState } = state; //o4en strashnoe koldunstvo
- //delete newState[good._id]
- return newState;
- }
- return state;
- }
- const backendURL = 'http://shop-roles.node.ed.asmer.org.ua/'
- const getGQL = (url) => (query, variables) =>
- fetch(url, {
- method: "POST",
- headers: {
- "Content-Type": "application/json",
- ...(localStorage.authToken
- ? { Authorization: "Bearer " + localStorage.authToken }
- : {}),
- },
- body: JSON.stringify({ query, variables }),
- })
- .then((res) => res.json())
- .then((data) => {
- if (data.data) {
- return Object.values(data.data)[0];
- } else throw new Error(JSON.stringify(data.errors));
- });
- const gql = getGQL(backendURL + "graphql");
- // const gql = (url, query, variables) => fetch(url, {
- // method: 'POST',
- // headers: {
- // "Content-Type": "application/json",
- // Accept: "application/json",
- // },
- // body: JSON.stringify({ query, variables })
- // }).then(res => res.json())
- // const backendURL = 'http://shop-roles.node.ed.asmer.org.ua/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){
- _id name goods {
- _id name price images {
- url
- }
- }
- }
- }`,
- { q: JSON.stringify([{ _id }]) }
- )
- )
- const actionGoodById = (_id) =>
- actionPromise(
- 'goodByID',
- gql(
- `query goodByID($q:String){
- GoodFindOne(query: $q){
- _id
- name
- description
- price
- categories{
- _id
- name
- }
- images{
- url
- }
- }
- }`,
- { q: JSON.stringify([{ _id }]) }
- )
- )
- const actionRegistr = (login, password) =>
- actionPromise(
- 'registr',
- gql(
- `mutation register($login:String, $password:String){
- UserUpsert(user: {login:$login, password:$password}){
- _id login
- }
- }`,
- { login: login, password: password }
- )
- )
- const actionLogin = (login, password) =>
- actionPromise(
- 'login',
- gql(
- `query log($login:String, $password:String){
- login(login:$login, password:$password)
- }`,
- { login: login, password: password }
- )
- )
- const actionOrder = () => async (dispatch, getState) => {
- let { cart } = getState();
- const orderGoods = Object.entries(cart).map(([_id, { count }]) => ({
- good: { _id },
- count,
- }));
-
- let result = await dispatch(
- actionPromise(
- "order",
- gql(
- `
- mutation newOrder($order:OrderInput){
- OrderUpsert(order:$order)
- { _id total }
- }
- `,
- { order: { orderGoods } }
- )
- )
- );
- if (result?._id) {
- dispatch(actionCartClear());
- document.location.hash = "#/cart/";
- alert("Покупка успішна")
- }
-
- };
- const orderHistory = () =>
- actionPromise(
- "history",
- gql(` query OrderFind{
- OrderFind(query:"[{}]"){
- _id total createdAt orderGoods{
- count good{
- _id name price images{
- url
- }
- }
- owner{
- _id login
- }
- }
- }
- }
- `)
- );
- const actionAuthLogin = (token) =>
- (dispatch, getState) => {
- const oldState = getState()
- dispatch({ type: 'AUTH_LOGIN', token })
- const newState = getState()
- if (oldState !== newState)
- localStorage.authToken = token
- }
- const actionAuthLogout = () =>
- dispatch => {
- dispatch({ type: 'AUTH_LOGOUT' })
- localStorage.removeItem('authToken')
- }
- const actionCartAdd = (good, count = 1) => ({
- type: "CART_ADD",
- good,
- count
- });
- const actionCartChange = (good, count = 1) => ({
- type: "CART_CHANGE",
- good,
- count,
- }); ///oninput меняяем полностью
- const actionCartDelete = (good) => ({
- type: "CART_DELETE",
- good
- });
- const actionCartClear = () => ({
- type: "CART_CLEAR"
- });
- const actionCartRemove = (good) =>({
- type: "CART_REMOVE",
- good
- })
- const actionFullLogin = (login, password) => async (dispatch) => {
- let token = await dispatch(actionLogin(login, password))
- if (token) {
- dispatch(actionAuthLogin(token))
- }
- }
- const actionFullRegistr = (login, password) => async (dispatch) => {
- try {
- await dispatch(actionRegistr(login, password))
- }
- catch (e) {
- return console.log(e)
- }
- await dispatch(actionFullLogin(login, password))
- }
- //не забудьте combineReducers если он у вас уже есть
- if (localStorage.authToken) {
- store.dispatch(actionAuthLogin(localStorage.authToken))
- }
- //const store = createStore(combineReducers({promise: promiseReducer, auth: authReducer, cart: cartReducer}))
- store.subscribe(() => console.log(store.getState()))
- store.dispatch(actionRootCats())
- // store.dispatch(actionLogin('test456', '123123'))
- const LoginForm = ({onLogin}) => {
- const [login, setLogin] = useState('')
- const [password, setPassword] = useState('')
- const disableButton = () => {
- return !(login !== '' && password !== '')
- }
-
- const Vhod = () => {
- onLogin(login,password)
- }
- return(
- <div className = 'loginForm'>
- <strong>Введите ваш логин : </strong>
- <input type = 'text'
- value = {login}
- onChange = { (e) => setLogin(e.target.value)}
- />
- <strong> Введите ваш пароль : </strong>
- <input type = 'password'
- value = {password}
- onChange = { (e) => setPassword(e.target.value) }
- />
-
- <button disabled = {disableButton()} onClick = {Vhod}
- >Вход</button>
- </div>
- )
- }
- const rootCats =[
- {
- 'name': 'Tools'
- },
- {
- 'name': 'Tomatoes'
- },
- {
- 'name': 'Smartphone'
- },
- {
- 'name': 'Garden'
- },
- {
- 'name': 'Childrens products'
- },
- {
- 'name': 'Hobbies and sports'
- },
- {
- 'name': 'Sale'
- }
- ]
- const cats = [
- {'_id' : '62d403fbb74e1f5f2ec1a12a',
- 'name' : 'Виски Glengoyne 50yo 0,725 л',
- 'price': 1250,
- },
- {'_id' : '62d40566b74e1f5f2ec1a12c',
- 'name' : 'LONGINES HYDROCONQUEST L3.781.4.56.9',
- 'price': 5600,
- },
-
- {'_id' : '62d40618b74e1f5f2ec1a12e',
- 'name' : 'Лобзик электрический JS08-100A',
- 'price': 780,
- },
- ]
- const CategoryMenuItem = ({name}) =>{
- return(
- <div className ="menuItem">
- <strong>{name}</strong>
- </div>
- )}
- const CategoryMenu = () =>
- <aside className ='aside'>
- <ul>
- {rootCats.map(cats => <CategoryMenuItem name = {cats.name} />)}
- </ul>
- </aside>
- const GoodCard = ({catsis:{_id, name, price}}) =>
- <div className ="divCats">
- <li className ="kartochki">
- <p>Id: {_id}</p>
- <h1>{name}</h1>
- <strong>Price: {price}</strong>
- </li>
- </div>
- const Category = () =>
- <main className = 'main'>
- <ul>
- {cats.map(catsis=> <GoodCard catsis ={catsis} />)}
- </ul>
- </main>
- const CLoginForm = connect(null, {onLogin: actionFullLogin})(LoginForm)
- function App() {
- return (
- <Provider store = {store}>
- <div className="App">
- <CLoginForm />
- <div className ='shop'>
- <CategoryMenu />
- <Category />
- </div>
-
- </div>
- </Provider>
- );
- }
- export default App;
|