Sha256: c30ab0f8bb7aeadcd1edd0caca579e70d3d319ddd7fb52424b917a80b96d0609

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

/* @flow */

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

type BackgroundProps = {
  aria?: object,
  backgroundColor?: 'gradient' | 'dark' | 'light' | 'white',
  children?: array<React.ReactNode> | React.ReactNode,
  className?: string,
  data?: object,
  id?: string,
  imageUrl?: string,
  padding?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl',
  tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div',
}

const Background = (props: BackgroundProps) => {
  const {
    aria = {},
    backgroundColor = 'light',
    children,
    className,
    data = {},
    id,
    imageUrl = '',
    padding = 'md',
    tag = 'div',
  } = props

  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const classes = classnames(buildCss('pb_background_kit'), className, globalProps(props, { padding }))
  const Tag = `${tag}`
  const backgroundStyle = {
    backgroundImage: `url(${imageUrl})`,
    backgroundSize: 'cover',
  }

  return (
    <Tag
        {...ariaProps}
        {...dataProps}
        id={id}
    >
      <If condition={imageUrl}>
        <div
            className={classes + 'lazyload blur_up'}
            style={backgroundStyle}
        >
          { children }
        </div>
        <Else />
        <div className={classes + `bg_${backgroundColor}`}>
          { children }
        </div>
      </If>
    </Tag>
  )
}

export default Background

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-7.1.1.pre.alpha1 app/pb_kits/playbook/pb_background/_background.jsx
playbook_ui-7.0.1.pre.alpha14 app/pb_kits/playbook/pb_background/_background.jsx