123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- // @flow
-
- import React, { Component } from 'react';
-
- import ToolboxItem from '../ToolboxItem';
- import type { Styles } from '../AbstractToolboxItem';
-
- export type Props = {
-
- /**
- * Whether to show the label or not.
- */
- showLabel: boolean,
-
- /**
- * Collection of styles for the button.
- */
- styles: ?Styles,
-
- /**
- * Collection of styles for the button, when in toggled state.
- */
- toggledStyles: ?Styles,
-
- /**
- * From which direction the tooltip should appear, relative to the
- * button.
- */
- tooltipPosition: string,
-
- /**
- * Whether this button is visible or not.
- */
- visible: boolean
- };
-
- /**
- * An abstract implementation of a button.
- */
- export default class AbstractButton<P: Props, S : *> extends Component<P, S> {
- static defaultProps = {
- showLabel: false,
- styles: undefined,
- toggledStyles: undefined,
- tooltipPosition: 'top',
- visible: true
- };
-
- /**
- * A succinct description of what the button does. Used by accessibility
- * tools and torture tests.
- *
- * @abstract
- */
- accessibilityLabel: string;
-
- /**
- * The name of the icon of this button.
- *
- * @abstract
- */
- iconName: string;
-
- /**
- * The text associated with this button. When `showLabel` is set to
- * {@code true}, it will be displayed alongside the icon.
- *
- * @abstract
- */
- label: string;
-
- /**
- * The name of the icon of this button, when toggled.
- *
- * @abstract
- */
- toggledIconName: string;
-
- /**
- * The text to display in the tooltip. Used only on web.
- *
- * @abstract
- */
- tooltip: string;
-
- /**
- * Initializes a new {@code AbstractButton} instance.
- *
- * @param {Props} props - The React {@code Component} props to initialize
- * the new {@code AbstractAudioMuteButton} instance with.
- */
- constructor(props: P) {
- super(props);
-
- this._onClick = this._onClick.bind(this);
- }
-
- /**
- * Helper function to be implemented by subclasses, which should be used
- * to handle the button being clicked / pressed.
- *
- * @abstract
- * @private
- * @returns {void}
- */
- _handleClick() {
- // To be implemented by subclass.
- }
-
- /**
- * Gets the current icon name, taking the toggled state into account. If no
- * toggled icon is provided, the regular icon will also be used in the
- * toggled state.
- *
- * @private
- * @returns {string}
- */
- _getIconName() {
- return (this._isToggled() ? this.toggledIconName : this.iconName)
- || this.iconName;
- }
-
- /**
- * Gets the current styles, taking the toggled state into account. If no
- * toggled styles are provided, the regular styles will also be used in the
- * toggled state.
- *
- * @private
- * @returns {?Styles}
- */
- _getStyles() {
- const { styles, toggledStyles } = this.props;
-
- return (this._isToggled() ? toggledStyles : styles) || styles;
- }
-
- /**
- * Helper function to be implemented by subclasses, which must return a
- * boolean value indicating if this button is disabled or not.
- *
- * @private
- * @returns {boolean}
- */
- _isDisabled() {
- return false;
- }
-
- /**
- * Helper function to be implemented by subclasses, which must return a
- * boolean value indicating if this button is toggled or not.
- *
- * @private
- * @returns {boolean}
- */
- _isToggled() {
- return false;
- }
-
- _onClick: (*) => void;
-
- /**
- * Handles clicking / pressing the button, and toggles the audio mute state
- * accordingly.
- *
- * @private
- * @returns {void}
- */
- _onClick() {
- this._handleClick();
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const props = {
- ...this.props,
- accessibilityLabel: this.accessibilityLabel,
- iconName: this._getIconName(),
- label: this.label,
- styles: this._getStyles(),
- tooltip: this.tooltip
- };
-
- return (
- <ToolboxItem
- disabled = { this._isDisabled() }
- onClick = { this._onClick }
- { ...props } />
- );
- }
- }
|