mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
170 lines
5.2 KiB
TypeScript
170 lines
5.2 KiB
TypeScript
import React, { useCallback, useEffect, useState } from 'react';
|
|
import AsyncStorage from '@react-native-async-storage/async-storage';
|
|
import { RouteProp, useRoute } from '@react-navigation/native';
|
|
import { Alert, I18nManager, Linking, ScrollView, StyleSheet, TextInput, View } from 'react-native';
|
|
import { Button as ButtonRNElements } from '@rneui/themed';
|
|
|
|
import { BlueButtonLink, BlueCard, BlueLoading, BlueSpacing20, BlueText } from '../../BlueComponents';
|
|
import { BlueApp } from '../../class';
|
|
import DeeplinkSchemaMatch from '../../class/deeplink-schema-match';
|
|
import { LightningCustodianWallet } from '../../class/wallets/lightning-custodian-wallet';
|
|
import presentAlert from '../../components/Alert';
|
|
import { Button } from '../../components/Button';
|
|
import { useTheme } from '../../components/themes';
|
|
import { scanQrHelper } from '../../helpers/scan-qr';
|
|
import loc from '../../loc';
|
|
|
|
const styles = StyleSheet.create({
|
|
uri: {
|
|
flexDirection: 'row',
|
|
borderWidth: 1,
|
|
borderBottomWidth: 0.5,
|
|
minHeight: 44,
|
|
height: 44,
|
|
alignItems: 'center',
|
|
borderRadius: 4,
|
|
},
|
|
uriText: {
|
|
flex: 1,
|
|
color: '#81868e',
|
|
marginHorizontal: 8,
|
|
minHeight: 36,
|
|
height: 36,
|
|
},
|
|
buttonStyle: {
|
|
backgroundColor: 'transparent',
|
|
flexDirection: I18nManager.isRTL ? 'row-reverse' : 'row',
|
|
},
|
|
});
|
|
|
|
type LightingSettingsRouteProps = RouteProp<
|
|
{
|
|
params?: {
|
|
url?: string;
|
|
};
|
|
},
|
|
'params'
|
|
>;
|
|
|
|
const LightningSettings: React.FC = () => {
|
|
const params = useRoute<LightingSettingsRouteProps>().params;
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [URI, setURI] = useState<string>();
|
|
const { colors } = useTheme();
|
|
const route = useRoute();
|
|
const styleHook = StyleSheet.create({
|
|
uri: {
|
|
borderColor: colors.formBorder,
|
|
borderBottomColor: colors.formBorder,
|
|
backgroundColor: colors.inputBackgroundColor,
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
AsyncStorage.getItem(BlueApp.LNDHUB)
|
|
.then(value => setURI(value ?? undefined))
|
|
.then(() => setIsLoading(false))
|
|
.catch(() => setIsLoading(false));
|
|
|
|
if (params?.url) {
|
|
Alert.alert(
|
|
loc.formatString(loc.settings.set_lndhub_as_default, { url: params.url }) as string,
|
|
'',
|
|
[
|
|
{
|
|
text: loc._.ok,
|
|
onPress: () => {
|
|
params?.url && setLndhubURI(params.url);
|
|
},
|
|
style: 'default',
|
|
},
|
|
{ text: loc._.cancel, onPress: () => {}, style: 'cancel' },
|
|
],
|
|
{ cancelable: false },
|
|
);
|
|
}
|
|
}, [params?.url]);
|
|
|
|
const setLndhubURI = (value: string) => {
|
|
// in case user scans a QR with a deeplink like `bluewallet:setlndhuburl?url=https%3A%2F%2Flndhub.herokuapp.com`
|
|
const setLndHubUrl = DeeplinkSchemaMatch.getUrlFromSetLndhubUrlAction(value);
|
|
|
|
setURI(typeof setLndHubUrl === 'string' ? setLndHubUrl.trim() : value.trim());
|
|
};
|
|
|
|
const save = useCallback(async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
if (URI) {
|
|
await LightningCustodianWallet.isValidNodeAddress(URI);
|
|
// validating only if its not empty. empty means use default
|
|
}
|
|
if (URI) {
|
|
await AsyncStorage.setItem(BlueApp.LNDHUB, URI);
|
|
} else {
|
|
await AsyncStorage.removeItem(BlueApp.LNDHUB);
|
|
}
|
|
presentAlert({ message: loc.settings.lightning_saved });
|
|
} catch (error) {
|
|
presentAlert({ message: loc.settings.lightning_error_lndhub_uri });
|
|
console.log(error);
|
|
}
|
|
setIsLoading(false);
|
|
}, [URI]);
|
|
|
|
const importScan = () => {
|
|
scanQrHelper(route.name).then(data => {
|
|
if (data) {
|
|
setLndhubURI(data);
|
|
}
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ScrollView automaticallyAdjustContentInsets contentInsetAdjustmentBehavior="automatic">
|
|
<BlueCard>
|
|
<BlueText>{loc.settings.lightning_settings_explain}</BlueText>
|
|
</BlueCard>
|
|
|
|
<ButtonRNElements
|
|
icon={{
|
|
name: 'github',
|
|
type: 'font-awesome',
|
|
color: colors.foregroundColor,
|
|
}}
|
|
onPress={() => Linking.openURL('https://github.com/BlueWallet/LndHub')}
|
|
titleStyle={{ color: colors.buttonAlternativeTextColor }}
|
|
title="github.com/BlueWallet/LndHub"
|
|
// TODO: looks like there's no `color` prop on `Button`, does this make any sense?
|
|
// color={colors.buttonTextColor}
|
|
buttonStyle={styles.buttonStyle}
|
|
/>
|
|
|
|
<BlueCard>
|
|
<View style={[styles.uri, styleHook.uri]}>
|
|
<TextInput
|
|
value={URI}
|
|
placeholder={loc.formatString(loc.settings.lndhub_uri, { example: 'https://10.20.30.40:3000' })}
|
|
onChangeText={setLndhubURI}
|
|
numberOfLines={1}
|
|
style={styles.uriText}
|
|
placeholderTextColor="#81868e"
|
|
editable={!isLoading}
|
|
textContentType="URL"
|
|
autoCapitalize="none"
|
|
autoCorrect={false}
|
|
underlineColorAndroid="transparent"
|
|
testID="URIInput"
|
|
/>
|
|
</View>
|
|
<BlueSpacing20 />
|
|
<BlueButtonLink title={loc.wallets.import_scan_qr} testID="ImportScan" onPress={importScan} />
|
|
<BlueSpacing20 />
|
|
{isLoading ? <BlueLoading /> : <Button testID="Save" onPress={save} title={loc.settings.save} />}
|
|
</BlueCard>
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
export default LightningSettings;
|