|
@ -2,6 +2,13 @@ import { call, put, select, take, takeEvery } from 'redux-saga/effects'; |
|
|
|
|
|
|
|
|
import { forumContract, getCurrentAccount } from './drizzleUtilsSaga'; |
|
|
import { forumContract, getCurrentAccount } from './drizzleUtilsSaga'; |
|
|
import { DRIZZLE_UTILS_SAGA_INITIALIZED } from '../actions/drizzleUtilsActions'; |
|
|
import { DRIZZLE_UTILS_SAGA_INITIALIZED } from '../actions/drizzleUtilsActions'; |
|
|
|
|
|
import { |
|
|
|
|
|
ACCOUNT_CHANGED, |
|
|
|
|
|
AUTH_USER_DATA_UPDATED, |
|
|
|
|
|
GUEST_USER_DATA_UPDATED, |
|
|
|
|
|
USER_FETCHING_ERROR |
|
|
|
|
|
} from '../actions/userActions'; |
|
|
|
|
|
import { ACCOUNTS_FETCHED } from '../actions/drizzleActions'; |
|
|
|
|
|
|
|
|
let account; |
|
|
let account; |
|
|
|
|
|
|
|
@ -10,7 +17,7 @@ function* updateUserData() { |
|
|
if (currentAccount !== account) { |
|
|
if (currentAccount !== account) { |
|
|
account = currentAccount; |
|
|
account = currentAccount; |
|
|
yield put({ |
|
|
yield put({ |
|
|
type: 'ACCOUNT_CHANGED', ...[] |
|
|
type: ACCOUNT_CHANGED, ...[] |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
const txObj1 = yield call(forumContract.methods.hasUserSignedUp, ...[account]); |
|
|
const txObj1 = yield call(forumContract.methods.hasUserSignedUp, ...[account]); |
|
@ -30,7 +37,7 @@ function* updateUserData() { |
|
|
username |
|
|
username |
|
|
}; |
|
|
}; |
|
|
yield put({ |
|
|
yield put({ |
|
|
type: 'USER_DATA_UPDATED_(AUTHENTICATED)', ...dispatchArgs |
|
|
type: AUTH_USER_DATA_UPDATED, ...dispatchArgs |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} else if (account !== userState.address) { |
|
|
} else if (account !== userState.address) { |
|
@ -38,13 +45,13 @@ function* updateUserData() { |
|
|
address: account |
|
|
address: account |
|
|
}; |
|
|
}; |
|
|
yield put({ |
|
|
yield put({ |
|
|
type: 'USER_DATA_UPDATED_(GUEST)', ...dispatchArgs |
|
|
type: GUEST_USER_DATA_UPDATED, ...dispatchArgs |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} catch (error) { |
|
|
} catch (error) { |
|
|
console.error(error); |
|
|
console.error(error); |
|
|
yield put({ |
|
|
yield put({ |
|
|
type: 'USER_FETCHING_ERROR', ...[] |
|
|
type: USER_FETCHING_ERROR, ...[] |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -55,7 +62,7 @@ function* getUserState() { |
|
|
|
|
|
|
|
|
function* userSaga() { |
|
|
function* userSaga() { |
|
|
yield take(DRIZZLE_UTILS_SAGA_INITIALIZED); |
|
|
yield take(DRIZZLE_UTILS_SAGA_INITIALIZED); |
|
|
yield takeEvery('ACCOUNTS_FETCHED', updateUserData); |
|
|
yield takeEvery(ACCOUNTS_FETCHED, updateUserData); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
export default userSaga; |
|
|
export default userSaga; |
|
|