All files / modules/85-cv/pages/health-source/connectors/AppDynamics/Components/AppDCustomMetricForm AppDCustomMetricForm.utils.ts

92.31% Statements 12/13
75.61% Branches 31/41
100% Functions 3/3
90% Lines 9/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36              25x         25x 20x     25x 20x     25x         9x         1x 8x        
/*
 * Copyright 2022 Harness Inc. All rights reserved.
 * Use of this source code is governed by the PolyForm Shield 1.0.0 license
 * that can be found in the licenses directory at the root of this repository, also available at
 * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt.
 */
 
import { AppDynamicsMonitoringSourceFieldNames } from '../../AppDHealthSource.constants'
import type { BasePathData } from '../BasePath/BasePath.types'
import type { MetricPathData } from '../MetricPath/MetricPath.types'
import type { SetServiceInstanceInterface } from './AppDCustomMetricForm.types'
 
export const getBasePathValue = (basePath: BasePathData): string => {
  return basePath ? Object.values(basePath)[Object.values(basePath).length - 1]?.path : ''
}
 
export const getMetricPathValue = (basePath: MetricPathData): string => {
  return basePath ? Object.values(basePath)[Object.values(basePath).length - 1]?.path : ''
}
 
export const setServiceIntance = ({
  serviceInsanceData,
  formikValues,
  formikSetField
}: SetServiceInstanceInterface): void => {
  if (
    serviceInsanceData &&
    formikValues?.continuousVerification &&
    formikValues?.serviceInstanceMetricPath !== serviceInsanceData.data
  ) {
    formikSetField(AppDynamicsMonitoringSourceFieldNames.SERVICE_INSTANCE_METRIC_PATH, serviceInsanceData?.data)
  } else Iif (!formikValues?.continuousVerification && formikValues.serviceInstanceMetricPath?.length) {
    formikSetField(AppDynamicsMonitoringSourceFieldNames.SERVICE_INSTANCE_METRIC_PATH, '')
  }
}