本文整理汇总了TypeScript中response/paths.Paths.responseTypePage类的典型用法代码示例。如果您正苦于以下问题:TypeScript Paths.responseTypePage类的具体用法?TypeScript Paths.responseTypePage怎么用?TypeScript Paths.responseTypePage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Paths.responseTypePage类的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类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论