|
@@ -9,7 +9,6 @@ const gql = new GraphQLClient('http://shop-roles.asmer.fs.a-level.com.ua/graphql
|
|
|
|
|
|
const sagaMiddleware = createSagaMiddleware()
|
|
const sagaMiddleware = createSagaMiddleware()
|
|
|
|
|
|
-
|
|
|
|
let store = createStore((state={}, {type, ...params}) => { //единственный редьюсер данного хранилища
|
|
let store = createStore((state={}, {type, ...params}) => { //единственный редьюсер данного хранилища
|
|
if (type === 'SEARCH_RESULT'){
|
|
if (type === 'SEARCH_RESULT'){
|
|
return {searchResult: {...params}}
|
|
return {searchResult: {...params}}
|
|
@@ -20,20 +19,20 @@ let store = createStore((state={}, {type, ...params}) => { //единствен
|
|
const delay = ms => new Promise(ok => setTimeout(() => ok(ms), ms))
|
|
const delay = ms => new Promise(ok => setTimeout(() => ok(ms), ms))
|
|
|
|
|
|
function* aWorker({timeout, message}){
|
|
function* aWorker({timeout, message}){
|
|
|
|
+ console.log('НАЧАЛО A WORKER ', timeout, message)
|
|
yield put({type: 'LOG', text: `aWorker started with ${timeout}`})
|
|
yield put({type: 'LOG', text: `aWorker started with ${timeout}`})
|
|
yield delay(timeout)
|
|
yield delay(timeout)
|
|
console.log(message)
|
|
console.log(message)
|
|
}
|
|
}
|
|
|
|
|
|
function* actionCheck(){
|
|
function* actionCheck(){
|
|
- yield takeLeading('ACTION_A', aWorker)
|
|
|
|
|
|
+ yield takeLatest('ACTION_A', aWorker)
|
|
}
|
|
}
|
|
|
|
|
|
function* searchWorker({text}){
|
|
function* searchWorker({text}){
|
|
- yield put(actionSearchResult({payload: null}))
|
|
|
|
- yield delay(2000)
|
|
|
|
-// let payload = yield delay(2000) //типа fetch
|
|
|
|
- let payload = yield gql.request(`
|
|
|
|
|
|
+ yield put(actionSearchResult({payload: null})) //аналог dispatch(actionSearchResult({payload:null}))
|
|
|
|
+ yield delay(2000) //аналог await
|
|
|
|
+ let payload = yield gql.request( `
|
|
query gf($query: String){
|
|
query gf($query: String){
|
|
GoodFind(query: $query){
|
|
GoodFind(query: $query){
|
|
_id, name, description, price, images{
|
|
_id, name, description, price, images{
|
|
@@ -47,26 +46,36 @@ function* searchWorker({text}){
|
|
{
|
|
{
|
|
sort: [{name: 1}]} //сортируем по title алфавитно
|
|
sort: [{name: 1}]} //сортируем по title алфавитно
|
|
])
|
|
])
|
|
- })
|
|
|
|
- yield put(actionSearchResult({payload}))
|
|
|
|
|
|
+ }) //аналог того же await
|
|
|
|
+ yield put(actionSearchResult({payload})) //аналог dispatch()
|
|
console.log('search end' , text)
|
|
console.log('search end' , text)
|
|
}
|
|
}
|
|
|
|
|
|
function* searchCheck(){
|
|
function* searchCheck(){
|
|
- yield takeLatest('SEARCH', searchWorker)
|
|
|
|
|
|
+ yield takeLeading('SEARCH', searchWorker)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function* logoutWorker(){
|
|
|
|
+ yield put({type: 'PROMISE_CLEAR'})
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function* logoutWatcher(){
|
|
|
|
+ yield takeEvery('AUTH_LOGOUT', logoutWorker)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function* rootSaga(){
|
|
function* rootSaga(){
|
|
yield all([
|
|
yield all([
|
|
actionCheck(),
|
|
actionCheck(),
|
|
- searchCheck()
|
|
|
|
|
|
+ searchCheck(),
|
|
|
|
+ logoutWatcher()
|
|
|
|
+ //еще вотчеры если надо
|
|
])
|
|
])
|
|
}
|
|
}
|
|
|
|
|
|
sagaMiddleware.run(rootSaga)
|
|
sagaMiddleware.run(rootSaga)
|
|
|
|
|
|
-//store.subscribe(()=> console.log(store.getState())) // подписка на обновления store
|
|
|
|
|
|
+store.subscribe(()=> console.log(store.getState())) // подписка на обновления store
|
|
|
|
|
|
store.dispatch({type: 'ACTION_A', timeout: 5000, message: 'HELLO WORLD 5sec'})
|
|
store.dispatch({type: 'ACTION_A', timeout: 5000, message: 'HELLO WORLD 5sec'})
|
|
store.dispatch({type: 'ACTION_A', timeout: 2000, message: 'WORLD HELLO 2sec'})
|
|
store.dispatch({type: 'ACTION_A', timeout: 2000, message: 'WORLD HELLO 2sec'})
|