当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript paths.StatementOfMeansPaths.employmentPage类代码示例

本文整理汇总了TypeScript中response/paths.StatementOfMeansPaths.employmentPage的典型用法代码示例。如果您正苦于以下问题:TypeScript StatementOfMeansPaths.employmentPage类的具体用法?TypeScript StatementOfMeansPaths.employmentPage怎么用?TypeScript StatementOfMeansPaths.employmentPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了StatementOfMeansPaths.employmentPage类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: DraftService

    ErrorHandling.apply(async (req: express.Request, res: express.Response, next: express.NextFunction) => {
      const form: Form<Carer> = req.body
      const { externalId } = req.params

      if (form.hasErrors()) {
        res.render(page.associatedView, { form: form })
      } else {
        const draft: Draft<ResponseDraft> = res.locals.responseDraft
        const user: User = res.locals.user

        draft.document.statementOfMeans.carer = form.model
        await new DraftService().save(draft, user.bearerToken)

        res.redirect(StatementOfMeansPaths.employmentPage.evaluateUri({ externalId: externalId }))
      }
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:16,代码来源:carer.ts

示例2: DraftService

    ErrorHandling.apply(async (req: express.Request, res: express.Response) => {
      const form: Form<OtherDependants> = req.body
      const { externalId } = req.params

      if (form.hasErrors()) {
        res.render(page.associatedView, { form: form })
      } else {
        const draft: Draft<ResponseDraft> = res.locals.responseDraft
        const user: User = res.locals.user

        draft.document.statementOfMeans.otherDependants = form.model

        // skip if any dependants are disabled, or if defendant and partner are both disabled, or if defendant is severely disabled
        const anyDisabledDependants: boolean =
          (draft.document.statementOfMeans.dependantsDisability && draft.document.statementOfMeans.dependantsDisability.option === DependantsDisabilityOption.YES)
          || (draft.document.statementOfMeans.otherDependantsDisability && draft.document.statementOfMeans.otherDependantsDisability.option === OtherDependantsDisabilityOption.YES)
        const defendantIsDisabled: boolean = draft.document.statementOfMeans.disability.option === DisabilityOption.YES
        const partnerIsDisabled: boolean = draft.document.statementOfMeans.cohabiting.option === CohabitingOption.YES
          && draft.document.statementOfMeans.partnerDisability.option === PartnerDisabilityOption.YES
        const defendantIsSeverelyDisabled: boolean = draft.document.statementOfMeans.severeDisability
          && draft.document.statementOfMeans.severeDisability.option === SevereDisabilityOption.YES

        const skipCarerPage: boolean = anyDisabledDependants || (defendantIsDisabled && partnerIsDisabled) || defendantIsSeverelyDisabled

        if (skipCarerPage) {
          draft.document.statementOfMeans.carer = undefined
        }

        await new DraftService().save(draft, user.bearerToken)
        if (skipCarerPage) {
          res.redirect(Paths.employmentPage.evaluateUri({ externalId: externalId }))
        } else {
          res.redirect(Paths.carerPage.evaluateUri({ externalId: externalId }))
        }
      }
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:36,代码来源:other-dependants.ts

示例3:

}, (req: express.Request, res: express.Response): void => {
  res.redirect(Paths.employmentPage.evaluateUri({ externalId: UUIDUtils.extractFrom(req.path) }))
})
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:3,代码来源:on-tax-payments.ts

示例4: attachDefaultHooks

import * as config from 'config'
import 'test/routes/expectations'
import { StatementOfMeansPaths } from 'response/paths'
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 { attachDefaultHooks } from 'test/routes/hooks'
import { checkAuthorizationGuards } from 'test/common/checks/authorization-check'
import { checkAlreadySubmittedGuard } from 'test/common/checks/already-submitted-check'
import { checkCountyCourtJudgmentRequestedGuard } from 'test/common/checks/ccj-requested-check'
import { app } from 'main/app'
import { checkNotDefendantInCaseGuard } from 'test/common/checks/not-defendant-in-case-check'

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

describe('Defendant response: Statement of means: employment', () => {

  attachDefaultHooks(app)

  describe('on GET', () => {

    const method = 'get'
    checkAuthorizationGuards(app, method, pagePath)
    checkNotDefendantInCaseGuard(app, method, pagePath)

    context('when user authorised', () => {

      beforeEach(() => {
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:31,代码来源:employment.ts


注:本文中的response/paths.StatementOfMeansPaths.employmentPage类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。