UNPKG

@breakaway/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

51 lines 3.44 kB
import { __rest } from "tslib"; import * as React from 'react'; import styles from '@breakaway/react-styles/css/components/Timestamp/timestamp'; import { css } from '@breakaway/react-styles'; import { Tooltip } from '../Tooltip'; import { isValidDate } from '../../helpers/datetimeUtils'; export var TimestampFormat; (function (TimestampFormat) { TimestampFormat["full"] = "full"; TimestampFormat["long"] = "long"; TimestampFormat["medium"] = "medium"; TimestampFormat["short"] = "short"; })(TimestampFormat || (TimestampFormat = {})); export var TimestampTooltipVariant; (function (TimestampTooltipVariant) { TimestampTooltipVariant["default"] = "default"; TimestampTooltipVariant["custom"] = "custom"; })(TimestampTooltipVariant || (TimestampTooltipVariant = {})); export const Timestamp = (_a) => { var { children, className, customFormat, date: dateProp, dateFormat, displaySuffix = '', is12Hour, locale, timeFormat, tooltip } = _a, props = __rest(_a, ["children", "className", "customFormat", "date", "dateFormat", "displaySuffix", "is12Hour", "locale", "timeFormat", "tooltip"]); const [date, setDate] = React.useState(() => { const initDate = new Date(dateProp); if (isValidDate(initDate)) { return initDate; } return new Date(); }); React.useEffect(() => { const dateFromProp = new Date(dateProp); if (isValidDate(dateFromProp) && dateFromProp.toString() !== new Date(date).toString()) { setDate(dateFromProp); } else if (!dateProp) { setDate(new Date()); } }, [dateProp]); const hasTimeFormat = timeFormat && !customFormat; const formatOptions = Object.assign(Object.assign(Object.assign({}, (dateFormat && !customFormat && { dateStyle: dateFormat })), (customFormat && Object.assign({}, customFormat))), (is12Hour !== undefined && { hour12: is12Hour })); const dateAsLocaleString = new Date(date).toLocaleString(locale, Object.assign(Object.assign({}, formatOptions), (hasTimeFormat && { timeStyle: timeFormat }))); const defaultDisplay = `${dateAsLocaleString}${displaySuffix ? ' ' + displaySuffix : ''}`; const utcTimeFormat = timeFormat !== 'short' ? 'medium' : 'short'; const convertToUTCString = (date) => new Date(date).toUTCString().slice(0, -3); const utcDateString = new Date(convertToUTCString(date)).toLocaleString(locale, Object.assign(Object.assign({}, formatOptions), (hasTimeFormat && { timeStyle: utcTimeFormat }))); const defaultTooltipContent = `${utcDateString}${(tooltip === null || tooltip === void 0 ? void 0 : tooltip.suffix) ? ' ' + tooltip.suffix : ' UTC'}`; const { dateTime } = props, propsWithoutDateTime = __rest(props, ["dateTime"]); const timestamp = (React.createElement("span", Object.assign({ className: css(styles.timestamp, tooltip && styles.modifiers.helpText, className) }, (tooltip && { tabIndex: 0 }), propsWithoutDateTime), React.createElement("time", { className: "pf-c-timestamp__text", dateTime: dateTime || new Date(date).toISOString() }, !children ? defaultDisplay : children))); return tooltip ? (React.createElement(Tooltip, Object.assign({ content: tooltip.variant === TimestampTooltipVariant.default ? defaultTooltipContent : tooltip.content }, tooltip.tooltipProps), timestamp)) : (timestamp); }; Timestamp.displayName = 'Timestamp'; //# sourceMappingURL=Timestamp.js.map