All files / modules/20-rbac/modals/TokenModal/views TokenValueRenderer.tsx

100% Statements 10/10
100% Branches 0/0
100% Functions 1/1
100% Lines 9/9

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              11x 11x 11x 11x 11x               11x 3x 3x 3x                                  
/*
 * 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 from 'react'
import { Layout, Text, TextInput } from '@wings-software/uicore'
import { Callout } from '@blueprintjs/core'
import { useStrings } from 'framework/strings'
import { CopyText } from '@common/components/CopyText/CopyText'
 
interface TokenValueRendererProps {
  token: string
  textInputClass?: string
  copyTextClass?: string
}
 
export const TokenValueRenderer: React.FC<TokenValueRendererProps> = props => {
  const { getString } = useStrings()
  const { token, textInputClass, copyTextClass } = props
  return (
    <Layout.Vertical spacing="small" margin={{ bottom: 'medium' }}>
      <Callout intent="success">
        <Text>{getString('valueLabel')}</Text>
        <TextInput
          className={textInputClass}
          value={token}
          disabled
          rightElement={
            (<CopyText className={copyTextClass} iconName="duplicate" textToCopy={token} iconAlwaysVisible />) as any
          }
        />
        <Text>{getString('rbac.token.form.tokenMessage')}</Text>
      </Callout>
    </Layout.Vertical>
  )
}