react-native-paper
Version:
Material design for React Native
65 lines (64 loc) • 3.42 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.customAnimatedText = void 0;
var React = _interopRequireWildcard(require("react"));
var _reactNative = require("react-native");
var _theming = require("../../core/theming");
var _forwardRef = require("../../utils/forwardRef");
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
/**
* Animated text component which follows styles from the theme.
*
* @extends Text props https://reactnative.dev/docs/text#props
*/
const AnimatedText = (0, _forwardRef.forwardRef)(function AnimatedText(_ref, ref) {
let {
style,
theme: themeOverrides,
variant,
...rest
} = _ref;
const theme = (0, _theming.useInternalTheme)(themeOverrides);
const writingDirection = _reactNative.I18nManager.getConstants().isRTL ? 'rtl' : 'ltr';
if (theme.isV3 && variant) {
const font = theme.fonts[variant];
if (typeof font !== 'object') {
throw new Error(`Variant ${variant} was not provided properly. Valid variants are ${Object.keys(theme.fonts).join(', ')}.`);
}
return /*#__PURE__*/React.createElement(_reactNative.Animated.Text, _extends({
ref: ref
}, rest, {
style: [font, styles.text, {
writingDirection,
color: theme.colors.onSurface
}, style]
}));
} else {
const font = !theme.isV3 ? theme.fonts.regular : theme.fonts.bodyMedium;
const textStyle = {
...font,
color: theme.isV3 ? theme.colors.onSurface : theme.colors.text
};
return /*#__PURE__*/React.createElement(_reactNative.Animated.Text, _extends({
ref: ref
}, rest, {
style: [styles.text, textStyle, {
writingDirection
}, style]
}));
}
});
const styles = _reactNative.StyleSheet.create({
text: {
textAlign: 'left'
}
});
const customAnimatedText = () => AnimatedText;
exports.customAnimatedText = customAnimatedText;
var _default = AnimatedText;
exports.default = _default;
//# sourceMappingURL=AnimatedText.js.map
;