Sha256: 3f9a410ef4ae37579c12f12af009fbee5ca20897ed741ef790448fa594537aa6

Contents?: true

Size: 1.43 KB

Versions: 40

Compression:

Stored size: 1.43 KB

Contents

import React from 'react'

import { buildCss } from '../utilities/props'
import { deprecatedProps, globalProps } from '../utilities/globalProps'

import Flex from '../pb_flex/_flex'
import FlexItem from '../pb_flex/_flex_item'
import SectionSeparator from '../pb_section_separator/_section_separator'
import TimeStacked from '../pb_time_stacked/_time_stacked'
import DateStacked from '../pb_date_stacked/_date_stacked'

type DateTimeStackedProps = {
  id?: string,
  date: Date,
  datetime: Date,
  dark: boolean,
  timeZone?: string,
}

const DateTimeStacked = (props: DateTimeStackedProps): React.ReactElement => {
  if (props.date) deprecatedProps('Date Time Stacked', ['date'])

  const {
    date,
    datetime,
    dark,
    timeZone = 'America/New_York',
  } = props

  const classes = buildCss('pb_date_time_stacked_kit', globalProps(props))

  return (
    <Flex
        inline={false}
        vertical="stretch"
        {...props}
    >
      <FlexItem>
        <DateStacked
            align="right"
            bold
            dark={dark}
            date={date || datetime}
        />
      </FlexItem>

      <SectionSeparator
          className="date-time-padding"
          orientation="vertical"
      />
      <FlexItem>
        <TimeStacked
            className={classes}
            dark={dark}
            date={date || datetime}
            timeZone={timeZone}
        />
      </FlexItem>
    </Flex>
  )
}

export default DateTimeStacked

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
playbook_ui-13.5.0.pre.alpha.PLAY823globalpropoverflow1191 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.5.0.pre.alpha.PLAY823globalpropoverflow1188 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.5.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.4.0.pre.alpha.PLAY973Hash1181 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.4.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.3.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.2.0.pre.alpha.PLAY986dateTimeRounding1150 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.2.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.1.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.0.0.pre.alpha.PLAY966collapsiblenav41129 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.0.0.pre.alpha.PLAY966collapsiblenav41128 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.0.0.pre.alpha.PLAY966collapsiblenav41126 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.0.0.pre.alpha.salesbookmismatchingdate1120 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.39.0.pre.alpha.salesbookmismatchingdate1117 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-13.0.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.39.0.pre.alpha.PLAY966collapsiblenav41115 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.39.0.pre.alpha.salesbookmismatchingdate1114 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.39.0 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.38.0.pre.alpha.PBNTR78selectkitmultipleprop1094 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx
playbook_ui-12.38.0.pre.alpha.PLAY932removemomentqp1088 app/pb_kits/playbook/pb_date_time_stacked/_date_time_stacked.tsx