123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- //debugger;
- function createStore(reducer){
- let state = reducer(undefined, {}) //стартовая инициализация состояния, запуск редьюсера со state === undefined
- let cbs = [] //массив подписчиков
-
- const getState = () => state //функция, возвращающая переменную из замыкания
- const subscribe = cb => (cbs.push(cb), //запоминаем подписчиков в массиве
- () => cbs = cbs.filter(c => c !== cb)) //возвращаем функцию unsubscribe, которая удаляет подписчика из списка
-
- const dispatch = action => {
- if (typeof action === 'function'){ //если action - не объект, а функция
- return action(dispatch, getState) //запускаем эту функцию и даем ей dispatch и getState для работы
- }
- const newState = reducer(state, action) //пробуем запустить редьюсер
- if (newState !== state){ //проверяем, смог ли редьюсер обработать action
- state = newState //если смог, то обновляем state
- for (let cb of cbs) cb() //и запускаем подписчиков
- }
- }
-
- return {
- getState, //добавление функции getState в результирующий объект
- dispatch,
- subscribe //добавление subscribe в объект
- }
- }
- function promiseReducer(state={}, {type, name, status, payload, error}){
- // {
- // login: {status, payload, error}
- // catById: {status, payload, error}
- // }
- if (type === 'PROMISE'){
- return {
- ...state,
- [name]:{status, payload, error}
- }
- }
- return state
- }
- const store = createStore(promiseReducer)
- store.subscribe(() => console.log(store.getState()))
- 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)) // 1. {delay1000: {status: 'PENDING'}}
- try{
- let payload = await promise
- dispatch(actionResolved(name, payload))
- return payload
- }
- catch(error){
- dispatch(actionRejected(name, error))
- }
- }
- const getGQL = url =>
- (query, variables = {}) =>
- fetch(url, {
- //метод
- method: 'POST',
- headers: {
- //заголовок content-type
- "Content-Type": "application/json",
- ...(localStorage.authToken ? {"Authorization": "Bearer " + localStorage.authToken} :
- {})
- },
- //body с ключами query и variables
- body: JSON.stringify({query, variables})
- })
- .then(res => res.json())
- .then(data => {
- if (data.errors && !data.data)
- throw new Error(JSON.stringify(data.errors))
- return data.data[Object.keys(data.data)[0]]
- })
- const backURL = 'http://shop-roles.asmer.fs.a-level.com.ua'
-
- const gql = getGQL(`${backURL}/graphql`)
- const delay = ms => new Promise(ok => setTimeout(() => ok(ms), ms))
- 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 subCategories {
- _id name
- }
- goods {
- _id price name images {
- url
- }
- }
- }
- }`, {"q": JSON.stringify([{_id}])}))
- store.dispatch(actionRootCats())
- const actionGoodById = (_id) =>
- actionPromise('goodById', gql(`query goodById($goodId:String){
- GoodFindOne(query:$goodId){
- _id name description price images{
- _id text url
- }
- }
- }`, {"goodId": JSON.stringify([{_id}])}))
- store.subscribe(() => {
- const {rootCats} = store.getState()
- if (rootCats?.payload){
- aside.innerHTML = ''
- for (const {_id, name} of rootCats?.payload){
- const link = document.createElement('a')
- link.href = `#/category/${_id}`
- link.innerText = name
- aside.append(link)
- }
- }
- })
- window.onhashchange = () => {
- const [, route, _id] = location.hash.split('/');
- const routes = {
- category(){
- store.dispatch(actionCatById(_id))
- },
- good(){
- store.dispatch(actionGoodById(_id));//задиспатчить actionGoodById
- console.log('ТОВАРОСТРАНИЦА')
- },
- }
- if (route in routes)
- routes[route]()
- }
- window.onhashchange()
- store.subscribe(() => {
- const {catById} = store.getState()
- const [,route, _id] = location.hash.split('/')
- if (catById?.payload && route === 'category'){
- const {name, subCategories} = catById.payload;
- let str = '';
- if (subCategories){
- for(let subCateg of subCategories){
- str += `<h4><a href="#/subCategory/${subCateg._id}"> ${subCateg.name}</a></h4>`;
- }
- } else {str += 'Подкатегории отсутствуют'}
- main.innerHTML = `<h1>${name}</h1> ${str} ` //ТУТ ДОЛЖНЫ БЫТЬ ПОДКАТЕГОРИИ
- for (const {_id, name, price, images} of catById.payload.goods){
- const card = document.createElement('div')
- card.innerHTML = `<h2>${name}</h2>
- <img src="${backURL}/${images[0].url}" />
- <strong>${price}</strong>
- <a href="#/good/${_id}">${name}</a>
-
- `
- main.append(card)
- }
- }
- })
- store.subscribe(() => {
- const {goodById} = store.getState(); //console.log("dfsdfs", store.getState().goodById)
- if(goodById) {
- const [, , _id] = location.hash.split('/'); //ТУТ ДОЛЖНА БЫТЬ ПРОВЕРКА НА НАЛИЧИЕ goodById в редакс
- if(goodById?.payload && location.hash == `#/good/${_id}`){ //и проверка на то, что сейчас в адресной строке адрес ВИДА #/good/АЙДИ
- document.getElementById('main').innerHTML = "";
- const {name, description, price, images} = goodById.payload;
- const card = document.createElement('div'); //в таком случае очищаем main и рисуем информацию про товар с подробностями
- card.innerHTML = `<h2>${name}</h2>
- <img src="${backURL}/${images[0].url}" />
- <strong>${price} $</strong>
- <p>${description}</p>`
-
- main.append(card);
- }
- }
- })
-
-
- //store.dispatch(actionPromise('delay1000', delay(1000)))
- //store.dispatch(actionPromise('delay2000', delay(2000)))
- //store.dispatch(actionPromise('failedfetch', fetch('https://swapi.dev/api/people/1/')
- //.then(res => res.json())))
|