Sha256: 704ca3f16a86229e01c7c941edf8572e684d1e0633f46538a39c3cf9dff73d7d

Contents?: true

Size: 1.9 KB

Versions: 643

Compression:

Stored size: 1.9 KB

Contents

import React, { useContext } from 'react'
import classnames from 'classnames'
import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../../utilities/props'
import { globalProps, GlobalProps } from '../../utilities/globalProps'

import { CloseIcon } from '../_close_icon'
import { DialogContext } from '../_dialog_context'
import Flex from '../../pb_flex/_flex'
import SectionSeparator from '../../pb_section_separator/_section_separator'

type DialogHeaderProps = {
  aria?: {[key: string]: string},
  children: React.ReactNode[] | React.ReactNode | string,
  className?: string,
  closeable?: boolean,
  data?: {[key: string]: string},
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
  padding?: string,
  separator?: boolean,
  spacing?: "none" | "between" | "around" | "evenly",
  text?: string,
  title?: string,
} & GlobalProps

const DialogHeader = (props: DialogHeaderProps): React.ReactElement => {
  const {
    aria = {},
    children,
    className,
    data = {},
    htmlOptions = {},
    spacing = "between",
    closeable = true,
    separator = true,
  } = props

  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const htmlProps = buildHtmlProps(htmlOptions)
  const api = useContext(DialogContext)
  const headerCSS = buildCss("dialog_header")
  const headerSpacing = globalProps(props)

  /* eslint-disable react/jsx-handler-names */

  return (
    <div className="dialog_sticky_header">
      <Flex
          {...ariaProps}
          {...dataProps}
          {...htmlProps}
          className={classnames(headerCSS, headerSpacing, className)}
          spacing={spacing}
      >
        {children}
        {closeable &&
          <CloseIcon
              onClose={api.onClose}
          />
        }
        
      </Flex>
      {separator &&
        <SectionSeparator />
      }
    </div>
  )
}

export default DialogHeader

Version data entries

643 entries across 643 versions & 1 rubygems

Version Path
playbook_ui-14.10.0.pre.rc.23 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.22 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.21 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment5060 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.20 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.19 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.18 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.PLAY1660reactdropzone5020 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.17 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.16 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.play17004992 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment4991 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.15 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.PLAY16264952 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.PLAY1731inputmasking4927 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.play1742globalheightfixes4926 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.play1742globalheightfixes4925 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.14 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.10.0.pre.rc.13 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx
playbook_ui-14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4903 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_header.tsx