/* * The MIT License (MIT) * * Copyright (c) 2015 - present Instructure, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ import { Component, MouseEvent, KeyboardEvent } from 'react' import { View } from '@instructure/ui-view/latest' import type { ViewProps } from '@instructure/ui-view/latest' import { AccessibleContent } from '@instructure/ui-a11y-content' import { omitProps, callRenderProp, getElementType } from '@instructure/ui-react-utils' import { withStyle } from '@instructure/emotion' import generateStyle from './styles' import { allowedProps } from './props' import type { CalendarDayProps, CalendarDayStyleProps } from './props' /** --- parent: Calendar id: Calendar.Day --- **/ @withStyle(generateStyle) class Day extends Component { static readonly componentId = 'Calendar.Day' static allowedProps = allowedProps static defaultProps = { interaction: 'enabled', isSelected: false, isToday: false, isOutsideMonth: false } as const ref: Element | null = null componentDidMount() { this.props.makeStyles?.(this.makeStylesVariables) } componentDidUpdate() { this.props.makeStyles?.(this.makeStylesVariables) } get makeStylesVariables(): CalendarDayStyleProps { return { isDisabled: this.isDisabled } } get isDisabled() { const { interaction } = this.props return interaction === 'disabled' } get elementType() { const { as } = this.props return as || getElementType(Day, this.props) } shouldApplyAriaSelected() { const { role } = this.props return !!role && ['option', 'gridcell'].indexOf(role) > -1 } handleClick = (event: MouseEvent) => { const { onClick, date } = this.props if (typeof onClick === 'function') { onClick(event, { date }) } } handleKeyDown = (event: KeyboardEvent) => { const { onKeyDown, date } = this.props if (typeof onKeyDown === 'function') { onKeyDown(event, { date }) } } handleElementRef = (el: Element | null) => { const { elementRef } = this.props this.ref = el if (typeof elementRef === 'function') { elementRef(el) } } render() { const { children, label, interaction, isOutsideMonth, isSelected, isToday, onClick, onKeyDown, as, styles, ...props } = this.props const { elementType, isDisabled } = this const passthroughProps = View.omitViewProps( omitProps(props, Day.allowedProps), Day ) return ( {callRenderProp(children)} ) } } export default Day export { Day }