import classNames from "classnames"; import * as React from "react"; import * as Classes from "../../common/classes"; import { DISPLAYNAME_PREFIX, IIntentProps, IProps } from "../../common/props"; import { clamp } from "../../common/utils"; export interface IProgressBarProps extends IProps, IIntentProps { /** * Whether the background should animate. * @default true */ animate?: boolean; /** * Whether the background should be striped. * @default true */ stripes?: boolean; /** * A value between 0 and 1 (inclusive) representing how far along the operation is. * Values below 0 or above 1 will be interpreted as 0 or 1, respectively. * Omitting this prop will result in an "indeterminate" progress meter that fills the entire bar. */ value?: number; } export class ProgressBar extends React.PureComponent { public static displayName = `${DISPLAYNAME_PREFIX}.ProgressBar`; public render() { const { animate = true, className, intent, stripes = true, value } = this.props; const classes = classNames( Classes.PROGRESS_BAR, Classes.intentClass(intent), { [Classes.PROGRESS_NO_ANIMATION]: !animate, [Classes.PROGRESS_NO_STRIPES]: !stripes }, className, ); // don't set width if value is null (rely on default CSS value) const width = value == null ? null : 100 * clamp(value, 0, 1) + "%"; return (
); } }