All files / modules/75-ce/components/CORdsSelector CORdsSelector.tsx

77.27% Statements 51/66
30.43% Branches 21/69
47.06% Functions 8/17
77.27% Lines 51/66

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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285              5x 5x 5x 5x                             5x   5x 5x   5x               5x   5x 8x 7x 7x   7x 7x 7x 7x 7x 7x   7x               7x                 7x 2x     7x 3x     7x   2x 2x         2x     7x 3x 1x 1x     1x 1x 1x             7x       7x         7x               7x                           7x   7x   7x                                                       1x                                                                                           5x 3x 3x 3x                   3x             3x                                                                                                     5x  
/*
 * Copyright 2021 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 React, { useState, useEffect } from 'react'
import { useParams } from 'react-router-dom'
import { isEmpty as _isEmpty, defaultTo as _defaultTo } from 'lodash-es'
import {
  Button,
  Container,
  ExpandingSearchInput,
  Icon,
  Layout,
  Select,
  Text,
  Radio,
  ButtonVariation,
  useToaster,
  TableV2
} from '@wings-software/uicore'
import type { CellProps } from 'react-table'
import type { SelectOption } from '@wings-software/uicore'
import { Color } from '@harness/design-system'
import type { AccountPathProps } from '@common/interfaces/RouteInterfaces'
import { Region, useAllRegions, ContainerServiceServiceMinimal, useAllResourcesOfAccount, Resource } from 'services/lw'
import { useStrings } from 'framework/strings'
import type { GatewayDetails } from '../COCreateGateway/models'
import css from './CORdsSelector.module.scss'
 
interface CORdsSelectorProps {
  gatewayDetails: GatewayDetails
  setGatewayDetails: (details: GatewayDetails) => void
  onDbAddSuccess: () => void
}
 
const TOTAL_ITEMS_PER_PAGE = 5
 
const CORdsSelector: React.FC<CORdsSelectorProps> = props => {
  const { accountId } = useParams<AccountPathProps>()
  const { getString } = useStrings()
  const { showError } = useToaster()
 
  const [allRegions, setAllRegions] = useState<SelectOption[]>([])
  const [selectedRegion, setSelectedRegion] = useState<SelectOption>()
  const [selectedDatabase, setSelectedDatabase] = useState<Resource>()
  const [allDatabases, setAllDatabases] = useState<Resource[]>([])
  const [databasesToShow, setDatabasesToShow] = useState<Resource[]>([])
  const [pageIndex, setPageIndex] = useState<number>(0)
 
  const { data: regions, loading: regionsLoading } = useAllRegions({
    account_id: accountId, // eslint-disable-line
    queryParams: {
      cloud_account_id: props.gatewayDetails.cloudAccount.id, // eslint-disable-line
      accountIdentifier: accountId
    }
  })
 
  const { mutate: fetchDatabases, loading: loadingDatabases } = useAllResourcesOfAccount({
    account_id: accountId, // eslint-disable-line
    queryParams: {
      cloud_account_id: props.gatewayDetails.cloudAccount.id, // eslint-disable-line
      type: 'database',
      accountIdentifier: accountId
    }
  })
 
  useEffect(() => {
    setRegionsForSelection(regions?.response)
  }, [regions?.response])
 
  useEffect(() => {
    fetchAndSetDatabses()
  }, [selectedRegion])
 
  const setRegionsForSelection = (regionsData: Region[] = []) => {
    const loaded =
      regionsData.map(r => {
        return {
          label: r.label as string,
          value: r.name as string
        }
      }) || []
    setAllRegions(loaded)
  }
 
  const fetchAndSetDatabses = async () => {
    if (selectedRegion) {
      try {
        const databases = await fetchDatabases({
          Text: `regions = ['${selectedRegion?.label}']`
        })
        const result = _defaultTo(databases.response, [])
        setAllDatabases(result)
        setDatabasesToShow(result)
      } catch (e) {
        showError(e?.data?.message || e?.message)
      }
    }
  }
 
  const refreshPageParams = () => {
    setPageIndex(0)
  }
 
  const handleRefresh = () => {
    refreshPageParams()
    fetchAndSetDatabses()
  }
 
  const handleSearch = (text: string) => {
    const filteredDatabases = _defaultTo(
      allDatabases?.filter(db => db.name?.toLowerCase().includes(text)),
      []
    )
    setDatabasesToShow(filteredDatabases)
  }
 
  const handleAddSelection = () => {
    if (!_isEmpty(selectedDatabase)) {
      const updatedGatewayDetails: GatewayDetails = {
        ...props.gatewayDetails,
        routing: {
          ...props.gatewayDetails.routing,
          database: { id: _defaultTo(selectedDatabase?.id, ''), region: _defaultTo(selectedDatabase?.region, '') }
        }
      }
      props.setGatewayDetails(updatedGatewayDetails)
      props.onDbAddSuccess?.()
    }
  }
 
  const loading = regionsLoading || loadingDatabases
 
  const isDisabled = _isEmpty(selectedDatabase)
 
  return (
    <Container>
      <Layout.Vertical spacing="xlarge">
        <Container style={{ paddingBottom: 20, borderBottom: '1px solid #CDD3DD' }}>
          <Text font={'large'}>{getString('ce.co.autoStoppingRule.configuration.rdsModal.title')}</Text>
        </Container>
        <Layout.Vertical
          style={{
            paddingBottom: 30,
            paddingTop: 30,
            borderBottom: '1px solid #CDD3DD'
          }}
        >
          <Layout.Horizontal flex={{ justifyContent: 'space-between' }}>
            <Layout.Horizontal flex={{ alignItems: 'center' }} spacing={'large'}>
              <Button onClick={handleAddSelection} disabled={isDisabled} variation={ButtonVariation.PRIMARY}>
                {getString('ce.co.autoStoppingRule.configuration.addSelectedBtnText')}
              </Button>
              <div onClick={handleRefresh}>
                <Icon name="refresh" color="primary7" size={14} />
                <span style={{ color: 'var(--primary-7)', margin: '0 5px', cursor: 'pointer' }}>Refresh</span>
              </div>
            </Layout.Horizontal>
            <ExpandingSearchInput onChange={handleSearch} />
          </Layout.Horizontal>
          <Layout.Horizontal flex={{ justifyContent: 'flex-start' }} spacing={'large'} style={{ maxWidth: '40%' }}>
            <Select
              items={allRegions}
              onChange={item => setSelectedRegion(item)}
              disabled={regionsLoading}
              value={selectedRegion}
              inputProps={{
                placeholder: getString('ce.allRegions')
              }}
              name={'rdsRegion'}
            />
          </Layout.Horizontal>
        </Layout.Vertical>
        <Container style={{ minHeight: 250 }}>
          {loading && (
            <Layout.Horizontal flex={{ justifyContent: 'center' }}>
              <Icon name="spinner" size={24} color="blue500" />
            </Layout.Horizontal>
          )}
          {!loading && !selectedRegion && (
            <Layout.Horizontal flex={{ justifyContent: 'center' }}>
              <Text icon={'execution-warning'} font={{ size: 'medium' }} iconProps={{ size: 20 }}>
                {getString('ce.co.autoStoppingRule.configuration.rdsModal.emptyDescription')}
              </Text>
            </Layout.Horizontal>
          )}
          {!loading && selectedRegion && (
            <RDSServicesTable
              data={databasesToShow}
              pageIndex={pageIndex}
              selectedDb={selectedDatabase}
              setSelectedDb={setSelectedDatabase}
              setPageIndex={setPageIndex}
            />
          )}
        </Container>
      </Layout.Vertical>
    </Container>
  )
}
 
interface RDSServicesTableProps {
  data: ContainerServiceServiceMinimal[]
  pageIndex: number
  selectedDb?: Resource
  setSelectedDb: (db: Resource) => void
  setPageIndex: (index: number) => void
}
 
const RDSServicesTable: React.FC<RDSServicesTableProps> = props => {
  const { pageIndex, data } = props
  const { getString } = useStrings()
  const TableCheck = (tableProps: CellProps<Resource>) => {
    return (
      <Radio
        checked={props.selectedDb?.id === tableProps.row.original.id}
        onClick={_ => props.setSelectedDb(tableProps.row.original)}
        className={css.radioBtn}
      />
    )
  }
 
  const TableCell = (tableProps: CellProps<Resource>) => {
    return (
      <Text lineClamp={1} color={Color.BLACK}>
        {`${tableProps.value || '-'}`}
      </Text>
    )
  }
  return (
    <TableV2<Resource>
      data={data.slice(pageIndex * TOTAL_ITEMS_PER_PAGE, pageIndex * TOTAL_ITEMS_PER_PAGE + TOTAL_ITEMS_PER_PAGE)}
      pagination={{
        pageSize: TOTAL_ITEMS_PER_PAGE,
        pageIndex: pageIndex,
        pageCount: Math.ceil(data.length / TOTAL_ITEMS_PER_PAGE),
        itemCount: data.length,
        gotoPage: (newPageIndex: number) => props.setPageIndex(newPageIndex)
      }}
      columns={[
        {
          Header: '',
          id: 'selected',
          Cell: TableCheck,
          width: '5%',
          disableSortBy: true
        },
        {
          accessor: 'id',
          Header: 'ID',
          width: '25%',
          Cell: TableCell,
          disableSortBy: true
        },
        {
          accessor: 'name',
          Header: getString('name'),
          width: '25%',
          Cell: TableCell,
          disableSortBy: true
        },
        {
          accessor: 'status',
          Header: getString('status'),
          width: '25%',
          Cell: TableCell,
          disableSortBy: true
        },
        {
          accessor: 'type',
          Header: 'TYPE',
          width: '25%',
          Cell: TableCell,
          disableSortBy: true
        }
      ]}
    />
  )
}
 
export default CORdsSelector