use coins icon instead of 'Bal:' text

This commit is contained in:
Akinwale Ariwodola 2019-12-15 11:41:27 +01:00
parent 3662834fba
commit 9609f423df
10 changed files with 61 additions and 30 deletions

View file

@ -252,11 +252,12 @@ export default class ChannelSelector extends React.PureComponent {
underlineColorAndroid={Colors.NextLbryGreen} underlineColorAndroid={Colors.NextLbryGreen}
/> />
<Text style={channelSelectorStyle.currency}>LBC</Text> <Text style={channelSelectorStyle.currency}>LBC</Text>
<Text style={channelSelectorStyle.balance}> <View style={channelSelectorStyle.balance}>
{this.state.creditsInputFocused {this.state.creditsInputFocused && <Icon name="coins" size={12} />}
? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) {this.state.creditsInputFocused && (
: ''} <Text style={channelSelectorStyle.balanceText}>{formatCredits(parseFloat(balance), 1, true)}</Text>
</Text> )}
</View>
</View> </View>
<Text style={channelSelectorStyle.helpText}> <Text style={channelSelectorStyle.helpText}>
{__('This LBC remains yours. It is a deposit to reserve the name and can be undone at any time.')} {__('This LBC remains yours. It is a deposit to reserve the name and can be undone at any time.')}

View file

