UNPKG

repoweaver

Version:

A GitHub App that skillfully weaves multiple templates together to create and update repositories with intelligent merge strategies

1 lines 19.8 kB
{"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nimport * as React from 'react';\nimport Animated from \"react-native-web/dist/exports/Animated\";\nimport StyleSheet from \"react-native-web/dist/exports/StyleSheet\";\nimport View from \"react-native-web/dist/exports/View\";\nimport color from 'color';\nimport { getSegmentedButtonBorderRadius, getSegmentedButtonColors, getSegmentedButtonDensityPadding } from \"./utils\";\nimport { useInternalTheme } from \"../../core/theming\";\nimport Icon from \"../Icon\";\nimport TouchableRipple from \"../TouchableRipple/TouchableRipple\";\nimport Text from \"../Typography/Text\";\nvar SegmentedButtonItem = function SegmentedButtonItem(_ref) {\n var checked = _ref.checked,\n accessibilityLabel = _ref.accessibilityLabel,\n disabled = _ref.disabled,\n style = _ref.style,\n labelStyle = _ref.labelStyle,\n showSelectedCheck = _ref.showSelectedCheck,\n checkedColor = _ref.checkedColor,\n uncheckedColor = _ref.uncheckedColor,\n customRippleColor = _ref.rippleColor,\n background = _ref.background,\n icon = _ref.icon,\n testID = _ref.testID,\n label = _ref.label,\n onPress = _ref.onPress,\n segment = _ref.segment,\n _ref$density = _ref.density,\n density = _ref$density === void 0 ? 'regular' : _ref$density,\n themeOverrides = _ref.theme,\n labelMaxFontSizeMultiplier = _ref.labelMaxFontSizeMultiplier,\n hitSlop = _ref.hitSlop;\n var theme = useInternalTheme(themeOverrides);\n var checkScale = React.useRef(new Animated.Value(0)).current;\n React.useEffect(function () {\n if (!showSelectedCheck) {\n return;\n }\n if (checked) {\n Animated.spring(checkScale, {\n toValue: 1,\n useNativeDriver: true\n }).start();\n } else {\n Animated.spring(checkScale, {\n toValue: 0,\n useNativeDriver: true\n }).start();\n }\n }, [checked, checkScale, showSelectedCheck]);\n var roundness = theme.roundness,\n isV3 = theme.isV3;\n var _getSegmentedButtonCo = getSegmentedButtonColors({\n checked: checked,\n theme: theme,\n disabled: disabled,\n checkedColor: checkedColor,\n uncheckedColor: uncheckedColor\n }),\n borderColor = _getSegmentedButtonCo.borderColor,\n textColor = _getSegmentedButtonCo.textColor,\n borderWidth = _getSegmentedButtonCo.borderWidth,\n backgroundColor = _getSegmentedButtonCo.backgroundColor;\n var borderRadius = (isV3 ? 5 : 1) * roundness;\n var segmentBorderRadius = getSegmentedButtonBorderRadius({\n theme: theme,\n segment: segment\n });\n var rippleColor = customRippleColor || color(textColor).alpha(0.12).rgb().string();\n var showIcon = !icon ? false : label && checked ? !showSelectedCheck : true;\n var showCheckedIcon = checked && showSelectedCheck;\n var iconSize = isV3 ? 18 : 16;\n var iconStyle = _objectSpread({\n marginRight: label ? 5 : showCheckedIcon ? 3 : 0\n }, label && {\n transform: [{\n scale: checkScale.interpolate({\n inputRange: [0, 1],\n outputRange: [1, 0]\n })\n }]\n });\n var buttonStyle = _objectSpread({\n backgroundColor: backgroundColor,\n borderColor: borderColor,\n borderWidth: borderWidth,\n borderRadius: borderRadius\n }, segmentBorderRadius);\n var paddingVertical = getSegmentedButtonDensityPadding({\n density: density\n });\n var rippleStyle = _objectSpread({\n borderRadius: borderRadius\n }, segmentBorderRadius);\n var labelTextStyle = _objectSpread(_objectSpread({}, !isV3 ? {\n textTransform: 'uppercase',\n fontWeight: '500'\n } : theme.fonts.labelLarge), {}, {\n color: textColor\n });\n return React.createElement(View, {\n style: [buttonStyle, styles.button, style]\n }, React.createElement(TouchableRipple, {\n borderless: true,\n onPress: onPress,\n accessibilityLabel: accessibilityLabel,\n accessibilityState: {\n disabled: disabled,\n checked: checked\n },\n accessibilityRole: \"button\",\n disabled: disabled,\n rippleColor: rippleColor,\n testID: testID,\n style: rippleStyle,\n background: background,\n theme: theme,\n hitSlop: hitSlop\n }, React.createElement(View, {\n style: [styles.content, {\n paddingVertical: paddingVertical\n }]\n }, showCheckedIcon ? React.createElement(Animated.View, {\n testID: `${testID}-check-icon`,\n style: [iconStyle, {\n transform: [{\n scale: checkScale\n }]\n }]\n }, React.createElement(Icon, {\n source: 'check',\n size: iconSize,\n color: textColor\n })) : null, showIcon ? React.createElement(Animated.View, {\n testID: `${testID}-icon`,\n style: iconStyle\n }, React.createElement(Icon, {\n source: icon,\n size: iconSize,\n color: textColor\n })) : null, React.createElement(Text, {\n variant: \"labelLarge\",\n style: [styles.label, labelTextStyle, labelStyle],\n selectable: false,\n numberOfLines: 1,\n maxFontSizeMultiplier: labelMaxFontSizeMultiplier,\n testID: `${testID}-label`\n }, label))));\n};\nvar styles = StyleSheet.create({\n button: {\n flex: 1,\n minWidth: 76,\n borderStyle: 'solid'\n },\n label: {\n textAlign: 'center'\n },\n content: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n paddingVertical: 9,\n paddingHorizontal: 16\n }\n});\nexport default SegmentedButtonItem;\nexport { SegmentedButtonItem as SegmentedButton };","map":{"version":3,"names":["React","Animated","StyleSheet","View","color","getSegmentedButtonBorderRadius","getSegmentedButtonColors","getSegmentedButtonDensityPadding","useInternalTheme","Icon","TouchableRipple","Text","SegmentedButtonItem","_ref","checked","accessibilityLabel","disabled","style","labelStyle","showSelectedCheck","checkedColor","uncheckedColor","customRippleColor","rippleColor","background","icon","testID","label","onPress","segment","_ref$density","density","themeOverrides","theme","labelMaxFontSizeMultiplier","hitSlop","checkScale","useRef","Value","current","useEffect","spring","toValue","useNativeDriver","start","roundness","isV3","_getSegmentedButtonCo","borderColor","textColor","borderWidth","backgroundColor","borderRadius","segmentBorderRadius","alpha","rgb","string","showIcon","showCheckedIcon","iconSize","iconStyle","_objectSpread","marginRight","transform","scale","interpolate","inputRange","outputRange","buttonStyle","paddingVertical","rippleStyle","labelTextStyle","textTransform","fontWeight","fonts","labelLarge","createElement","styles","button","borderless","accessibilityState","accessibilityRole","content","source","size","variant","selectable","numberOfLines","maxFontSizeMultiplier","create","flex","minWidth","borderStyle","textAlign","flexDirection","alignItems","justifyContent","paddingHorizontal","SegmentedButton"],"sources":["/Users/pmouli/Documents/GitHub.nosync/boots-strapper/mobile/node_modules/react-native-paper/src/components/SegmentedButtons/SegmentedButtonItem.tsx"],"sourcesContent":["import * as React from 'react';\nimport {\n Animated,\n ColorValue,\n GestureResponderEvent,\n PressableAndroidRippleConfig,\n StyleProp,\n StyleSheet,\n TextStyle,\n View,\n ViewStyle,\n} from 'react-native';\n\nimport color from 'color';\nimport type { ThemeProp } from 'src/types';\n\nimport {\n getSegmentedButtonBorderRadius,\n getSegmentedButtonColors,\n getSegmentedButtonDensityPadding,\n} from './utils';\nimport { useInternalTheme } from '../../core/theming';\nimport type { IconSource } from '../Icon';\nimport Icon from '../Icon';\nimport TouchableRipple, {\n Props as TouchableRippleProps,\n} from '../TouchableRipple/TouchableRipple';\nimport Text from '../Typography/Text';\n\nexport type Props = {\n /**\n * Whether the segmented button is checked\n */\n checked: boolean;\n /**\n * Icon to display for the `SegmentedButtonItem`.\n */\n icon?: IconSource;\n /**\n * @supported Available in v5.x with theme version 3\n * Custom color for unchecked Text and Icon.\n */\n uncheckedColor?: string;\n /**\n * @supported Available in v5.x with theme version 3\n * Custom color for checked Text and Icon.\n */\n checkedColor?: string;\n /**\n * Color of the ripple effect.\n */\n rippleColor?: ColorValue;\n /**\n * Whether the button is disabled.\n */\n disabled?: boolean;\n /**\n * Type of background drawabale to display the feedback (Android).\n * https://reactnative.dev/docs/pressable#rippleconfig\n */\n background?: PressableAndroidRippleConfig;\n /**\n * Accessibility label for the `SegmentedButtonItem`. This is read by the screen reader when the user taps the button.\n */\n accessibilityLabel?: string;\n /**\n * Function to execute on press.\n */\n onPress?: (event: GestureResponderEvent) => void;\n /**\n * Value of button.\n */\n value: string;\n /**\n * Label text of the button.\n */\n label?: string;\n /**\n * Button segment.\n */\n segment?: 'first' | 'last';\n /**\n * Show optional check icon to indicate selected state\n */\n showSelectedCheck?: boolean;\n /**\n * Density is applied to the height, to allow usage in denser UIs.\n */\n density?: 'regular' | 'small' | 'medium' | 'high';\n /**\n * Specifies the largest possible scale a label font can reach.\n */\n labelMaxFontSizeMultiplier?: number;\n style?: StyleProp<ViewStyle>;\n /**\n * Style for the button label.\n */\n labelStyle?: StyleProp<TextStyle>;\n /**\n * testID to be used on tests.\n */\n testID?: string;\n /**\n * Sets additional distance outside of element in which a press can be detected.\n */\n hitSlop?: TouchableRippleProps['hitSlop'];\n /**\n * @optional\n */\n theme?: ThemeProp;\n};\n\nconst SegmentedButtonItem = ({\n checked,\n accessibilityLabel,\n disabled,\n style,\n labelStyle,\n showSelectedCheck,\n checkedColor,\n uncheckedColor,\n rippleColor: customRippleColor,\n background,\n icon,\n testID,\n label,\n onPress,\n segment,\n density = 'regular',\n theme: themeOverrides,\n labelMaxFontSizeMultiplier,\n hitSlop,\n}: Props) => {\n const theme = useInternalTheme(themeOverrides);\n\n const checkScale = React.useRef(new Animated.Value(0)).current;\n\n React.useEffect(() => {\n if (!showSelectedCheck) {\n return;\n }\n if (checked) {\n Animated.spring(checkScale, {\n toValue: 1,\n useNativeDriver: true,\n }).start();\n } else {\n Animated.spring(checkScale, {\n toValue: 0,\n useNativeDriver: true,\n }).start();\n }\n }, [checked, checkScale, showSelectedCheck]);\n\n const { roundness, isV3 } = theme;\n const { borderColor, textColor, borderWidth, backgroundColor } =\n getSegmentedButtonColors({\n checked,\n theme,\n disabled,\n checkedColor,\n uncheckedColor,\n });\n\n const borderRadius = (isV3 ? 5 : 1) * roundness;\n const segmentBorderRadius = getSegmentedButtonBorderRadius({\n theme,\n segment,\n });\n const rippleColor =\n customRippleColor || color(textColor).alpha(0.12).rgb().string();\n\n const showIcon = !icon ? false : label && checked ? !showSelectedCheck : true;\n const showCheckedIcon = checked && showSelectedCheck;\n\n const iconSize = isV3 ? 18 : 16;\n const iconStyle = {\n marginRight: label ? 5 : showCheckedIcon ? 3 : 0,\n ...(label && {\n transform: [\n {\n scale: checkScale.interpolate({\n inputRange: [0, 1],\n outputRange: [1, 0],\n }),\n },\n ],\n }),\n };\n\n const buttonStyle: ViewStyle = {\n backgroundColor,\n borderColor,\n borderWidth,\n borderRadius,\n ...segmentBorderRadius,\n };\n const paddingVertical = getSegmentedButtonDensityPadding({ density });\n const rippleStyle: ViewStyle = {\n borderRadius,\n ...segmentBorderRadius,\n };\n const labelTextStyle: TextStyle = {\n ...(!isV3\n ? {\n textTransform: 'uppercase',\n fontWeight: '500',\n }\n : theme.fonts.labelLarge),\n color: textColor,\n };\n\n return (\n <View style={[buttonStyle, styles.button, style]}>\n <TouchableRipple\n borderless\n onPress={onPress}\n accessibilityLabel={accessibilityLabel}\n accessibilityState={{ disabled, checked }}\n accessibilityRole=\"button\"\n disabled={disabled}\n rippleColor={rippleColor}\n testID={testID}\n style={rippleStyle}\n background={background}\n theme={theme}\n hitSlop={hitSlop}\n >\n <View style={[styles.content, { paddingVertical }]}>\n {showCheckedIcon ? (\n <Animated.View\n testID={`${testID}-check-icon`}\n style={[iconStyle, { transform: [{ scale: checkScale }] }]}\n >\n <Icon source={'check'} size={iconSize} color={textColor} />\n </Animated.View>\n ) : null}\n {showIcon ? (\n <Animated.View testID={`${testID}-icon`} style={iconStyle}>\n <Icon source={icon} size={iconSize} color={textColor} />\n </Animated.View>\n ) : null}\n <Text\n variant=\"labelLarge\"\n style={[styles.label, labelTextStyle, labelStyle]}\n selectable={false}\n numberOfLines={1}\n maxFontSizeMultiplier={labelMaxFontSizeMultiplier}\n testID={`${testID}-label`}\n >\n {label}\n </Text>\n </View>\n </TouchableRipple>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n button: {\n flex: 1,\n minWidth: 76,\n borderStyle: 'solid',\n },\n label: {\n textAlign: 'center',\n },\n content: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n paddingVertical: 9,\n paddingHorizontal: 16,\n },\n});\n\nexport default SegmentedButtonItem;\n\nexport { SegmentedButtonItem as SegmentedButton };\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}