jiti-meet/react/features/base/toolbox/components/AbstractToolboxItem.js

234 lines
5.4 KiB
JavaScript
Raw Normal View History

// @flow
import { Component } from 'react';
import type { StyleType } from '../../styles';
export type Styles = {
/**
* Style for the item's icon.
*/
iconStyle: StyleType,
/**
2018-05-16 21:49:03 +00:00
* Style for the item's label.
*/
labelStyle: StyleType,
/**
* Style for the item itself.
*/
style: StyleType,
/**
* Color for the item underlay (shows when clicked).
*/
underlayColor: ?string
};
export type Props = {
/**
* A succinct description of what the item does. Used by accessibility
* tools and torture tests.
*/
accessibilityLabel: string,
/**
* An extra class name to be added at the end of the element's class name
* in order to enable custom styling.
*/
customClass?: string,
/**
* Whether this item is disabled or not. When disabled, clicking an the item
* has no effect, and it may reflect on its style.
*/
disabled: boolean,
/**
* A React Element to display at the end of {@code ToolboxItem}.
*/
elementAfter?: React$Node,
/**
2019-08-30 16:39:06 +00:00
* The icon to render for this {@code ToolboxItem}.
*/
2019-08-30 16:39:06 +00:00
icon: Object,
/**
* The text associated with this item. When `showLabel` is set to
* {@code true}, it will be displayed alongside the icon.
*/
label: string,
/**
* On click handler.
*/
onClick: Function,
/**
* Whether to show the label or not.
*/
showLabel: boolean,
/**
* Collection of styles for the item. Used only on native.
*/
styles: ?Styles,
/**
* Invoked to obtain translated strings.
*/
t: ?Function,
2019-08-30 16:39:06 +00:00
/**
* True if the item is toggled, false otherwise.
*/
2022-01-07 10:54:42 +00:00
toggled: ?boolean,
2019-08-30 16:39:06 +00:00
/**
* The text to display in the tooltip. Used only on web.
*/
tooltip: ?string,
/**
* From which direction the tooltip should appear, relative to the
* item. Used only on web.
*/
tooltipPosition: string,
/**
* Whether this item is visible or not.
*/
visible: boolean
};
/**
* Abstract (base) class for an item in {@link Toolbox}. The item can be located
* anywhere in the {@link Toolbox}, it will morph its shape to accommodate it.
*
* @abstract
*/
export default class AbstractToolboxItem<P : Props> extends Component<P> {
/**
* Default values for {@code AbstractToolboxItem} component's properties.
*
* @static
*/
static defaultProps = {
disabled: false,
label: '',
showLabel: false,
t: undefined,
tooltip: '',
tooltipPosition: 'top',
visible: true
};
/**
* Initializes a new {@code AbstractToolboxItem} instance.
*
* @param {Object} props - The React {@code Component} props to initialize
* the new {@code AbstractToolboxItem} instance with.
*/
constructor(props: P) {
super(props);
// Bind event handlers so they are only bound once per instance.
this._onClick = this._onClick.bind(this);
}
/**
* Helper property to get the item label. If a translation function was
* provided then it will be translated using it.
*
* @protected
* @returns {?string}
*/
get label(): ?string {
return this._maybeTranslateAttribute(this.props.label, this.props.labelProps);
}
/**
* Helper property to get the item tooltip. If a translation function was
* provided then it will be translated using it.
*
* @protected
* @returns {?string}
*/
get tooltip(): ?string {
return this._maybeTranslateAttribute(this.props.tooltip);
}
fix(i18n) Accessiblity labels translations (#3071) * fix(toolbar): accessibilityLabel should be translatable. This commit adds a helper property to get the accessibilityLabel of an item, providing a translation if one is available. This mimics the behavior of label and tooltip. * fix(toolbar) 'hangup' button accessibilityLabel i18n * fix(toolbar) 'mute' button accessibilityLabel i18n * fix(toolbar) 'videomute' button accessibilityLabel i18n * fix(toolbar) 'moreActions' button accessibilityLabel i18n * fix(toolbar) 'shareRoom' button accessibilityLabel i18n * fix(toolbar) 'audioRoute' button accessibilityLabel i18n * fix(toolbar) 'toggleCamera' button accessibilityLabel i18n * fix(toolbar) 'audioOnly' button accessibilityLabel i18n * fix(toolbar) 'roomLock' button accessibilityLabel i18n * fix(toolbar) 'pip' button accessibilityLabel i18n * fix(toolbar) 'invite' button accessibilityLabel i18n * fix(toolbar) 'raiseHand' button accessibilityLabel i18n * fix(toolbar) 'chat' button accessibilityLabel i18n * fix(toolbar) 'shareYourScreen' button accessibilityLabel i18n * fix(toolbar) 'fullScreen' button accessibilityLabel i18n * fix(toolbar) 'sharedvideo' button accessibilityLabel i18n * fix(toolbar) 'document' button accessibilityLabel i18n * fix(toolbar) 'speakerStats' button accessibilityLabel i18n * fix(toolbar) 'feedback' button accessibilityLabel i18n * fix(toolbar) 'shortcuts' button accessibilityLabel i18n * fix(toolbar) 'recording' button accessibilityLabel i18n * fix(toolbar) 'settings' button accessibilityLabel i18n * fix(welcomepage) accessibilityLabels i18n * fix(toolbar) 'info' button accessibilityLabel i18n * fix(i18n): Add translation to various aria-label property values. * fix(i18n): Differentiate between overflow menu and button.
2018-06-07 20:32:18 +00:00
/**
* Helper property to get the item accessibilityLabel. If a translation
* function was provided then it will be translated using it.
*
* @protected
* @returns {?string}
*/
get accessibilityLabel(): ?string {
return this._maybeTranslateAttribute(this.props.accessibilityLabel);
}
/**
* Utility function to translate the given string, if a translation
* function is available.
*
* @param {string} text - What needs translating.
* @param {string} textProps - Additional properties for translation text.
* @private
* @returns {string}
*/
_maybeTranslateAttribute(text, textProps) {
const { t } = this.props;
if (textProps) {
return typeof t === 'function' ? t(text, textProps) : `${text} ${textProps}`;
}
2018-05-11 02:10:26 +00:00
return typeof t === 'function' ? t(text) : text;
}
_onClick: (*) => void;
/**
* Handles clicking/pressing this {@code AbstractToolboxItem} by
* forwarding the event to the {@code onClick} prop of this instance if any.
*
* @protected
* @returns {void}
*/
_onClick(...args) {
const { disabled, onClick } = this.props;
2018-05-11 02:10:26 +00:00
disabled || (onClick && onClick(...args));
}
/**
2018-05-16 21:49:03 +00:00
* Renders this {@code AbstractToolboxItem} (if it is {@code visible}). To
* be implemented/overridden by extenders. The default implementation of
* {@code AbstractToolboxItem} does nothing.
*
* @protected
* @returns {ReactElement}
*/
_renderItem() {
// To be implemented by a subclass.
2019-03-19 15:42:25 +00:00
return null;
}
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
2018-05-11 02:10:26 +00:00
return this.props.visible ? this._renderItem() : null;
}
}