// // A button with a long-press action. Long-pressing the button displays a tooltip // const React = require('react'); import { ReactNode } from 'react'; import { themeStyle } from '@joplin/lib/theme'; import { Theme } from '@joplin/lib/themes/type'; import { useState, useMemo, useCallback, useRef } from 'react'; import { View, Text, Pressable, ViewStyle, PressableStateCallbackType, StyleProp, StyleSheet, LayoutChangeEvent, LayoutRectangle, Animated, AccessibilityState, AccessibilityRole } from 'react-native'; import { Menu, MenuOptions, MenuTrigger, renderers } from 'react-native-popup-menu'; type ButtonClickListener = ()=> void; interface ButtonProps { onPress: ButtonClickListener; // Accessibility label and text shown in a tooltip description?: string; children: ReactNode; themeId: number; style?: ViewStyle; pressedStyle?: ViewStyle; contentStyle?: ViewStyle; // Additional accessibility information. See View.accessibilityHint accessibilityHint?: string; // Role of the button. Defaults to 'button'. accessibilityRole?: AccessibilityRole; accessibilityState?: AccessibilityState; disabled?: boolean; } const CustomButton = (props: ButtonProps) => { const [tooltipVisible, setTooltipVisible] = useState(false); const [buttonLayout, setButtonLayout] = useState(null); const tooltipStyles = useTooltipStyles(props.themeId); // See https://blog.logrocket.com/react-native-touchable-vs-pressable-components/ // for more about animating Pressable buttons. const fadeAnim = useRef(new Animated.Value(1)).current; const animationDuration = 100; // ms const onPressIn = useCallback(() => { // Fade out. Animated.timing(fadeAnim, { toValue: 0.5, duration: animationDuration, useNativeDriver: true, }).start(); }, [fadeAnim]); const onPressOut = useCallback(() => { // Fade in. Animated.timing(fadeAnim, { toValue: 1, duration: animationDuration, useNativeDriver: true, }).start(); setTooltipVisible(false); }, [fadeAnim]); const onLongPress = useCallback(() => { setTooltipVisible(true); }, []); // Select different user-specified styles if selected/unselected. const onStyleChange = useCallback((state: PressableStateCallbackType): StyleProp => { let result = { ...props.style }; if (state.pressed) { result = { ...result, ...props.pressedStyle, }; } return result; }, [props.pressedStyle, props.style]); const onButtonLayout = useCallback((event: LayoutChangeEvent) => { const layoutEvt = event.nativeEvent.layout; // Copy the layout event setButtonLayout({ ...layoutEvt }); }, []); const button = ( { props.children } ); const tooltip = ( {props.description} ); return ( <> {props.description ? tooltip : null} {button} ); }; const useTooltipStyles = (themeId: number) => { return useMemo(() => { const themeData: Theme = themeStyle(themeId); return StyleSheet.create({ text: { color: themeData.raisedColor, padding: 4, }, anchor: { backgroundColor: themeData.raisedBackgroundColor, }, optionsContainer: { backgroundColor: themeData.raisedBackgroundColor, }, }); }, [themeId]); }; export default CustomButton;