本文整理匯總了TypeScript中response/paths.Paths.moreTimeConfirmationPage.evaluateUri方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Paths.moreTimeConfirmationPage.evaluateUri方法的具體用法?TypeScript Paths.moreTimeConfirmationPage.evaluateUri怎麽用?TypeScript Paths.moreTimeConfirmationPage.evaluateUri使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類response/paths.Paths.moreTimeConfirmationPage
的用法示例。
在下文中一共展示了Paths.moreTimeConfirmationPage.evaluateUri方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: requestHandler
static requestHandler (req: express.Request, res: express.Response, next: express.NextFunction) {
const claim: Claim = res.locals.claim
if (claim.moreTimeRequested) {
res.redirect(Paths.moreTimeConfirmationPage.evaluateUri({ externalId: claim.externalId }))
} else {
next()
}
}
示例2: renderView
ErrorHandling.apply(async (req: express.Request, res: express.Response, next: express.NextFunction): Promise<void> => {
const form: Form<MoreTimeNeeded> = req.body
if (form.hasErrors()) {
renderView(form, res, next)
} else {
const claim: Claim = res.locals.claim
const draft: Draft<ResponseDraft> = res.locals.responseDraft
const user: User = res.locals.user
draft.document.moreTimeNeeded = form.model
await new DraftService().save(draft, user.bearerToken)
if (form.model.option === MoreTimeNeededOption.YES) {
await claimStoreClient.requestForMoreTime(claim.externalId, user)
res.redirect(Paths.moreTimeConfirmationPage.evaluateUri({ externalId: claim.externalId }))
} else {
res.redirect(Paths.taskListPage.evaluateUri({ externalId: claim.externalId }))
}
}
}))
示例3: expect
.expect(res => expect(res).to.redirect
.toLocation(ResponsePaths.moreTimeConfirmationPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
示例4: attachDefaultHooks
import { checkAlreadySubmittedGuard } from 'test/common/checks/already-submitted-check'
import { Paths as ResponsePaths } 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 { MoreTimeNeededOption } from 'response/form/models/moreTimeNeeded'
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 pagePath = ResponsePaths.moreTimeConfirmationPage.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })
describe('Defendant response: more time needed - confirmation 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)