@ -4,6 +4,7 @@ import { formatCredits, regexAddress } from 'lbry-redux';
import { Alert, Clipboard, TextInput, Text, View } from 'react-native'; import { Alert, Clipboard, TextInput, Text, View } from 'react-native';
import Button from 'component/button'; import Button from 'component/button';
import Colors from 'styles/colors'; import Colors from 'styles/colors';
import Icon from 'react-native-vector-icons/FontAwesome5';
import walletStyle from 'styles/wallet'; import walletStyle from 'styles/wallet';
type DraftTransaction = { type DraftTransaction = {
@ -128,11 +129,12 @@ class WalletSend extends React.PureComponent<Props> {
style={[walletStyle.input, walletStyle.amountInput]} style={[walletStyle.input, walletStyle.amountInput]}
/> />
<Text style={[walletStyle.text, walletStyle.currency]}>LBC</Text> <Text style={[walletStyle.text, walletStyle.currency]}>LBC</Text>
<Text style={walletStyle.balanceFocus}> <View style={walletStyle.balanceFocus}>
{this.state.creditsInputFocused {this.state.creditsInputFocused && <Icon name="coins" size={12} />}
? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) {this.state.creditsInputFocused && (
: ''} <Text style={walletStyle.balanceText}>{formatCredits(parseFloat(balance), 1, true)}</Text>
</Text> )}
</View>
</View> </View>
<Button <Button
text={__('Send')} text={__('Send')}

View file

@ -968,11 +968,12 @@ export default class ChannelCreator extends React.PureComponent {
underlineColorAndroid={Colors.NextLbryGreen} underlineColorAndroid={Colors.NextLbryGreen}
/> />
<Text style={channelCreatorStyle.currency}>LBC</Text> <Text style={channelCreatorStyle.currency}>LBC</Text>
<Text style={channelCreatorStyle.balance}> <View style={channelCreatorStyle.balance}>
{this.state.creditsInputFocused {this.state.creditsInputFocused && <Icon name="coins" size={12} />}
? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) {this.state.creditsInputFocused && (
: ''} <Text style={channelCreatorStyle.balanceText}>{formatCredits(parseFloat(balance), 1, true)}</Text>
</Text> )}
</View>
</View> </View>
<Text style={channelCreatorStyle.helpText}> <Text style={channelCreatorStyle.helpText}>
{__('This LBC remains yours. It is a deposit to reserve the name and can be undone at any time.')} {__('This LBC remains yours. It is a deposit to reserve the name and can be undone at any time.')}

View file

@ -1174,11 +1174,12 @@ class FilePage extends React.PureComponent {
style={[filePageStyle.input, filePageStyle.tipAmountInput]} style={[filePageStyle.input, filePageStyle.tipAmountInput]}
/> />
<Text style={[filePageStyle.text, filePageStyle.currency]}>LBC</Text> <Text style={[filePageStyle.text, filePageStyle.currency]}>LBC</Text>
<Text style={filePageStyle.balance}> <View style={filePageStyle.balance}>
{this.state.creditsInputFocused {this.state.creditsInputFocused && <Icon name="coins" size={12} />}
? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) {this.state.creditsInputFocused && (
: ''} <Text style={filePageStyle.balanceText}>{formatCredits(parseFloat(balance), 1, true)}</Text>
</Text> )}
</View>
</View> </View>
{this.state.sendTipStarted && <ActivityIndicator size={'small'} color={Colors.NextLbryGreen} />} {this.state.sendTipStarted && <ActivityIndicator size={'small'} color={Colors.NextLbryGreen} />}
<Link <Link

View file

@ -1139,11 +1139,12 @@ class PublishPage extends React.PureComponent {
onBlur={() => this.setState({ creditsInputFocused: false })} onBlur={() => this.setState({ creditsInputFocused: false })}
/> />
<Text style={publishStyle.currency}>LBC</Text> <Text style={publishStyle.currency}>LBC</Text>
<Text style={publishStyle.balance}> <View style={publishStyle.balance}>
{this.state.creditsInputFocused {this.state.creditsInputFocused && <Icon name="coins" size={12} />}
? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) {this.state.creditsInputFocused && (
: ''} <Text style={publishStyle.balanceText}>{formatCredits(parseFloat(balance), 1, true)}</Text>
</Text> )}
</View>
</View> </View>
<Text style={publishStyle.helpText}> <Text style={publishStyle.helpText}>
{__('This LBC remains yours and the deposit can be undone at any time.')} {__('This LBC remains yours and the deposit can be undone at any time.')}

View file

@ -31,9 +31,14 @@ const channelCreatorStyle = StyleSheet.create({
fontSize: 16, fontSize: 16,
}, },
balance: { balance: {
alignItems: 'center',
flexDirection: 'row',
marginLeft: 24,
},
balanceText: {
fontFamily: 'Inter-UI-SemiBold', fontFamily: 'Inter-UI-SemiBold',
fontSize: 14, fontSize: 14,
marginLeft: 24, marginLeft: 4,
}, },
channelNameInput: { channelNameInput: {
fontFamily: 'Inter-UI-Regular', fontFamily: 'Inter-UI-Regular',

View file

@ -25,9 +25,14 @@ const channelSelectorStyle = StyleSheet.create({
fontSize: 16, fontSize: 16,
}, },
balance: { balance: {
alignItems: 'center',
flexDirection: 'row',
marginLeft: 24,
},
balanceText: {
fontFamily: 'Inter-UI-SemiBold', fontFamily: 'Inter-UI-SemiBold',
fontSize: 14, fontSize: 14,
marginLeft: 24, marginLeft: 4,
}, },
channelNameInput: { channelNameInput: {
fontFamily: 'Inter-UI-Regular', fontFamily: 'Inter-UI-Regular',

View file

@ -447,9 +447,14 @@ const filePageStyle = StyleSheet.create({
marginTop: 16, marginTop: 16,
}, },
balance: { balance: {
alignItems: 'center',
flexDirection: 'row',
marginLeft: 24,
},
balanceText: {
fontFamily: 'Inter-UI-SemiBold', fontFamily: 'Inter-UI-SemiBold',
fontSize: 14, fontSize: 14,
marginLeft: 24, marginLeft: 4,
}, },
}); });

View file

@ -467,9 +467,14 @@ const publishStyle = StyleSheet.create({
fontSize: 12, fontSize: 12,
}, },
balance: { balance: {
alignItems: 'center',
flexDirection: 'row',
marginLeft: 24,
},
balanceText: {
fontFamily: 'Inter-UI-SemiBold', fontFamily: 'Inter-UI-SemiBold',
fontSize: 14, fontSize: 14,
marginLeft: 24, marginLeft: 4,
}, },
}); });

View file

@ -127,9 +127,14 @@ const walletStyle = StyleSheet.create({
marginBottom: 16, marginBottom: 16,
}, },
balanceFocus: { balanceFocus: {
alignItems: 'center',
flexDirection: 'row',
marginLeft: 24,
},
balanceText: {
fontFamily: 'Inter-UI-SemiBold', fontFamily: 'Inter-UI-SemiBold',
fontSize: 14, fontSize: 14,
marginLeft: 24, marginLeft: 4,
}, },
infoText: { infoText: {
color: '#aaaaaa', color: '#aaaaaa',