Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

Calendar Popover

This component shows a Popover with a calendar inside.

Beyond combining Popover and PostSchedule, this component connects with the state-tree, so in this way timezone data related to the site configuration is propagated automatically.

Usage

import { Button } from '@automattic/components';
import CalendarPopover from 'calypso/blocks/calendar-popover';

const toggle = () => this.setState( { show: ! this.state.show } );
const buttonRef = React.createRef();

function render() {
    return (
        <div>
            <Button ref={ buttonRef } onClick={ this.toggle }>
                Show Popover
            </Button>

            <CalendarPopover context={ buttonRef } isVisible={ this.state.show } />
        </div>
    );
}

Props

The following props can be passed to the CalendarPopover component:

children

TypeElement
RequiredNo

Connect Props

gmtOffset

TypeNumber

The site's UTC offset.

timezoneValue

TypeString

The site's timezone value, in the format of 'America/Araguaina (see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).

Props propagated to the <Popover />

  • autoPosition
  • closeOnEsc
  • ignoreContext
  • isVisible
  • position
  • showDelay
  • onClose
  • onShow

Props propagated to the <PostSchedule />

  • events
  • selectedDay
  • siteId
  • onDateChange
  • onMonthChange