UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

189 lines (182 loc) 5.13 kB
function _extends() { _extends = Object.assign || 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); } import color from 'color'; import * as React from 'react'; import { Animated, View, StyleSheet } from 'react-native'; import ActivityIndicator from '../ActivityIndicator'; import Surface from '../Surface'; import CrossFadeIcon from '../CrossFadeIcon'; import Icon from '../Icon'; import Text from '../Typography/Text'; import TouchableRipple from '../TouchableRipple/TouchableRipple'; import { black, white } from '../../styles/colors'; import { withTheme } from '../../core/theming'; /** * A floating action button represents the primary action in an application. * * <div class="screenshots"> * <img src="screenshots/fab-1.png" /> * <img src="screenshots/fab-2.png" /> * </div> * * ## Usage * ```js * import * as React from 'react'; * import { StyleSheet } from 'react-native'; * import { FAB } from 'react-native-paper'; * * const MyComponent = () => ( * <FAB * style={styles.fab} * small * icon="plus" * onPress={() => console.log('Pressed')} * /> * ); * * const styles = StyleSheet.create({ * fab: { * position: 'absolute', * margin: 16, * right: 0, * bottom: 0, * }, * }) * * export default MyComponent; * ``` */ const FAB = ({ small, icon, label, accessibilityLabel = label, accessibilityState, animated = true, color: customColor, disabled, onPress, onLongPress, theme, style, visible = true, uppercase = true, loading, testID, ...rest }) => { const { current: visibility } = React.useRef(new Animated.Value(visible ? 1 : 0)); const { scale } = theme.animation; React.useEffect(() => { if (visible) { Animated.timing(visibility, { toValue: 1, duration: 200 * scale, useNativeDriver: true }).start(); } else { Animated.timing(visibility, { toValue: 0, duration: 150 * scale, useNativeDriver: true }).start(); } }, [visible, scale, visibility]); const IconComponent = animated ? CrossFadeIcon : Icon; const disabledColor = color(theme.dark ? white : black).alpha(0.12).rgb().string(); const { backgroundColor = disabled ? disabledColor : theme.colors.accent } = StyleSheet.flatten(style) || {}; let foregroundColor; if (typeof customColor !== 'undefined') { foregroundColor = customColor; } else if (disabled) { foregroundColor = color(theme.dark ? white : black).alpha(0.32).rgb().string(); } else { foregroundColor = !color(backgroundColor).isLight() ? white : 'rgba(0, 0, 0, .54)'; } const rippleColor = color(foregroundColor).alpha(0.32).rgb().string(); return /*#__PURE__*/React.createElement(Surface, _extends({}, rest, { style: [{ backgroundColor, opacity: visibility, transform: [{ scale: visibility }] }, styles.container, disabled && styles.disabled, style], pointerEvents: visible ? 'auto' : 'none' }), /*#__PURE__*/React.createElement(TouchableRipple, { borderless: true, onPress: onPress, onLongPress: onLongPress, rippleColor: rippleColor, disabled: disabled, accessibilityLabel: accessibilityLabel, accessibilityTraits: disabled ? ['button', 'disabled'] : 'button', accessibilityComponentType: "button", accessibilityRole: "button", accessibilityState: { ...accessibilityState, disabled }, style: styles.touchable, testID: testID }, /*#__PURE__*/React.createElement(View, { style: [styles.content, label ? styles.extended : small ? styles.small : styles.standard], pointerEvents: "none" }, icon && loading !== true ? /*#__PURE__*/React.createElement(IconComponent, { source: icon, size: 24, color: foregroundColor }) : null, loading ? /*#__PURE__*/React.createElement(ActivityIndicator, { size: 18, color: foregroundColor }) : null, label ? /*#__PURE__*/React.createElement(Text, { selectable: false, style: [styles.label, uppercase && styles.uppercaseLabel, { color: foregroundColor, ...theme.fonts.medium }] }, label) : null))); }; const styles = StyleSheet.create({ container: { borderRadius: 28, elevation: 6 }, touchable: { borderRadius: 28 }, standard: { height: 56, width: 56 }, small: { height: 40, width: 40 }, extended: { height: 48, paddingHorizontal: 16 }, content: { flexDirection: 'row', alignItems: 'center', justifyContent: 'center' }, label: { marginHorizontal: 8 }, uppercaseLabel: { textTransform: 'uppercase' }, disabled: { elevation: 0 } }); export default withTheme(FAB); // @component-docs ignore-next-line const FABWithTheme = withTheme(FAB); // @component-docs ignore-next-line export { FABWithTheme as FAB }; //# sourceMappingURL=FAB.js.map