Файловый менеджер - Редактировать - /home/freeclou/app.optimyar.com/backend/node_modules/react-with-direction/src/DirectionProvider.jsx
Назад
// This component provides a string to React context that is consumed by the // withDirection higher-order component. We can use this to give access to // the current layout direction for components to use. import PropTypes from 'prop-types'; import React from 'react'; import { forbidExtraProps } from 'airbnb-prop-types'; import brcast from 'brcast'; import brcastShape from './proptypes/brcast'; import directionPropType from './proptypes/direction'; import { DIRECTIONS, CHANNEL } from './constants'; const propTypes = forbidExtraProps({ children: PropTypes.node.isRequired, direction: directionPropType.isRequired, inline: PropTypes.bool, lang: PropTypes.string, }); const defaultProps = { inline: false, }; const childContextTypes = { [CHANNEL]: brcastShape, }; export { DIRECTIONS }; export default class DirectionProvider extends React.Component { constructor(props) { super(props); this.broadcast = brcast(props.direction); } getChildContext() { return { [CHANNEL]: this.broadcast, }; } componentWillReceiveProps(nextProps) { if (this.props.direction !== nextProps.direction) { this.broadcast.setState(nextProps.direction); } } render() { const { children, direction, inline, lang } = this.props; const Tag = inline ? 'span' : 'div'; return ( <Tag dir={direction} {...(lang && { lang })}> {React.Children.only(children)} </Tag> ); } } DirectionProvider.propTypes = propTypes; DirectionProvider.defaultProps = defaultProps; DirectionProvider.childContextTypes = childContextTypes;
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка