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


TypeScript js.call方法代碼示例

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


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

示例1: 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

示例2: 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

示例3: 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

示例4: 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

示例5: 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

示例6: 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

示例7: onVoteSubmitWorker

function* onVoteSubmitWorker(action) {
  try {
    const {proposalId, voteValue} = action.values
    const tx = yield call(onVoteSubmit, proposalId, voteValue)
    yield call(waitForMined, tx, 'onVoteSubmit') // setInterval until mined
    yield put({type: 'TX_VOTE_SUBMISSION_SUCCEED', tx})
    yield put({type: 'ALL_VOTES_FOR_ALL_PROPOSALS_REQUESTED'})
  } catch (e) {
    yield put({type: 'TX_VOTE_SUBMISSION_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:11,代碼來源:votesSaga.ts

示例8: iter

 function* iter() {
   if (addr != 0 && addr != '0x' && addr != '0x0') {
     let isMember = yield call(Dao1901Members.isMember, addr)
     let subscription = yield call(Dao1901Members.subscriptions, addr)
     endSubscriptionDate = subscription[0].toString()
     isMember && members.push({memberAddress: addr, endSubscriptionDate})
     // take the next element to follow the linked list
     addr = subscription[1]
     yield call(iter, addr)
   }
 }
開發者ID:asseth,項目名稱:dao1901,代碼行數:11,代碼來源:daoSaga.ts

示例9: addMemberWorker

function* addMemberWorker(action) {
  try {
    const {memberAddress, yearsDuration} = action.values
    const tx = yield call(addMember, memberAddress, yearsDuration)
    yield call(waitForMined, tx, 'addMember')
    let endSubscriptionDate = new Date().setFullYear(new Date().getFullYear() + Number(yearsDuration))
    endSubscriptionDate = String(endSubscriptionDate).substring(0,10)
    let _members = yield select(s => s.dao.members)
    const members = [..._members, {memberAddress, endSubscriptionDate}]
    yield put({type: 'TX_ADD_MEMBER_SUCCEED', tx, values: {members}})
  } catch (e) {
    yield put({type: 'TX_ADD_MEMBER_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:14,代碼來源:daoSaga.ts

示例10: fetchAllVotesForAllProposalsWorker

export function* fetchAllVotesForAllProposalsWorker() {
  try {
    let votes = {}
    let proposalId = 1
    const totalProposals = yield call(getTotalProposals)
    while (proposalId <= totalProposals.valueOf()) {
      let votesProp = yield call(fetchVotesForAProposal, proposalId)
      votes[proposalId] = votesProp
      proposalId++
    }
    yield put({type: 'ALL_VOTES_FOR_ALL_PROPOSALS_SUCCEED', values: {votes}})
  } catch (e) {
    yield put({type: 'ALL_VOTES_FOR_ALL_PROPOSAL_FAILED', e: e.message})
  }
}
開發者ID:asseth,項目名稱:dao1901,代碼行數:15,代碼來源:votesSaga.ts


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