當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript effects.js類代碼示例

本文整理匯總了TypeScript中redux-saga/lib/effects.js的典型用法代碼示例。如果您正苦於以下問題:TypeScript js類的具體用法?TypeScript js怎麽用?TypeScript js使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了js類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: fetchContractsInfoWorker

function* fetchContractsInfoWorker() {
  try {
    let contracts = yield call(fetchContractsInfo)
    yield put({type: 'CONTRACTS_INFO_SUCCEED', values: {contracts}})
  } catch (e) {
    yield put({type: 'CONTRACTS_INFO_FAILED', error: e})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:8,代碼來源:daoSaga.ts

示例2: iter

 let addr = _addr // head at first call, then next
 function* iter(addr) {
   if (addr != 0) {
     const vote = yield call(getVote, proposalId, addr)
     votes.push({voterAddr: addr, proposalId: proposalId, voteValue: vote[0]})
     addr = vote[1] // next voter
     yield call(iter, addr)
   }
 }
開發者ID:asseth,項目名稱:dao1901,代碼行數:9,代碼來源:votesSaga.ts

示例3: fetchOwnerAddressWorker

function* fetchOwnerAddressWorker() {
  try {
    const {Owned} = contracts
    let ownerAddress = yield call(Owned.owner)
    yield put({type: 'OWNER_ADDRESS_SUCCEED', values: {ownerAddress}})
  } catch (e) {
    yield put({type: 'OWNER_ADDRESS_FAILED', error: e})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:9,代碼來源:daoSaga.ts

示例4: setUserBalanceWorker

function* setUserBalanceWorker() {
  try {
    let user = yield select(s => s.user)
    const balance = yield call(setUserBalance, user)
    yield put({type: 'USER_BALANCE_SUCCEED', values: {balance}})
  } catch (e) {
    yield put({type: 'USER_BALANCE_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:9,代碼來源:userSaga.ts

示例5: fetchAllProposalsWorker

function* fetchAllProposalsWorker() {
  try {
    const totalProposals = yield call(getTotalProposals)
    let proposals = yield call(generateProposalList, totalProposals.valueOf())
    yield put({type: 'ALL_PROPOSALS_SUCCEED', values: {proposals}})
  } catch (e) {
    yield put({type: 'ALL_PROPOSALS_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:9,代碼來源:votesSaga.ts

示例6: setUserDefaultAccountWorker

// ========================================================
// Set user default account
// ========================================================
function* setUserDefaultAccountWorker() {
  let accounts = yield select(state => state.user.accounts)
  if (accounts.length === 0) {
    yield put({type: 'USER_DEFAULT_ACCOUNT_FAILED', error: 'No accounts'})
  } else {
    let defaultAccount = accounts[0]
    window.web3.eth.defaultAccount = defaultAccount
    yield put({type: 'USER_DEFAULT_ACCOUNT_SUCCEED', values: {defaultAccount}})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:13,代碼來源:userSaga.ts

示例7: transferOwnershipWorker

function* transferOwnershipWorker(action) {
  try {
    let ownerAddress = yield select(s => s.dao.ownerAddress)
    const tx = yield call(transferOwnership, ownerAddress, action.values.newOwnerAddress)
    yield call(waitForMined, tx, 'transferOwnership')
    yield put({type: 'TX_TRANSFER_OWNERSHIP_SUCCEED', tx, values: {ownerAddress: action.values.newOwnerAddress}})
  } catch (e) {
    yield put({type: 'TX_TRANSFER_OWNERSHIP_FAILED', error: e})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:10,代碼來源:daoSaga.ts

示例8: revokeMemberWorker

function* revokeMemberWorker(action) {
  try {
    const tx = yield call(revokeMember, action.values)
    yield call(waitForMined, tx, 'revokeMember')
    yield put({type: 'TX_REVOKE_MEMBER_SUCCEED', tx})
    yield put({type: 'ALL_MEMBERS_REQUESTED'})
  } catch (e) {
    yield put({type: 'TX_REVOKE_MEMBER_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:10,代碼來源:daoSaga.ts

示例9: createProposalWorker

function* createProposalWorker({values}) {
  try {
    const {proposalDescription, proposalDeadline} = values
    const tx = yield call(createProposal, proposalDescription, proposalDeadline)
    yield call(waitForMined, tx, 'create proposal')
    yield put({type: 'TX_CREATE_PROPOSAL_SUCCEED', tx})
    yield put({type: 'ALL_PROPOSALS_REQUESTED'})
  } catch (e) {
    yield put({type: 'TX_CREATE_PROPOSAL_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:11,代碼來源:votesSaga.ts

示例10: fetchAllMembersWorker

function* fetchAllMembersWorker() {
  const {Dao1901Members} = contracts
  try {
    // Get the head of the linked list - Either 0x0 or the last added
    const head = yield call(Dao1901Members.head)
    const members = yield call(fetchAllMembers, head)
    yield put({type: 'ALL_MEMBERS_SUCCEED', values: {members}})
  } catch (e) {
    yield put({type: 'ALL_MEMBERS_FAILED', error: e})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:11,代碼來源:daoSaga.ts


注:本文中的redux-saga/lib/effects.js類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。