mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
bf007282db
FIX: Dont allow navigation to other screens when loading
102 lines
3.0 KiB
JavaScript
102 lines
3.0 KiB
JavaScript
import React, { forwardRef } from 'react';
|
|
import { ContextMenuView, ContextMenuButton } from 'react-native-ios-context-menu';
|
|
import PropTypes from 'prop-types';
|
|
import QRCodeComponent from './QRCodeComponent';
|
|
import { TouchableOpacity } from 'react-native';
|
|
|
|
const ToolTipMenu = (props, ref) => {
|
|
const menuItemMapped = ({ action, menuOptions }) => {
|
|
const item = {
|
|
actionKey: action.id,
|
|
actionTitle: action.text,
|
|
icon: action.icon,
|
|
menuOptions,
|
|
menuTitle: action.menuTitle,
|
|
};
|
|
item.menuState = action.menuStateOn ? 'on' : 'off';
|
|
|
|
if (action.disabled) {
|
|
item.menuAttributes = ['disabled'];
|
|
}
|
|
return item;
|
|
};
|
|
|
|
const menuItems = props.actions.map(action => {
|
|
if (Array.isArray(action)) {
|
|
const mapped = [];
|
|
for (const actionToMap of action) {
|
|
mapped.push(menuItemMapped({ action: actionToMap }));
|
|
}
|
|
const submenu = {
|
|
menuOptions: ['displayInline'],
|
|
menuItems: mapped,
|
|
menuTitle: '',
|
|
};
|
|
return submenu;
|
|
} else {
|
|
return menuItemMapped({ action });
|
|
}
|
|
});
|
|
const menuTitle = props.title ?? '';
|
|
const isButton = !!props.isButton;
|
|
const isMenuPrimaryAction = props.isMenuPrimaryAction ? props.isMenuPrimaryAction : false;
|
|
const previewQRCode = props.previewQRCode ?? false;
|
|
const previewValue = props.previewValue;
|
|
const disabled = props.disabled ?? false;
|
|
// eslint-disable-next-line react/prop-types
|
|
const buttonStyle = props.buttonStyle;
|
|
return isButton ? (
|
|
<ContextMenuButton
|
|
ref={ref}
|
|
disabled={disabled}
|
|
onPressMenuItem={({ nativeEvent }) => {
|
|
props.onPressMenuItem(nativeEvent.actionKey);
|
|
}}
|
|
isMenuPrimaryAction={isMenuPrimaryAction}
|
|
menuConfig={{
|
|
menuTitle,
|
|
menuItems,
|
|
}}
|
|
style={buttonStyle}
|
|
>
|
|
{props.onPress ? <TouchableOpacity onPress={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
|
</ContextMenuButton>
|
|
) : (
|
|
<ContextMenuView
|
|
ref={ref}
|
|
onPressMenuItem={({ nativeEvent }) => {
|
|
props.onPressMenuItem(nativeEvent.actionKey);
|
|
}}
|
|
menuConfig={{
|
|
menuTitle,
|
|
menuItems,
|
|
}}
|
|
{...(previewQRCode
|
|
? {
|
|
previewConfig: {
|
|
previewType: 'CUSTOM',
|
|
backgroundColor: 'white',
|
|
},
|
|
renderPreview: () => <QRCodeComponent value={previewValue} isMenuAvailable={false} />,
|
|
}
|
|
: {})}
|
|
>
|
|
{props.onPress ? <TouchableOpacity onPress={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
|
</ContextMenuView>
|
|
);
|
|
};
|
|
|
|
export default forwardRef(ToolTipMenu);
|
|
ToolTipMenu.propTypes = {
|
|
actions: PropTypes.object.isRequired,
|
|
title: PropTypes.string,
|
|
children: PropTypes.node.isRequired,
|
|
onPressMenuItem: PropTypes.func.isRequired,
|
|
isMenuPrimaryAction: PropTypes.bool,
|
|
isButton: PropTypes.bool,
|
|
previewQRCode: PropTypes.bool,
|
|
onPress: PropTypes.func,
|
|
previewValue: PropTypes.string,
|
|
disabled: PropTypes.bool,
|
|
};
|