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


TypeScript Paths.responseTypePage.evaluateUri方法代碼示例

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


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

示例1: expect

 .expect(res => expect(res).to.be.redirect.toLocation(ResponsePaths.responseTypePage
   .evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:2,代碼來源:reject-all-of-claim.ts

示例2: accessDeniedCallback

 function accessDeniedCallback (req: express.Request, res: express.Response): void {
   const claim: Claim = res.locals.claim
   logger.warn('Partial Admission Guard: user tried to access page for partial admission flow')
   res.redirect(Paths.responseTypePage.evaluateUri({ externalId: claim.externalId }))
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:5,代碼來源:partialAdmissionGuard.ts

示例3: attachDefaultHooks

import { Paths as ResponsePaths, PartAdmissionPaths } from 'response/paths'

import { app } from 'main/app'

import * as idamServiceMock from 'test/http-mocks/idam'
import * as draftStoreServiceMock from 'test/http-mocks/draft-store'
import * as claimStoreServiceMock from 'test/http-mocks/claim-store'

import { ResponseType } from 'response/form/models/responseType'
import { checkCountyCourtJudgmentRequestedGuard } from 'test/common/checks/ccj-requested-check'
import { checkNotDefendantInCaseGuard } from 'test/common/checks/not-defendant-in-case-check'

const cookieName: string = config.get<string>('session.cookieName')
const externalId: string = claimStoreServiceMock.sampleClaimObj.externalId
const pagePath = ResponsePaths.responseTypePage.evaluateUri({ externalId: externalId })

describe('Defendant response: response type page', () => {
  attachDefaultHooks(app)

  describe('on GET', () => {
    const method = 'get'
    checkAuthorizationGuards(app, method, pagePath)
    checkNotDefendantInCaseGuard(app, method, pagePath)

    context('when user authorised', () => {
      beforeEach(() => {
        idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
      })

      checkAlreadySubmittedGuard(app, method, pagePath)
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:30,代碼來源:response-type.ts

示例4: accessDeniedCallback

function accessDeniedCallback (req: express.Request, res: express.Response): void {
  const claim: Claim = res.locals.claim

  res.redirect(Paths.responseTypePage.evaluateUri({ externalId: claim.externalId }))
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:5,代碼來源:reject-all-of-claim.ts

示例5: buildRespondToClaimSection

  static buildRespondToClaimSection (draft: ResponseDraft, claim: Claim): TaskList {
    const externalId: string = claim.externalId
    const tasks: TaskListItem[] = []

    tasks.push(
      new TaskListItem(
        'Choose a response',
        Paths.responseTypePage.evaluateUri({ externalId: externalId }),
        OweMoneyTask.isCompleted(draft)
      )
    )

    if (draft.isResponseRejectedFullyBecausePaidWhatOwed()) {
      tasks.push(
        new TaskListItem(
          'Tell us how much you’ve paid',
          FullRejectionPaths.howMuchHaveYouPaidPage.evaluateUri({ externalId: externalId }),
          ValidationUtils.isValid(draft.rejectAllOfClaim.howMuchHaveYouPaid)
        )
      )

      if (ClaimFeatureToggles.isFeatureEnabledOnClaim(claim)
        && draft.rejectAllOfClaim.howMuchHaveYouPaid !== undefined
        && draft.rejectAllOfClaim.howMuchHaveYouPaid.amount < claim.totalAmountTillToday) {
        tasks.push(
          new TaskListItem(
            'Why do you disagree with the amount claimed?',
            FullRejectionPaths.whyDoYouDisagreePage.evaluateUri({ externalId: externalId }),
            ValidationUtils.isValid(draft.rejectAllOfClaim.whyDoYouDisagree)
          )
        )
      }
    }

    if (draft.isResponseRejectedFullyWithDispute()) {
      tasks.push(
        new TaskListItem(
          'Why do you disagree with the claim?',
          Paths.defencePage.evaluateUri({ externalId: externalId }),
          YourDefenceTask.isCompleted(draft)
        )
      )
    }

    if (ClaimFeatureToggles.isFeatureEnabledOnClaim(claim)) {
      if (draft.isResponseFullyAdmitted()) {
        tasks.push(
          new TaskListItem(
            'Decide how you’ll pay',
            FullAdmissionPaths.paymentOptionPage.evaluateUri({ externalId: externalId }),
            DecideHowYouWillPayTask.isCompleted(draft)
          )
        )

        if (StatementOfMeansFeature.isApplicableFor(claim, draft)) {
          tasks.push(
            new TaskListItem(
              'Share your financial details',
              StatementOfMeansPaths.introPage.evaluateUri({ externalId: externalId }),
              StatementOfMeansTask.isCompleted(draft)
            )
          )
        } else if (draft.defendantDetails.partyDetails.isBusiness() &&
            !draft.isImmediatePaymentOptionSelected(draft.fullAdmission) &&
            !draft.isImmediatePaymentOptionSelected(draft.partialAdmission)
        ) {
          tasks.push(
            new TaskListItem(
              'Share your financial details',
              Paths.sendCompanyFinancialDetailsPage.evaluateUri({ externalId: externalId }),
              ViewSendCompanyFinancialDetailsTask.isCompleted(draft)
            )
          )
        }

        if (draft.isResponseFullyAdmittedWithInstalments()) {
          tasks.push(
            new TaskListItem(
              'Your repayment plan',
              FullAdmissionPaths.paymentPlanPage.evaluateUri({ externalId: externalId }),
              YourRepaymentPlanTask.isCompleted(draft.fullAdmission.paymentIntention.paymentPlan)
            )
          )
        }
      }

      const partiallyAdmitted = draft.isResponsePartiallyAdmitted()
      const partiallyAdmittedAndPaid = draft.isResponsePartiallyAdmittedAndAlreadyPaid()

      if (partiallyAdmitted) {

        if (partiallyAdmittedAndPaid) {
          tasks.push(
            new TaskListItem(
              'How much have you paid?',
              PartAdmissionPaths.howMuchHaveYouPaidPage.evaluateUri({ externalId: externalId }),
              ValidationUtils.isValid(draft.partialAdmission.howMuchHaveYouPaid)
            )
          )
          if (draft.partialAdmission.paymentIntention !== undefined) {
//.........這裏部分代碼省略.........
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:101,代碼來源:taskListBuilder.ts


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