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


TypeScript stringUtils.StringUtils類代碼示例

本文整理匯總了TypeScript中utils/stringUtils.StringUtils的典型用法代碼示例。如果您正苦於以下問題:TypeScript StringUtils類的具體用法?TypeScript StringUtils怎麽用?TypeScript StringUtils使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: getRangeGroup

  private static async getRangeGroup (eventType: string, channel: string): Promise<FeeRange[]> {
    if (StringUtils.isBlank(eventType)) {
      throw new Error('Fee eventType is required')
    }
    if (StringUtils.isBlank(channel)) {
      throw new Error('Fee channel is required')
    }
    const uri: string = `${feesUrl}/fees-register/fees?service=${service}&jurisdiction1=${jurisdiction1}&jurisdiction2=${jurisdiction2}&channel=${channel}&event=${eventType}&feeVersionStatus=approved`
    const options = {
      uri: uri
    }
    return request(options).then(function (response) {
      return plainToClass(FeeRange, response as object[])
    })

  }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:16,代碼來源:feesClient.ts

示例2: calculateFee

 /**
  * Calculates the fee based on fee event and amount
  *
  * @param eventType which fee event to use
  * @param amount amount in GBP
  * @param channel online or paper/default
  * @returns {Promise.<FeeOutcome>} promise containing the Fee outcome (including fee amount in GBP)
  */
 static async calculateFee (eventType: string, amount: number, channel: string): Promise<FeeOutcome> {
   if (StringUtils.isBlank(eventType)) {
     throw new Error('Fee eventType is required')
   }
   if (StringUtils.isBlank(channel)) {
     throw new Error('Fee channel is required')
   }
   ClaimValidator.claimAmount(amount)
   const feeUri: string = `${feesUrl}/fees-register/fees/lookup?service=${service}&jurisdiction1=${jurisdiction1}&jurisdiction2=${jurisdiction2}&channel=${channel}&event=${eventType}&amount_or_volume=${amount}`
   const options = {
     uri: feeUri
   }
   return request(options).then(function (response) {
     return plainToClass(FeeOutcome, response as object)
   })
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:24,代碼來源:feesClient.ts

示例3: buildURL

export function buildURL (req: express.Request, path: string): string {
  if (StringUtils.isBlank(path)) {
    throw new Error('Path null or undefined')
  }
  if (req === undefined) {
    throw new Error('Request is undefined')
  }
  const protocol = 'https://'
  const host = req.headers.host

  const baseURL: string = `${protocol}${host}`
  if (path.startsWith('/')) {
    return baseURL + path
  } else {
    return `${baseURL}/${path}`
  }
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:17,代碼來源:callbackBuilder.ts

示例4: convertDefendantDetails

  private static convertDefendantDetails (draftClaim: DraftClaim): TheirDetails {
    const defendantDetails: PartyDetails = draftClaim.defendant.partyDetails
    switch (defendantDetails.type) {
      case PartyType.INDIVIDUAL.value:
        const individualDetails = defendantDetails as IndividualDetails

        return new DefendantAsIndividual(
          StringUtils.trimToUndefined(individualDetails.title),
          individualDetails.firstName,
          individualDetails.lastName,
          this.convertAddress(individualDetails.address),
          StringUtils.trimToUndefined(draftClaim.defendant.email.address)
        )

      case PartyType.SOLE_TRADER_OR_SELF_EMPLOYED.value:
        const soleTraderDetails: SoleTraderDetails = defendantDetails as SoleTraderDetails

        return new DefendantAsSoleTrader(
          StringUtils.trimToUndefined(soleTraderDetails.title),
          soleTraderDetails.firstName,
          soleTraderDetails.lastName,
          this.convertAddress(soleTraderDetails.address),
          StringUtils.trimToUndefined(draftClaim.defendant.email.address),
          soleTraderDetails.businessName
        )

      case PartyType.COMPANY.value:
        const companyDetails = defendantDetails as CompanyDetails

        return new DefendantAsCompany(
          companyDetails.name,
          this.convertAddress(companyDetails.address),
          StringUtils.trimToUndefined(draftClaim.defendant.email.address),
          companyDetails.contactPerson
        )
      case PartyType.ORGANISATION.value:
        const organisationDetails = defendantDetails as OrganisationDetails

        return new DefendantAsOrganisation(
          organisationDetails.name,
          this.convertAddress(organisationDetails.address),
          StringUtils.trimToUndefined(draftClaim.defendant.email.address),
          organisationDetails.contactPerson
        )
      default:
        throw Error('Something went wrong, No defendant type is set')
    }
  }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:48,代碼來源:claimModelConverter.ts

示例5: it

 it('should return undefined if value is undefined', () => {
   expect(StringUtils.trimToUndefined(undefined)).to.be.undefined
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:3,代碼來源:stringUtils.ts

示例6: fullName

 static fullName (firstName: string, lastName: string, title?: string): string {
   return [StringUtils.trimToUndefined(title), firstName, lastName].filter(Boolean).join(' ')
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:3,代碼來源:nameFormatter.ts


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