Sha256: 9a186d7043de924be2046cfa986cac6cbff367406365c4a265aa7ac846b911a3

Contents?: true

Size: 1.48 KB

Versions: 526

Compression:

Stored size: 1.48 KB

Contents

import React from 'react'
import { components } from 'react-select'

import Badge from '../../pb_badge/_badge'
import FormPill from '../../pb_form_pill/_form_pill'
import { SelectValueType } from '../_typeahead'

type Props = {
  data: SelectValueType,
  multiValueTemplate: any,
  removeProps: any,
  selectProps: any,
}

const MultiValue = (props: Props) => {
  const { removeProps } = props
  const { imageUrl, label } = props.data
  const { multiKit } = props.selectProps

  const formPillProps = {
    marginRight: 'xs',
    name: label,
    avatarUrl: '',
  }

  if (typeof imageUrl === 'string') formPillProps.avatarUrl = imageUrl

  return (
    <components.MultiValueContainer
      className="text_input_multivalue_container"
      {...props}
    >
      {multiKit === 'badge' &&
        <Badge
          closeProps={removeProps}
          removeIcon
          text={label}
          variant="primary"
        />
      }

      {multiKit !== 'badge' && imageUrl &&
        <FormPill
          avatarUrl={imageUrl}
          closeProps={removeProps}
          marginRight="xs"
          name={label}
          size={multiKit === 'smallPill' ? 'small' : ''}
          text=''
        />
      }

      {multiKit !== 'badge' && !imageUrl &&
        <FormPill
          closeProps={removeProps}
          marginRight="xs"
          name=''
          size={multiKit === 'smallPill' ? 'small' : ''}
          text={label}
        />
      }
    </components.MultiValueContainer>
  )
}

export default MultiValue

Version data entries

526 entries across 526 versions & 1 rubygems

Version Path
playbook_ui-14.4.0.pre.rc.14 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.13 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.PBNTR515typeaheadmarginbottomredux3785 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.revert3614PBNTR455ganttchartPOC3783 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.12 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.play1472newicons3773 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.11 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.PBNTR490multilevelselect3771 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.10 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.PBNTR490multilevelselect3766 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.9 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.8 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.PBNTR480radiocustomchildrenprop3759 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2.pre.alpha.PBNTR515typeaheadmarginbottomredux3756 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.7 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.2 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.4.0.pre.rc.6 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3750 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3752 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx
playbook_ui-14.3.1.pre.alpha.PBNTR515typeaheadmarginbottomredux3751 app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx