diff --git a/views/Receive.tsx b/views/Receive.tsx index 805c3ab55..e667ce118 100644 --- a/views/Receive.tsx +++ b/views/Receive.tsx @@ -39,7 +39,10 @@ import Amount from '../components/Amount'; import AmountInput, { getSatAmount } from '../components/AmountInput'; import Button from '../components/Button'; import CollapsedQR from '../components/CollapsedQR'; +import DropdownSetting from '../components/DropdownSetting'; import Header from '../components/Header'; +import HopPicker from '../components/HopPicker'; +import KeyValue from '../components/KeyValue'; import LoadingIndicator from '../components/LoadingIndicator'; import PaidIndicator from '../components/PaidIndicator'; import ModalBox from '../components/ModalBox'; @@ -82,13 +85,13 @@ import { LndMobileEventEmitter } from '../utils/LndMobileUtils'; +import CaretDown from '../assets/images/SVG/Caret Down.svg'; +import CaretRight from '../assets/images/SVG/Caret Right.svg'; import UnifiedSvg from '../assets/images/SVG/DynamicSVG/UnifiedSvg'; import LightningSvg from '../assets/images/SVG/DynamicSVG/LightningSvg'; import OnChainSvg from '../assets/images/SVG/DynamicSVG/OnChainSvg'; import AddressSvg from '../assets/images/SVG/DynamicSVG/AddressSvg'; import Gear from '../assets/images/SVG/Gear.svg'; -import DropdownSetting from '../components/DropdownSetting'; -import HopPicker from '../components/HopPicker'; interface ReceiveProps { exitSetup: any; @@ -140,6 +143,7 @@ interface ReceiveState { account: string; blindedPaths: boolean; nfcSupported: boolean; + advancedSettingsToggle: boolean; // POS orderId: string; orderTotal: string; @@ -194,6 +198,7 @@ export default class Receive extends React.Component< account: 'default', blindedPaths: false, nfcSupported: false, + advancedSettingsToggle: false, // POS orderId: '', orderTip: '', @@ -1123,7 +1128,8 @@ export default class Receive extends React.Component< selectedRouteHintChannels, blindedPaths, hideRightHeaderComponent, - nfcSupported + nfcSupported, + advancedSettingsToggle } = this.state; const { fontScale } = Dimensions.get('window'); @@ -1493,6 +1499,13 @@ export default class Receive extends React.Component< const enablePrinter: boolean = settings?.pos?.enablePrinter || false; + const showAdvancedSettingsToggle = + (BackendUtils.supportsCustomPreimages() && + showCustomPreimageField) || + (BackendUtils.isLNDBased() && !lspIsActive) || + (BackendUtils.supportsAMP() && !lspIsActive) || + (BackendUtils.supportsBolt11BlindedRoutes() && !lspIsActive); + return (
)} - {BackendUtils.supportsCustomPreimages() && - showCustomPreimageField && ( - <> - - {localeString( - 'views.Receive.customPreimage' - )} - - - this.setState({ - customPreimage: - text - }) - } - /> - - )} - - {BackendUtils.isLNDBased() && - !lspIsActive && ( + {showAdvancedSettingsToggle && ( + { + this.setState({ + advancedSettingsToggle: + !advancedSettingsToggle + }); + }} + > - - + - {localeString( - 'views.Receive.routeHints' - )} - - - - - this.setState( - { - routeHints: - !routeHints - } - ) - } - disabled={ - blindedPaths - } - /> - - - )} - - {BackendUtils.isLNDBased() && - !lspIsActive && - routeHints && ( - - - {localeString( - 'general.mode' + + + {advancedSettingsToggle ? ( + + ) : ( + )} - - - - )} + + + + )} - {BackendUtils.isLNDBased() && - routeHints && ( - - (this.hopPickerRef = - ref) - } - onValueChange={( - channels - ) => { - this.setState({ - selectedRouteHintChannels: - channels - }); - }} - onCancel={() => { - if ( - !selectedRouteHintChannels?.length - ) { - setRouteHintMode( - RouteHintMode.Automatic - ); - } - }} - title={localeString( - 'views.Receive.customRouteHints' + {advancedSettingsToggle && ( + <> + {BackendUtils.supportsCustomPreimages() && + showCustomPreimageField && ( + <> + + {localeString( + 'views.Receive.customPreimage' + )} + + + this.setState( + { + customPreimage: + text + } + ) + } + /> + )} - ChannelsStore={ - this.props - .ChannelsStore - } - UnitsStore={UnitsStore} - containerStyle={{ - display: - routeHintMode === - RouteHintMode.Automatic - ? 'none' - : 'flex' - }} - clearOnTap={false} - selectionMode={ - 'multiple' - } - selectedChannels={ - selectedRouteHintChannels - } - /> - )} - {BackendUtils.supportsAMP() && - !lspIsActive && ( - - - - {localeString( - 'views.Receive.ampInvoice' - )} - - - - + + {localeString( + 'views.Receive.routeHints' + )} + + + + + this.setState( + { + routeHints: + !routeHints + } + ) + } + disabled={ + blindedPaths + } + /> + + + )} + + {BackendUtils.isLNDBased() && + !lspIsActive && + routeHints && ( + + + {localeString( + 'general.mode' + )} + + + + )} + + {BackendUtils.isLNDBased() && + routeHints && ( + + (this.hopPickerRef = + ref) } - onValueChange={() => + onValueChange={( + channels + ) => { this.setState( { - ampInvoice: - !ampInvoice + selectedRouteHintChannels: + channels } - ) + ); + }} + onCancel={() => { + if ( + !selectedRouteHintChannels?.length + ) { + setRouteHintMode( + RouteHintMode.Automatic + ); + } + }} + title={localeString( + 'views.Receive.customRouteHints' + )} + ChannelsStore={ + this.props + .ChannelsStore + } + UnitsStore={ + UnitsStore + } + containerStyle={{ + display: + routeHintMode === + RouteHintMode.Automatic + ? 'none' + : 'flex' + }} + clearOnTap={ + false + } + selectionMode={ + 'multiple' } - disabled={ - blindedPaths + selectedChannels={ + selectedRouteHintChannels } /> - - - )} + )} - {BackendUtils.supportsBolt11BlindedRoutes() && - !lspIsActive && ( - - - - {localeString( - 'views.Receive.blindedPaths' - )} - - - - - this.setState( - { - blindedPaths: - !blindedPaths, - ampInvoice: - false, - routeHints: - false + + + {localeString( + 'views.Receive.ampInvoice' + )} + + + + - - - )} + onValueChange={() => + this.setState( + { + ampInvoice: + !ampInvoice + } + ) + } + disabled={ + blindedPaths + } + /> + + + )} + + {BackendUtils.supportsBolt11BlindedRoutes() && + !lspIsActive && ( + + + + {localeString( + 'views.Receive.blindedPaths' + )} + + + + + this.setState( + { + blindedPaths: + !blindedPaths, + ampInvoice: + false, + routeHints: + false + } + ) + } + /> + + + )} + + )}