Sha256: 899f34dac7c4aaa87aea3d47a91fcfb70ac6bfd032f534376b40d972df88732e

Contents?: true

Size: 1.59 KB

Versions: 122

Compression:

Stored size: 1.59 KB

Contents

import React from 'react'
import classnames from 'classnames'

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

import TimelineItem from './_item'
import {
  TimelineStep,
  TimelineLabel,
  TimelineDetail,
} from './subcomponents'

type TimelineProps = {
  aria?: { [key: string]: string },
  children?: React.ReactChild[] | React.ReactChild,
  className?: string,
  data?: { [key: string]: string },
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
  orientation?: string,
  showDate?: boolean,
  gap?: 'xs' | 'sm' | 'md' | 'lg' | 'none',
} & GlobalProps

const Timeline = ({
  aria = {},
  className,
  children,
  data = {},
  htmlOptions = {},
  id,
  orientation = 'horizontal',
  showDate = false,
  gap = 'none',
  ...props
}: TimelineProps): React.ReactElement => {
  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const htmlProps = buildHtmlProps(htmlOptions)
  const dateStyle = showDate === true ? '_with_date' : ''
  const gapStyle = gap === 'none' ? '' : `gap_${gap}`
  const timelineCss = buildCss('pb_timeline_kit', `${orientation}`, dateStyle, gapStyle)

  return (
    <div
        {...ariaProps}
        {...dataProps}
        {...htmlProps}
        className={classnames(timelineCss, globalProps(props), className)}
        id={id}
    >
      {children}
    </div>
  )
}

Timeline.Item = TimelineItem
Timeline.Step = TimelineStep
Timeline.Label = TimelineLabel
Timeline.Detail = TimelineDetail

export default Timeline

Version data entries

122 entries across 122 versions & 1 rubygems

Version Path
playbook_ui-14.11.0.pre.rc.15 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.14 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.13 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.12 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5274 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1465attempt25272 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.11 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.10 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5214 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5213 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5210 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5208 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5207 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play16825206 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5204 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5201 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.9 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5200 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.8 app/pb_kits/playbook/pb_timeline/_timeline.tsx
playbook_ui-14.11.0.pre.rc.7 app/pb_kits/playbook/pb_timeline/_timeline.tsx