mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 20:01:56 +03:00
Merge branch 'master' of github.com:esteemapp/esteem-mobile into remove/animatedButtons
This commit is contained in:
commit
01c8612398
@ -30,3 +30,5 @@ printf "\n.env created with contents:\n"
|
||||
cat .env
|
||||
printf "\nEND OF .env\n"
|
||||
|
||||
npx jetify
|
||||
|
||||
|
10
package.json
10
package.json
@ -25,11 +25,11 @@
|
||||
"@babel/runtime": "^7.1.2",
|
||||
"@esteemapp/esteem-render-helpers": "^1.1.0",
|
||||
"@ptomasroos/react-native-multi-slider": "^1.0.0",
|
||||
"@react-native-community/netinfo": "3.2.1",
|
||||
"appcenter": "^1.10.0",
|
||||
"appcenter-analytics": "^1.10.0",
|
||||
"appcenter-crashes": "^1.10.0",
|
||||
"appcenter-push": "^1.10.0",
|
||||
"@react-native-community/netinfo": "^4.1.3",
|
||||
"appcenter": "^2.2.0",
|
||||
"appcenter-analytics": "^2.2.0",
|
||||
"appcenter-crashes": "^2.2.0",
|
||||
"appcenter-push": "^2.2.0",
|
||||
"axios": "^0.18.0",
|
||||
"buffer": "^5.2.1",
|
||||
"bugsnag-react-native": "^2.20.0",
|
||||
|
@ -19,11 +19,11 @@ export default EStyleSheet.create({
|
||||
paddingTop: 10,
|
||||
paddingBottom: 10,
|
||||
minWidth: '$deviceWidth / 2',
|
||||
borderColor: '$primaryGrayBackground',
|
||||
borderColor: '$primaryWhiteLightBackground',
|
||||
borderRadius: 5,
|
||||
shadowOpacity: 0.3,
|
||||
shadowColor: '$shadowColor',
|
||||
backgroundColor: '$primaryBackgroundColor',
|
||||
backgroundColor: '$primaryLightBackground',
|
||||
maxHeight: '$deviceHeight / 2',
|
||||
},
|
||||
iconWrapper: {
|
||||
|
@ -3,16 +3,16 @@ import EStyleSheet from 'react-native-extended-stylesheet';
|
||||
export default EStyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'space-between',
|
||||
width: '$deviceWidth / 1.8',
|
||||
},
|
||||
buttonGroup: {
|
||||
width: '100%',
|
||||
flex: 1,
|
||||
flexDirection: 'row',
|
||||
flexWrap: 'wrap',
|
||||
justifyContent: 'space-between',
|
||||
marginBottom: 30,
|
||||
},
|
||||
lastButtonGroup: {
|
||||
width: '63%',
|
||||
@ -27,8 +27,10 @@ export default EStyleSheet.create({
|
||||
},
|
||||
buttonWithoutBorder: {
|
||||
borderWidth: 0,
|
||||
backgroundColor: '$primaryWhiteLightBackground',
|
||||
},
|
||||
button: {
|
||||
borderColor: 'rgba(53, 124, 230, 0.2)',
|
||||
marginBottom: 10,
|
||||
},
|
||||
});
|
||||
|
@ -1,110 +1,39 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import React from 'react';
|
||||
import { View } from 'react-native';
|
||||
|
||||
import times from 'lodash/times';
|
||||
import { CircularButton, IconButton } from '../../buttons';
|
||||
|
||||
import styles from './numericKeyboardStyles';
|
||||
|
||||
class NumericKeyboard extends PureComponent {
|
||||
/* Props
|
||||
* @prop { func } onPress - Function will trigger when any button clicked.
|
||||
*/
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
// Component Life Cycles
|
||||
|
||||
// Component Functions
|
||||
|
||||
_handleOnPress = value => {
|
||||
alert(value);
|
||||
};
|
||||
|
||||
render() {
|
||||
const { onPress } = this.props;
|
||||
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<View style={styles.buttonGroup}>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={1}
|
||||
value={1}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={2}
|
||||
value={2}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={3}
|
||||
value={3}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
</View>
|
||||
<View style={styles.buttonGroup}>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={4}
|
||||
value={4}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={5}
|
||||
value={5}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={6}
|
||||
value={6}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
</View>
|
||||
<View style={styles.buttonGroup}>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={7}
|
||||
value={7}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={8}
|
||||
value={8}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={9}
|
||||
value={9}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
</View>
|
||||
<View style={styles.lastButtonGroup}>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={0}
|
||||
value={0}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<IconButton
|
||||
handleOnPress={() => onPress && onPress('clear')}
|
||||
isCircle
|
||||
buttonStyle={styles.buttonWithoutBorder}
|
||||
style={styles.iconButton}
|
||||
name="backspace"
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
}
|
||||
const NumericKeyboard = ({ onPress }) => (
|
||||
<View style={styles.container}>
|
||||
<View style={styles.buttonGroup}>
|
||||
{times(9, i => (
|
||||
<CircularButton
|
||||
key={i}
|
||||
style={styles.button}
|
||||
text={i + 1}
|
||||
value={i + 1}
|
||||
onPress={onPress}
|
||||
/>
|
||||
))}
|
||||
</View>
|
||||
<View style={styles.lastButtonGroup}>
|
||||
<CircularButton
|
||||
style={styles.button}
|
||||
text={0}
|
||||
value={0}
|
||||
onPress={value => onPress && onPress(value)}
|
||||
/>
|
||||
<IconButton
|
||||
handleOnPress={() => onPress && onPress('clear')}
|
||||
isCircle
|
||||
buttonStyle={styles.buttonWithoutBorder}
|
||||
style={styles.iconButton}
|
||||
name="backspace"
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
|
||||
export default NumericKeyboard;
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "balah",
|
||||
"share": "bagi",
|
||||
"bookmarks": "tamah dalam bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Hana uréung pakék",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "الرد",
|
||||
"share": "شارك",
|
||||
"bookmarks": "إضافة إلى الإشارات المرجعية",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "لا يوجد أي مستخدم حاليا",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "cavabla",
|
||||
"share": "paylaş",
|
||||
"bookmarks": "əlfəcinlərə əlavə et",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Heç bir istifadəçi yoxdur",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "Antworten",
|
||||
"share": "Teilen",
|
||||
"bookmarks": "Lesezeichen hinzufügen",
|
||||
"promote": "Promote"
|
||||
"promote": "Promote",
|
||||
"boost": "Boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Kein vorhandener Benutzer",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "responder",
|
||||
"share": "compartir",
|
||||
"bookmarks": "añadir a favoritos",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Usuario no existe",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "پاسخ دادن",
|
||||
"share": "درمیان گذاری",
|
||||
"bookmarks": "اضافه کردن به صفحات مورد علاقه",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "کاربری موجود نیست",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "vastaa",
|
||||
"share": "jaa",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "répondre",
|
||||
"share": "partager",
|
||||
"bookmarks": "ajouter aux signets",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utilisateur inexistant",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "השב",
|
||||
"share": "שתף\\י",
|
||||
"bookmarks": "הוסף\\י לסימניות",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "המשתמש אינו קיים",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "जवाब दें",
|
||||
"share": "साझा करें",
|
||||
"bookmarks": "पृष्ठ स्मृति में जोड़ें",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "कोई विद्यमान उपयोगकर्ता नहीं",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "odgovor",
|
||||
"share": "podijeli",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Ne postojeći korisnik",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "válasz",
|
||||
"share": "megosztás",
|
||||
"bookmarks": "hozzáadás a könyvjelzőkhöz",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nem létező felhasználó",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "balas",
|
||||
"share": "bagikan",
|
||||
"bookmarks": "tambah ke penanda",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Tidak ada pengguna yang ada",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "rispondi",
|
||||
"share": "condividi",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utente non esistente",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "댓글",
|
||||
"share": "공유",
|
||||
"bookmarks": "즐겨찾기에 추가",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "존재하지 않는 사용자입니다",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "atsakymas",
|
||||
"share": "dalintis",
|
||||
"bookmarks": "pridėti į žymes",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nėra tokio vartotojo",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "Membalas",
|
||||
"share": "kongsi",
|
||||
"bookmarks": "tambah ke tanda halaman",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Pengguna tidak wujud",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reageer",
|
||||
"share": "deel",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Geen bestaande gebruiker",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply am",
|
||||
"share": "share am",
|
||||
"bookmarks": "add am to bookmark",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "The person no exist",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "responder",
|
||||
"share": "partilhar",
|
||||
"bookmarks": "adicionar aos marcadores",
|
||||
"promote": "promover"
|
||||
"promote": "promover",
|
||||
"boost": "reforço"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Usuário não existe",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "răspunde",
|
||||
"share": "distribuire",
|
||||
"bookmarks": "adaugă la bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utilizator inexistent",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "ответить",
|
||||
"share": "поделиться",
|
||||
"bookmarks": "добавить в закладки",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Несуществующий пользователь",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "odgovori",
|
||||
"share": "podeli",
|
||||
"bookmarks": "dodaj u obeleživače",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nema postojećih korisnika",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "cevapla",
|
||||
"share": "paylaş",
|
||||
"bookmarks": "yer imlerine ekle",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Kullanici Bulunamadi",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "trả lời",
|
||||
"share": "chia sẻ",
|
||||
"bookmarks": "thêm vào dấu trang",
|
||||
"promote": "quảng bá"
|
||||
"promote": "quảng bá",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Không có người dùng hiện tại",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "se idahun",
|
||||
"share": "pin pelu",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "A ko ri oruko yi",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "reply",
|
||||
"share": "share",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -268,7 +268,8 @@
|
||||
"reply": "回覆",
|
||||
"share": "分享",
|
||||
"bookmarks": "add to bookmarks",
|
||||
"promote": "promote"
|
||||
"promote": "promote",
|
||||
"boost": "boost"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -43,7 +43,6 @@ class BoostPostScreen extends PureComponent {
|
||||
SCPath: '',
|
||||
permlinkSuggestions: [],
|
||||
isValid: false,
|
||||
calculatedESTM: 150,
|
||||
};
|
||||
|
||||
this.startActionSheet = React.createRef();
|
||||
@ -192,85 +191,60 @@ class BoostPostScreen extends PureComponent {
|
||||
}
|
||||
/>
|
||||
<Text style={styles.balanceText}>{`${balance || _balance} ESTM`}</Text>
|
||||
<Fragment>
|
||||
<View style={styles.autocomplateLineContainer}>
|
||||
<View style={styles.autocomplateLabelContainer}>
|
||||
{
|
||||
<Text style={styles.autocomplateLabelText}>
|
||||
{intl.formatMessage({ id: 'promote.permlink' })}
|
||||
</Text>
|
||||
}
|
||||
</View>
|
||||
|
||||
<Autocomplete
|
||||
autoCapitalize="none"
|
||||
autoCorrect={false}
|
||||
inputContainerStyle={styles.autocomplate}
|
||||
data={permlinkSuggestions}
|
||||
listContainerStyle={styles.autocomplateListContainer}
|
||||
listStyle={styles.autocomplateList}
|
||||
onChangeText={text => this._handleOnPermlinkChange(text)}
|
||||
renderTextInput={() => (
|
||||
<TextInput
|
||||
style={styles.input}
|
||||
onChangeText={text => this._handleOnPermlinkChange(text)}
|
||||
value={permlink || get(navigationParams, 'permlink', '')}
|
||||
placeholder={intl.formatMessage({ id: 'promote.permlinkPlaceholder' })}
|
||||
placeholderTextColor="#c1c5c7"
|
||||
autoCapitalize="none"
|
||||
/>
|
||||
)}
|
||||
renderItem={({ item }) => (
|
||||
<TouchableOpacity
|
||||
key={item}
|
||||
onPress={() =>
|
||||
this.setState({
|
||||
permlink: item,
|
||||
isValid: true,
|
||||
permlinkSuggestions: [],
|
||||
})
|
||||
}
|
||||
>
|
||||
<Text style={styles.autocomplateItemText}>{item}</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
/>
|
||||
<View style={styles.autocomplateLineContainer}>
|
||||
<View style={styles.autocomplateLabelContainer}>
|
||||
{
|
||||
<Text style={styles.autocomplateLabelText}>
|
||||
{intl.formatMessage({ id: 'promote.permlink' })}
|
||||
</Text>
|
||||
}
|
||||
</View>
|
||||
</Fragment>
|
||||
|
||||
<View style={styles.total}>
|
||||
<Text style={styles.day}>
|
||||
{`${getESTMPrice(calculatedESTM).toFixed(3)} $ `}
|
||||
</Text>
|
||||
<Text style={styles.price}>{`${calculatedESTM} ESTM`}</Text>
|
||||
<Autocomplete
|
||||
autoCapitalize="none"
|
||||
autoCorrect={false}
|
||||
inputContainerStyle={styles.autocomplate}
|
||||
data={permlinkSuggestions}
|
||||
listContainerStyle={styles.autocomplateListContainer}
|
||||
listStyle={styles.autocomplateList}
|
||||
onChangeText={this._handleOnPermlinkChange}
|
||||
renderTextInput={() => (
|
||||
<TextInput
|
||||
style={styles.input}
|
||||
onChangeText={text => this._handleOnPermlinkChange(text)}
|
||||
value={permlink || get(navigationParams, 'permlink', '')}
|
||||
placeholder={intl.formatMessage({ id: 'promote.permlinkPlaceholder' })}
|
||||
placeholderTextColor="#c1c5c7"
|
||||
autoCapitalize="none"
|
||||
/>
|
||||
)}
|
||||
renderItem={({ item }) => (
|
||||
<TouchableOpacity
|
||||
key={item}
|
||||
onPress={() =>
|
||||
this.setState({
|
||||
permlink: item,
|
||||
isValid: true,
|
||||
permlinkSuggestions: [],
|
||||
})
|
||||
}
|
||||
>
|
||||
<Text style={styles.autocomplateItemText}>{item}</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
/>
|
||||
</View>
|
||||
|
||||
<View
|
||||
style={{
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
flexDirection: 'row',
|
||||
}}
|
||||
>
|
||||
<MainButton
|
||||
style={{ width: 55, height: 55, justifyContent: 'center' }}
|
||||
isDisable={!(_balance / 50 > factor + 4)}
|
||||
onPress={() =>
|
||||
this.setState({
|
||||
factor: _balance / 50 > factor + 4 ? factor + 1 : factor,
|
||||
})
|
||||
}
|
||||
>
|
||||
<Icon
|
||||
size={24}
|
||||
style={{ color: 'white' }}
|
||||
iconType="MaterialIcons"
|
||||
name="add"
|
||||
/>
|
||||
</MainButton>
|
||||
<View style={styles.total}>
|
||||
<Text style={styles.price}>
|
||||
{`${getESTMPrice(calculatedESTM).toFixed(3)} $ `}
|
||||
</Text>
|
||||
<Text style={styles.esteem}>{`${calculatedESTM} ESTM`}</Text>
|
||||
</View>
|
||||
|
||||
<View style={styles.quickButtonsWrapper}>
|
||||
<MainButton
|
||||
style={{ width: 55, height: 55, justifyContent: 'center' }}
|
||||
style={styles.quickButtons}
|
||||
isDisable={!(calculatedESTM > 150)}
|
||||
onPress={() =>
|
||||
this.setState({
|
||||
@ -285,6 +259,23 @@ class BoostPostScreen extends PureComponent {
|
||||
name="minus"
|
||||
/>
|
||||
</MainButton>
|
||||
|
||||
<MainButton
|
||||
style={styles.quickButtons}
|
||||
isDisable={!(_balance / 50 > factor + 4)}
|
||||
onPress={() =>
|
||||
this.setState({
|
||||
factor: _balance / 50 > factor + 4 ? factor + 1 : factor,
|
||||
})
|
||||
}
|
||||
>
|
||||
<Icon
|
||||
size={24}
|
||||
style={{ color: 'white' }}
|
||||
iconType="MaterialIcons"
|
||||
name="add"
|
||||
/>
|
||||
</MainButton>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
|
@ -150,13 +150,23 @@ export default EStyleSheet.create({
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
},
|
||||
day: {
|
||||
price: {
|
||||
fontSize: 22,
|
||||
color: '$primaryBlue',
|
||||
fontWeight: 'bold',
|
||||
},
|
||||
price: {
|
||||
esteem: {
|
||||
fontSize: 15,
|
||||
color: '$primaryBlue',
|
||||
},
|
||||
quickButtons: {
|
||||
width: 55,
|
||||
height: 55,
|
||||
justifyContent: 'center',
|
||||
},
|
||||
quickButtonsWrapper: {
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
flexDirection: 'row',
|
||||
},
|
||||
});
|
||||
|
@ -1,22 +0,0 @@
|
||||
// TODO: Add top users from Surfer
|
||||
|
||||
import React from 'react';
|
||||
import { View, Text } from 'react-native';
|
||||
|
||||
class DiscoverPage extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
componentDidMount() {}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<View>
|
||||
<Text> Discover </Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default DiscoverPage;
|
@ -1,947 +0,0 @@
|
||||
export const Discover = [
|
||||
'haejin',
|
||||
'steemsports',
|
||||
'knozaki2015',
|
||||
'papa-pepper',
|
||||
'steemcleaners',
|
||||
'gavvet',
|
||||
'kingscrown',
|
||||
'krnel',
|
||||
'jrcornel',
|
||||
'adsactly',
|
||||
'acidyo',
|
||||
'ozchartart',
|
||||
'me-tarzan',
|
||||
'doitvoluntarily',
|
||||
'chinadaily',
|
||||
'craig-grant',
|
||||
'sweetsssj',
|
||||
'ericvancewalton',
|
||||
'stellabelle',
|
||||
'curie',
|
||||
'slowwalker',
|
||||
'gringalicious',
|
||||
'kevinwong',
|
||||
'dollarvigilante',
|
||||
'sirwinchester',
|
||||
'oflyhigh',
|
||||
'opheliafu',
|
||||
'exyle',
|
||||
'officialfuzzy',
|
||||
'traf',
|
||||
'good-karma',
|
||||
'michelle.gent',
|
||||
'barrydutton',
|
||||
'velimir',
|
||||
'thecryptofiend',
|
||||
'joseph',
|
||||
'sauravrungta',
|
||||
'tuck-fheman',
|
||||
'kafkanarchy84',
|
||||
'hanshotfirst',
|
||||
'b0y2k',
|
||||
'calaber24p',
|
||||
'donkeypong',
|
||||
'aggroed',
|
||||
'kaylinart',
|
||||
'jerrybanfield',
|
||||
'alexbeyman',
|
||||
'stephenkendal',
|
||||
'krexchange',
|
||||
'cervantes',
|
||||
'dana-edwards',
|
||||
'hilarski',
|
||||
'ats-david',
|
||||
'cryptoctopus',
|
||||
'fyrstikken',
|
||||
'cheetah',
|
||||
'deanliu',
|
||||
'steemtrail',
|
||||
'cryptopassion',
|
||||
'luzcypher',
|
||||
'cryptogee',
|
||||
'steempower',
|
||||
'czechglobalhosts',
|
||||
'gardenofeden',
|
||||
'meesterboom',
|
||||
'dantheman',
|
||||
'macksby',
|
||||
'timsaid',
|
||||
'dragosroua',
|
||||
'lukestokes',
|
||||
'mynameisbrian',
|
||||
'allasyummyfood',
|
||||
'sndbox',
|
||||
'rok-sivante',
|
||||
'zer0hedge',
|
||||
'jlufer',
|
||||
'marius19',
|
||||
'the-alien',
|
||||
'adamkokesh',
|
||||
'everittdmickey',
|
||||
'dwinblood',
|
||||
'contentjunkie',
|
||||
'crypt0',
|
||||
'penguinpablo',
|
||||
'lily-da-vine',
|
||||
'ace108',
|
||||
'nanzo-scoop',
|
||||
'mindhunter',
|
||||
'ocd',
|
||||
'darksaint',
|
||||
'clayop',
|
||||
'timcliff',
|
||||
'heiditravels',
|
||||
'steemvoter',
|
||||
'pfunk',
|
||||
'rivalhw',
|
||||
'kus-knee',
|
||||
'johnjgeddes',
|
||||
'homeartpictures',
|
||||
'myfirst',
|
||||
'elfkitchen',
|
||||
'klye',
|
||||
'surfermarly',
|
||||
'daveks',
|
||||
'transisto',
|
||||
'firepower',
|
||||
'exploretraveler',
|
||||
'lexiconical',
|
||||
'halo',
|
||||
'milaoz',
|
||||
'dragonslayer109',
|
||||
'kusadasi',
|
||||
'teamsteem',
|
||||
'virus707',
|
||||
'pressfortruth',
|
||||
'terrycraft',
|
||||
'abdullar',
|
||||
'ausbitbank',
|
||||
'helene',
|
||||
'infovore',
|
||||
'ash',
|
||||
'leesunmoo',
|
||||
'sochul',
|
||||
'ramengirl',
|
||||
'honeybee',
|
||||
'future24',
|
||||
'oldstone',
|
||||
'burnpost',
|
||||
'hansikhouse',
|
||||
'uwelang',
|
||||
'charlieshrem',
|
||||
'birds90',
|
||||
'brittuf',
|
||||
'sportsncoffee',
|
||||
'onceuponatime',
|
||||
'vcelier',
|
||||
'tamim',
|
||||
'lukewearechange',
|
||||
'tygergamer',
|
||||
'englishtchrivy',
|
||||
'roelandp',
|
||||
'boxmining',
|
||||
'samstonehill',
|
||||
'try-market',
|
||||
'anwenbaumeister',
|
||||
'buzzbeergeek',
|
||||
'steemitblog',
|
||||
'rigaronib',
|
||||
'stackin',
|
||||
'suesa',
|
||||
'gargon',
|
||||
'juvyjabian',
|
||||
'kyriacos',
|
||||
'tarazkp',
|
||||
'rea',
|
||||
'flamingirl',
|
||||
'inber',
|
||||
'sirlunchthehost',
|
||||
'jamtaylor',
|
||||
'nonameslefttouse',
|
||||
'virtualgrowth',
|
||||
'twinkledrop',
|
||||
'ocrdu',
|
||||
'verbal-d',
|
||||
'tftproject',
|
||||
'titusfrost',
|
||||
'mariandavp',
|
||||
'platinum-blue',
|
||||
'lichtblick',
|
||||
'quinneaker',
|
||||
'themarkymark',
|
||||
'scottdphoto',
|
||||
'trafalgar',
|
||||
'joshsigurdson',
|
||||
'dobartim',
|
||||
'ezzy',
|
||||
'blocktrades',
|
||||
'lyubovbar',
|
||||
'jesta',
|
||||
'masteryoda',
|
||||
'winstonwolfe',
|
||||
'royalmacro',
|
||||
'edgarsart',
|
||||
'lemooljiang',
|
||||
'justyy',
|
||||
'stimp1024',
|
||||
'saramiller',
|
||||
'inertia',
|
||||
'yoonjang0707',
|
||||
'davidpakman',
|
||||
'koreaculture',
|
||||
'bridgetbunchy',
|
||||
'richq11',
|
||||
'v4vapid',
|
||||
'eveuncovered',
|
||||
'cristi',
|
||||
'anahilarski',
|
||||
'serejandmyself',
|
||||
'reddust',
|
||||
'skypilot',
|
||||
'steevc',
|
||||
'jacor',
|
||||
'dumar022',
|
||||
'bkkshadow',
|
||||
'whatageek',
|
||||
'benjojo',
|
||||
'sykochica',
|
||||
'crazymumzysa',
|
||||
'allmonitors',
|
||||
'yetaras',
|
||||
'markrmorrisjr',
|
||||
'grumpycat',
|
||||
'stan',
|
||||
'shieha',
|
||||
'moon32walker',
|
||||
'xeroc',
|
||||
'marinauzelac',
|
||||
'mrviquez',
|
||||
'susanne',
|
||||
'htliao',
|
||||
'lndesta120282',
|
||||
'acromott',
|
||||
'giantbear',
|
||||
'bullionstackers',
|
||||
'karenmckersie',
|
||||
'furion',
|
||||
'andrarchy',
|
||||
'richman',
|
||||
'cryptopie',
|
||||
'razvanelulmarin',
|
||||
'pgarcgo',
|
||||
'runridefly',
|
||||
'justtryme90',
|
||||
'dreemit',
|
||||
'schattenjaeger',
|
||||
'andrianna',
|
||||
'surpassinggoogle',
|
||||
'loteem',
|
||||
'nspart',
|
||||
'elyaque',
|
||||
'khaleelkazi',
|
||||
'amylee',
|
||||
'piedpiper',
|
||||
'kommienezuspadt',
|
||||
'bigram13',
|
||||
'jgcastrillo19',
|
||||
'norbu',
|
||||
'blackbunny',
|
||||
'anasz',
|
||||
'bontonstory',
|
||||
'levycore',
|
||||
'broncnutz',
|
||||
'skapaneas',
|
||||
'tumutanzi',
|
||||
'ejemai',
|
||||
'oldtimer',
|
||||
'lordoftruth',
|
||||
'shortcut',
|
||||
'd-pend',
|
||||
'etcmike',
|
||||
'karensuestudios',
|
||||
'corn113',
|
||||
'joythewanderer',
|
||||
'arcange',
|
||||
'keuudeip',
|
||||
'fishingvideos',
|
||||
'dan',
|
||||
'ura-soul',
|
||||
'juliank',
|
||||
'whatsup',
|
||||
'jaki01',
|
||||
'creatr',
|
||||
'steemswede',
|
||||
'alienbutt',
|
||||
'bookingteam.com',
|
||||
'africa',
|
||||
'michaellamden68',
|
||||
'soundlegion',
|
||||
'boxcarblue',
|
||||
'olga.maslievich',
|
||||
'karenb54',
|
||||
'ngos',
|
||||
'writesbackwards',
|
||||
'l0k1',
|
||||
'kencode',
|
||||
'jsantana',
|
||||
'merej99',
|
||||
'africaunited',
|
||||
'canadian-coconut',
|
||||
'voronoi',
|
||||
'eneismijmich',
|
||||
'abit',
|
||||
'awesomenyl',
|
||||
'morning',
|
||||
'twinbraid',
|
||||
'silvia',
|
||||
'awgbibb',
|
||||
'lemouth',
|
||||
'vannour',
|
||||
'dailybitcoinnews',
|
||||
'williambanks',
|
||||
'bravenewcoin',
|
||||
'cuttie1979',
|
||||
'steemizen',
|
||||
'ghasemkiani',
|
||||
'roxane',
|
||||
'flauwy',
|
||||
'ability',
|
||||
'larkenrose',
|
||||
'natureofbeing',
|
||||
'liberosist',
|
||||
'yadamaniart',
|
||||
'herverisson',
|
||||
'communitycoin',
|
||||
'amy-goodrich',
|
||||
'son-of-satire',
|
||||
'funnyman',
|
||||
'truth-revelation',
|
||||
'cass',
|
||||
'lordvader',
|
||||
'everlove',
|
||||
'jarendesta',
|
||||
'getonthetrain',
|
||||
'majes',
|
||||
'marketreport',
|
||||
'boddhisattva',
|
||||
'discernente',
|
||||
'trevonjb',
|
||||
'scaredycatguide',
|
||||
'steemrollin',
|
||||
'zeartul',
|
||||
'bacchist',
|
||||
'sokoloffa',
|
||||
'kennyskitchen',
|
||||
'lifeisawesome',
|
||||
'mammasitta',
|
||||
'sulev',
|
||||
'webdeals',
|
||||
'hiroyamagishi',
|
||||
'ned',
|
||||
'corbettreport',
|
||||
'rynow',
|
||||
'silviabeneforti',
|
||||
'writingamigo',
|
||||
'honeyscribe',
|
||||
'denmarkguy',
|
||||
'fairytalelife',
|
||||
'fibra59',
|
||||
'sean-king',
|
||||
'xxsenpaixsamaxx',
|
||||
'poeticsnake',
|
||||
'bert0',
|
||||
'netuoso',
|
||||
'x22report',
|
||||
'sammosk',
|
||||
'jwolf',
|
||||
'beginningtoend',
|
||||
'mrwang',
|
||||
'riosparada',
|
||||
'jubi',
|
||||
'reko',
|
||||
'teukumukhlis',
|
||||
'soldier',
|
||||
'luisucv34',
|
||||
'bambam808',
|
||||
'pharesim',
|
||||
'abusereports',
|
||||
'paolobeneforti',
|
||||
'jassennessaj',
|
||||
'chrissysworld',
|
||||
'chitty',
|
||||
'steemdice1',
|
||||
'anritco',
|
||||
'ssekulji',
|
||||
'rossenpavlov',
|
||||
'minnowbooster',
|
||||
'chessmonster',
|
||||
'kalemandra',
|
||||
'mctiller',
|
||||
'sunscape',
|
||||
'marketingmonk',
|
||||
'customnature',
|
||||
'rubenalexander',
|
||||
'therealpaul',
|
||||
'sardrt',
|
||||
'goldmatters',
|
||||
'rerez',
|
||||
'cryptokraze',
|
||||
'darthnava',
|
||||
'aksinya',
|
||||
'brian.rrr',
|
||||
'animal-shelter',
|
||||
'lalala',
|
||||
'wartrapa',
|
||||
'freiheit50',
|
||||
'anomadsoul',
|
||||
'streetstyle',
|
||||
'mrosenquist',
|
||||
'thenightflier',
|
||||
'onetree',
|
||||
'aishwarya',
|
||||
'juanmiguelsalas',
|
||||
'betamusic',
|
||||
'stacee',
|
||||
'jademont',
|
||||
'writemore',
|
||||
'smooth',
|
||||
'abh12345',
|
||||
'ejhaasteem',
|
||||
'prufarchy',
|
||||
'camilla',
|
||||
'oendertuerk',
|
||||
'leylar',
|
||||
'terrybrock',
|
||||
'grisha-danunaher',
|
||||
'travelgirl',
|
||||
'jacobtothe',
|
||||
'heymattsokol',
|
||||
'mrs.steemit',
|
||||
'kyusho',
|
||||
'hisnameisolllie',
|
||||
'minnowsupport',
|
||||
'neoxian',
|
||||
'schamangerbert',
|
||||
'unhorsepower777',
|
||||
'steemship',
|
||||
'someone',
|
||||
'ervin-lemark',
|
||||
'thisisbenbrick',
|
||||
'krystle',
|
||||
'lawrenceho84',
|
||||
'adonisabril',
|
||||
'danyelk',
|
||||
'beanz',
|
||||
'churdtzu',
|
||||
'steemvest17',
|
||||
'eric-boucher',
|
||||
'profitgenerator',
|
||||
'amiramnoam',
|
||||
'vlemon',
|
||||
'liondani',
|
||||
'steeminator3000',
|
||||
'katharsisdrill',
|
||||
'steve-walschot',
|
||||
'anyx',
|
||||
'shla-rafia',
|
||||
'bxt',
|
||||
'thegoldencookie',
|
||||
'danizaharie',
|
||||
'orcish',
|
||||
'lyndsaybowes',
|
||||
'buildawhale',
|
||||
'lloyddavis',
|
||||
'chbartist',
|
||||
'prameshtyagi',
|
||||
'andyluy',
|
||||
'paper-pecado',
|
||||
'bleujay',
|
||||
'perspective',
|
||||
'aaronkoenig',
|
||||
'jayjes',
|
||||
'woo7739',
|
||||
'leohira123',
|
||||
'pinacle',
|
||||
'countryinspired',
|
||||
'cognoscere',
|
||||
'cjsdns',
|
||||
'taskmaster4450',
|
||||
'armen',
|
||||
'sterlinluxan',
|
||||
'gonzo',
|
||||
'ioc',
|
||||
'dimimp',
|
||||
'adelja',
|
||||
'riostarr',
|
||||
'someguy123',
|
||||
'charles1',
|
||||
'jondoe',
|
||||
'highimpactflix',
|
||||
'coruscate',
|
||||
'anton-kostroma',
|
||||
'wadepaterson',
|
||||
'stach',
|
||||
'brianphobos',
|
||||
'drwom',
|
||||
'the-future',
|
||||
'playfulfoodie',
|
||||
'shayne',
|
||||
'zaebars',
|
||||
'anca3drandom',
|
||||
'evildeathcore',
|
||||
'ew-and-patterns',
|
||||
'herpetologyguy',
|
||||
'clains',
|
||||
'strawhat',
|
||||
'complexring',
|
||||
'danilamarilu',
|
||||
'cnfund',
|
||||
'skt1',
|
||||
'aluma',
|
||||
'yoganarchista',
|
||||
'vimukthi',
|
||||
'leomichael',
|
||||
'linuslee0216',
|
||||
'steembusiness',
|
||||
'ozmaster',
|
||||
'lauralemons',
|
||||
'thomasjmitchell',
|
||||
'rebeccaryan',
|
||||
'daio',
|
||||
'maysun',
|
||||
'steempostitalia',
|
||||
'tanata',
|
||||
'alexvan',
|
||||
'techblogger',
|
||||
'shenanigator',
|
||||
'renzoarg',
|
||||
'dresden',
|
||||
'redpalestino',
|
||||
'fatkat',
|
||||
'dannystravels',
|
||||
'steempowerpics',
|
||||
'pilgrimtraveler',
|
||||
'jgullinese',
|
||||
'kim066',
|
||||
'harferri',
|
||||
'richristow',
|
||||
'hitheryon',
|
||||
'barrycooper',
|
||||
'sherrychan',
|
||||
'pollux.one',
|
||||
'kiddarko',
|
||||
'scandinavianlife',
|
||||
'solarguy',
|
||||
'shady',
|
||||
'yoo1900',
|
||||
'carlos-cabeza',
|
||||
'guyverckw',
|
||||
'smailer',
|
||||
'sgtreport',
|
||||
'jaynie',
|
||||
'ehiboss',
|
||||
'germanlifestyle',
|
||||
'elewarne',
|
||||
'robin-ho',
|
||||
'themanualbot',
|
||||
'anarchyhasnogods',
|
||||
'knircky',
|
||||
'steemit-health',
|
||||
'jeffberwick',
|
||||
'yuliana',
|
||||
'revelationquotes',
|
||||
'maneco64',
|
||||
'neilstrauss',
|
||||
'paulshin',
|
||||
'tradewonk',
|
||||
'modprobe',
|
||||
'maarnio',
|
||||
'oaldamster',
|
||||
'woman-onthe-wing',
|
||||
'asbear',
|
||||
'fedrarosi',
|
||||
'gregm',
|
||||
'gotoperson',
|
||||
'safar01',
|
||||
'themagus',
|
||||
'sigizzang',
|
||||
'blueorgy',
|
||||
'jpiper20',
|
||||
'k-a-s-i-a',
|
||||
'kakaotalk',
|
||||
'infinitor',
|
||||
'valth',
|
||||
'mnaik',
|
||||
'kristinaljfom',
|
||||
'starttheart',
|
||||
'kalvas',
|
||||
'rymlen',
|
||||
'breezin',
|
||||
'bunnypuncher',
|
||||
'serenawu',
|
||||
'cm-steem',
|
||||
'intelliguy',
|
||||
'fisteganos',
|
||||
'shaka',
|
||||
'clayboyn',
|
||||
'nekromarinist',
|
||||
'utopian-io',
|
||||
'geetharao',
|
||||
'ontofractal',
|
||||
'katecloud',
|
||||
'angel76',
|
||||
'drac59',
|
||||
'rosatravels',
|
||||
'checkthisout',
|
||||
'liliana.duarte',
|
||||
'lydon.sipe',
|
||||
'louisthomas',
|
||||
'deveerei',
|
||||
'theaustrianguy',
|
||||
'suerisue',
|
||||
'thecatfiles',
|
||||
'steempickem',
|
||||
'yenlau',
|
||||
'raybrockman',
|
||||
'busy.org',
|
||||
'jejujinfarm',
|
||||
'kotturinn',
|
||||
'richardcrill',
|
||||
'okseoul',
|
||||
'arhag',
|
||||
'ackza',
|
||||
'maxjoy',
|
||||
'sarahewaring',
|
||||
'hitmeasap',
|
||||
'extie-dasilva',
|
||||
'stevescoins',
|
||||
'fubar-bdhr',
|
||||
'leemikyung',
|
||||
'elear',
|
||||
'budgetbucketlist',
|
||||
'unipsycho',
|
||||
'paradise-found',
|
||||
'joeparys',
|
||||
'twinner',
|
||||
'arunava',
|
||||
'soyjoseluis',
|
||||
'baharoba',
|
||||
'steemgold',
|
||||
'romanskv',
|
||||
'dexter-k',
|
||||
'icedrum',
|
||||
'blakemiles84',
|
||||
'ripa',
|
||||
'crypto-p',
|
||||
'peerplays',
|
||||
'logic',
|
||||
'felixxx',
|
||||
'xyanthon',
|
||||
'michaelleeld',
|
||||
'patelincho',
|
||||
'bola',
|
||||
'eroche',
|
||||
'tojukaka',
|
||||
'condra',
|
||||
'generikat',
|
||||
'jessamynorchard',
|
||||
'elizahfhaye',
|
||||
'jasimg',
|
||||
'alcibiades',
|
||||
'sportspodium',
|
||||
'hilarious',
|
||||
'happyworkingmom',
|
||||
'aaronli',
|
||||
'stealthtrader',
|
||||
'naquoya',
|
||||
'leftbank',
|
||||
'mindfreak',
|
||||
'artguru',
|
||||
'bitcoinparadise',
|
||||
'koskl',
|
||||
'kiwideb',
|
||||
'spenceryan',
|
||||
'simba',
|
||||
'rgeddes',
|
||||
'godflesh',
|
||||
'glitterfart',
|
||||
'blockgators',
|
||||
'krishtopa',
|
||||
'supermarioo',
|
||||
'raymondspeaks',
|
||||
'jacobcards',
|
||||
'chronocrypto',
|
||||
'catwomanteresa',
|
||||
'snow-airline',
|
||||
'xiaohui',
|
||||
'husaini',
|
||||
'paulag',
|
||||
'cryplectibles',
|
||||
'rmach',
|
||||
'skt',
|
||||
'curiesea',
|
||||
'bulleth',
|
||||
'yoon',
|
||||
'jack8831',
|
||||
'tangerinetravels',
|
||||
'isaria',
|
||||
'aiqabrago',
|
||||
'internutter',
|
||||
'tatianamoroz',
|
||||
'ashely056',
|
||||
'cheongpyeongyull',
|
||||
'janusface',
|
||||
'wefund',
|
||||
'sme',
|
||||
'wilkinshui',
|
||||
'angelinafx',
|
||||
'rucoin',
|
||||
'screenname',
|
||||
'cryptos',
|
||||
'tangmo',
|
||||
'jonny-clearwater',
|
||||
'maverickfoo',
|
||||
'runicar',
|
||||
'progressivechef',
|
||||
'kasho',
|
||||
'isaaclab',
|
||||
'flipstar',
|
||||
'creativekorea',
|
||||
'elias15g',
|
||||
'alexgr',
|
||||
'bitrocker2020',
|
||||
'jumaidafajar',
|
||||
'tarekadam',
|
||||
'muzhu',
|
||||
'trevor.george',
|
||||
'vampiretta',
|
||||
'wakeupnd',
|
||||
'lazariko12',
|
||||
'blockchained',
|
||||
'dontstopmenow',
|
||||
'biophil',
|
||||
'shinternational',
|
||||
'drag33',
|
||||
'tata1',
|
||||
'helgachen',
|
||||
'wony',
|
||||
'furious-one',
|
||||
'jedau',
|
||||
'emrebeyler',
|
||||
'deviedev',
|
||||
'jeff-kubitz',
|
||||
'cmp2020',
|
||||
'gavicrane',
|
||||
'qurator',
|
||||
'ludorum',
|
||||
'dan-atstarlite',
|
||||
'little-peppers',
|
||||
'theghost1980',
|
||||
'mibenkito',
|
||||
'jamielefay',
|
||||
'harshilpatel',
|
||||
'beers',
|
||||
'crowdfundedwhale',
|
||||
'magicmonk',
|
||||
'mikkolyytinen',
|
||||
'samupaha',
|
||||
'hipster',
|
||||
'steemtruth',
|
||||
'xiaofang',
|
||||
'emancipatedhuman',
|
||||
'lapilipinas',
|
||||
'reneenouveau',
|
||||
'dcrypto',
|
||||
'talanhorne',
|
||||
'bigpanda',
|
||||
'chainsquad',
|
||||
'learnguitar',
|
||||
'kobold-djawa',
|
||||
'shadowspub',
|
||||
'fabio',
|
||||
'wisemansays',
|
||||
'randowhale',
|
||||
'noctisk',
|
||||
'robyneggs',
|
||||
'mokluc',
|
||||
'dunsky',
|
||||
'stoodkev',
|
||||
'gooddream',
|
||||
'sofi-m',
|
||||
'redjepi',
|
||||
'aldentan',
|
||||
'instructor2121',
|
||||
'demotruk',
|
||||
'kiligirl',
|
||||
'natord',
|
||||
'theprophet0',
|
||||
'kid4life',
|
||||
'vladimir-simovic',
|
||||
'btsabc',
|
||||
'unmean-stweets',
|
||||
'dbroze',
|
||||
'techslut',
|
||||
'jarvie',
|
||||
'mgibson',
|
||||
'arthuradamson',
|
||||
'bycompoundfilms',
|
||||
'heimindanger',
|
||||
'nextgen622',
|
||||
'mandibil',
|
||||
'purepinay',
|
||||
'lovejoy',
|
||||
'nainaztengra',
|
||||
'labradorpuppies',
|
||||
'fahmidamti',
|
||||
'yallapapi',
|
||||
'mcfarhat',
|
||||
'riskdebonair',
|
||||
'kimsungmin',
|
||||
'cron',
|
||||
'hphabib',
|
||||
'dapeng',
|
||||
'thedamus',
|
||||
'bitcoinmeister',
|
||||
'afrog',
|
||||
'bitcoinflood',
|
||||
'pcste',
|
||||
'goldkey',
|
||||
'nolnocluap',
|
||||
'venti',
|
||||
'ebryans',
|
||||
'ikigai',
|
||||
'jaybird',
|
||||
'dnews',
|
||||
'simon.bolivar',
|
||||
'mattclarke',
|
||||
'sandrino',
|
||||
'able',
|
||||
'noisy',
|
||||
'colinbrazendale',
|
||||
'lenatramper',
|
||||
'yangyang',
|
||||
'steemfest',
|
||||
'johnallen',
|
||||
'steemit-life',
|
||||
'gaming-trail',
|
||||
'steemstem',
|
||||
'sebastianjago',
|
||||
'danlupi',
|
||||
'jankasparec',
|
||||
'sponge-bob',
|
||||
'kris10',
|
||||
'khaiyoui',
|
||||
'kb720k',
|
||||
'heart-to-heart',
|
||||
'apolymask',
|
||||
'sascha',
|
||||
'anotherjoe',
|
||||
'neojew',
|
||||
'hyojunguy',
|
||||
'claudiop63',
|
||||
'lpfaust',
|
||||
'jasonrussell',
|
||||
'alol',
|
||||
'unlonely-soul',
|
||||
'zappl',
|
||||
'ivan-perez-anies',
|
||||
'pairmike',
|
||||
'nikflossus',
|
||||
'pakganern',
|
||||
'chris4210',
|
||||
'trendylife',
|
||||
'vitruvianman',
|
||||
'yabapmatt',
|
||||
'lince',
|
||||
'axeman',
|
||||
'nepd',
|
||||
'journeyoflife',
|
||||
'arie.steem',
|
||||
'jeezzle',
|
||||
'inphiknit',
|
||||
'edje',
|
||||
'abrockman',
|
||||
'abagendo',
|
||||
'rest100',
|
||||
'lifeworship',
|
||||
'kevinli',
|
||||
'ogoowinner',
|
||||
'ruth-girl',
|
||||
'nikv',
|
||||
'world-travel-pro',
|
||||
'nicolemoker',
|
||||
'singhrajat',
|
||||
'rafinadps',
|
||||
'adrianobalan',
|
||||
'keiserreport',
|
||||
'havok777',
|
||||
'alexc',
|
||||
'laonie',
|
||||
'yandot',
|
||||
'kumada90',
|
||||
'tj4real',
|
||||
'megaspore',
|
||||
'qhaltpal',
|
||||
'ansharphoto',
|
||||
'punchline',
|
||||
'kralizec',
|
||||
'vermillionfox',
|
||||
'xtrodinarypilot',
|
||||
'codydeeds',
|
||||
'abudar',
|
||||
'byd',
|
||||
'achim86',
|
||||
'hopehuggs',
|
||||
'gtg',
|
||||
'foreman',
|
||||
'nv21089',
|
||||
'rubysteem',
|
||||
'ogochukwu',
|
||||
'keepit',
|
||||
'markwhittam',
|
||||
'enazwahsdarb',
|
||||
'sstefan',
|
||||
'countrygirl',
|
||||
'hustletoparadise',
|
||||
'glennolua',
|
||||
'girlbeforemirror',
|
||||
'benjamin.still',
|
||||
'yoshiko',
|
||||
'travel-cuisine',
|
||||
'avtzis.petros',
|
||||
'allanlong',
|
||||
'trumpman',
|
||||
'vegascomic',
|
||||
'slickwilly',
|
||||
'pjheinz',
|
||||
'rondonson',
|
||||
'jphenderson',
|
||||
'meherin',
|
||||
'snooway',
|
||||
'alexko-steemit',
|
||||
'movievertigo',
|
||||
'followbtcnews',
|
||||
'oluwoleolaide',
|
||||
'deadspace',
|
||||
'faddat',
|
||||
'celebr1ty',
|
||||
'cloh76',
|
||||
'thebluepanda',
|
||||
'originate',
|
||||
'saamychristen',
|
||||
'acidsun',
|
||||
'dashpaymag',
|
||||
'cynetyc',
|
||||
'edrivegom',
|
||||
'haphazard-hstead',
|
||||
'g-dubs',
|
||||
'mandireiserra',
|
||||
'onealfa',
|
||||
'granturismo',
|
||||
'ivanli',
|
||||
'renutyagi',
|
||||
'lydiachan',
|
||||
'lingfei',
|
||||
'immarojas',
|
||||
];
|
@ -419,6 +419,7 @@ class EditorContainer extends Component {
|
||||
parent_permlink: parentPermlink,
|
||||
permlink,
|
||||
json_metadata: jsonMetadata,
|
||||
parent_author: parentAuthor,
|
||||
} = post;
|
||||
|
||||
let newBody = body;
|
||||
@ -442,7 +443,7 @@ class EditorContainer extends Component {
|
||||
await postContent(
|
||||
currentAccount,
|
||||
pinCode,
|
||||
'',
|
||||
parentAuthor,
|
||||
parentPermlink,
|
||||
permlink,
|
||||
title,
|
||||
|
82
yarn.lock
82
yarn.lock
@ -1301,10 +1301,10 @@
|
||||
xcode "^2.0.0"
|
||||
xmldoc "^0.4.0"
|
||||
|
||||
"@react-native-community/netinfo@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-3.2.1.tgz#cd073b81a4b978f7f55f1a960a0b56c462813e02"
|
||||
integrity sha512-A2qANOnlRDVe+8kMbKMwy3/0bOlOA2+y8DyWg2Rv2KHICIfin+oxixbG0ewAOLQdLkSEyyumZXRmIVl7VI/KJg==
|
||||
"@react-native-community/netinfo@^4.1.3":
|
||||
version "4.1.3"
|
||||
resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-4.1.3.tgz#77571619eb90ff59777a85a913fc30acd30b6020"
|
||||
integrity sha512-c9ppXNFpKkXiKFJhik9Lzw62dosm+cAIvHl6OOGXp2D+1GlliIP+nMMtNapdppPoilRc33f4/GosqnL70viH9Q==
|
||||
|
||||
"@samverschueren/stream-to-observable@^0.3.0":
|
||||
version "0.3.0"
|
||||
@ -1569,46 +1569,45 @@ anymatch@^2.0.0:
|
||||
micromatch "^3.1.4"
|
||||
normalize-path "^2.1.1"
|
||||
|
||||
appcenter-analytics@^1.10.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-analytics/-/appcenter-analytics-1.13.0.tgz#c9ffd6cb103c418425ab6967086a4d085069e4cd"
|
||||
integrity sha512-FTfNXiT/CnXGHqCcqPmP97zmXVq0o+zvTIlpJjFeIJB2N6Cufk3RYohJATjJ40Hc2x1DoBxJ59K3vu4vAtViIA==
|
||||
appcenter-analytics@^2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-analytics/-/appcenter-analytics-2.2.0.tgz#54f1d1c0488e0ab62744c48877b0e7227f0c7e0e"
|
||||
integrity sha512-hrFLlNtvhb3c/LXI0AOJR62cr41lsKbNzgESjHU48eU500H79+qKq3CJhCR4TMBdmM/gh+882jTn+4yu5B24LQ==
|
||||
dependencies:
|
||||
appcenter "1.13.0"
|
||||
appcenter "2.2.0"
|
||||
|
||||
appcenter-crashes@^1.10.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-crashes/-/appcenter-crashes-1.13.0.tgz#c9a5257f71e9c8055494322d4b514e28715debfc"
|
||||
integrity sha512-HlKPbFUgHgWtHjhpZjAKOJnOdLWTzCXKKQ1dWPGlB6M/QA+ssL5gKap1cymPBBwvaL1FwOvWlKW0egVRn6cBTQ==
|
||||
appcenter-crashes@^2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-crashes/-/appcenter-crashes-2.2.0.tgz#dddd2e510192ecb6b38ae4d2a633521de33fafda"
|
||||
integrity sha512-pGszIV1634AtzaRmi0W/Db3Tc/hmouvJmcmmGl2buKF6HEks2fW4wiil1IwAILq+cgoCbqsHODCcCebUhvifDQ==
|
||||
dependencies:
|
||||
appcenter "1.13.0"
|
||||
appcenter "2.2.0"
|
||||
|
||||
appcenter-link-scripts@1.13.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-link-scripts/-/appcenter-link-scripts-1.13.0.tgz#5ddd2143df97c055d1d04d97cd59facec367f368"
|
||||
integrity sha512-+09PdeTzPPJyaVAblF8q/p9xhw9IlzN66vWvU/8F71rnxXuNKswuztl7OxTHJevVXCASmpeZNWlekVrXeEyxvg==
|
||||
appcenter-link-scripts@2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-link-scripts/-/appcenter-link-scripts-2.2.0.tgz#1f348bfcd0e92b5d04268d0cac23c0018428afc1"
|
||||
integrity sha512-CB3GUXLqdnUF37qzm/6P/CY1Tg7sJ3a253rdTnLlnIwJCKWmV2+Hyl4xQw5yPVTzpvee2gc+ZAMsRKzL2ajK0w==
|
||||
dependencies:
|
||||
debug "^2.2.0"
|
||||
glob "^5.0.15"
|
||||
inquirer "6.2.0"
|
||||
mkdirp "^0.5.1"
|
||||
plist "^3.0.1"
|
||||
which "^1.2.11"
|
||||
xcode "^2.0.0"
|
||||
|
||||
appcenter-push@^1.10.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-push/-/appcenter-push-1.13.0.tgz#7678cac2b94b62b2f465a976e5ce5f3d8d68f584"
|
||||
integrity sha512-fYusNN/yJBpFwmCwHizh/6JDw6jYrOpRNmhqSoUJlw1RyFq6KFodWmp+qoOHpoSIXRIQ2ePrrH1wMPyKCoFY+w==
|
||||
appcenter-push@^2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter-push/-/appcenter-push-2.2.0.tgz#6bd13fd040cd45e912a941a651b0d28381b67477"
|
||||
integrity sha512-p4gQiCn1eJygoH76chakn0lA+9VCMey4/p1QemGU4o+LxoM9bM/HKCGllA7M/RaSXkVMa5/s3Hrfw48ahTygPA==
|
||||
dependencies:
|
||||
appcenter "1.13.0"
|
||||
appcenter "2.2.0"
|
||||
|
||||
appcenter@1.13.0, appcenter@^1.10.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter/-/appcenter-1.13.0.tgz#b4bfc38bcdb9d69f20086ad69198d8993d6edb94"
|
||||
integrity sha512-YHWrLPlA7ZBH5Tz8vN6Eux0wjdA8nNRfwGL7IANjx0yv7OvIMftn9SC0/g2CWdVV752dL6a8Rt/rWXN8yeOfdQ==
|
||||
appcenter@2.2.0, appcenter@^2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/appcenter/-/appcenter-2.2.0.tgz#77d2c8d486bda52d1ee43156607437981aba2105"
|
||||
integrity sha512-X8M4ITBh6U79mg+EHlqcjtv1ZojUbpxo9xO+uYCvsy/GO6Oq639mzkJKsRn7O8KrZk/CUmG96H+eY860/Ll+yQ==
|
||||
dependencies:
|
||||
appcenter-link-scripts "1.13.0"
|
||||
appcenter-link-scripts "2.2.0"
|
||||
|
||||
aproba@^1.0.3:
|
||||
version "1.2.0"
|
||||
@ -3693,7 +3692,7 @@ external-editor@^2.0.4:
|
||||
iconv-lite "^0.4.17"
|
||||
tmp "^0.0.33"
|
||||
|
||||
external-editor@^3.0.0, external-editor@^3.0.3:
|
||||
external-editor@^3.0.3:
|
||||
version "3.0.3"
|
||||
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27"
|
||||
integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==
|
||||
@ -4616,25 +4615,6 @@ inquirer@1.1.2:
|
||||
strip-ansi "^3.0.0"
|
||||
through "^2.3.6"
|
||||
|
||||
inquirer@6.2.0:
|
||||
version "6.2.0"
|
||||
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
|
||||
integrity sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==
|
||||
dependencies:
|
||||
ansi-escapes "^3.0.0"
|
||||
chalk "^2.0.0"
|
||||
cli-cursor "^2.1.0"
|
||||
cli-width "^2.0.0"
|
||||
external-editor "^3.0.0"
|
||||
figures "^2.0.0"
|
||||
lodash "^4.17.10"
|
||||
mute-stream "0.0.7"
|
||||
run-async "^2.2.0"
|
||||
rxjs "^6.1.0"
|
||||
string-width "^2.1.0"
|
||||
strip-ansi "^4.0.0"
|
||||
through "^2.3.6"
|
||||
|
||||
inquirer@^3.0.6:
|
||||
version "3.3.0"
|
||||
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
|
||||
@ -5899,7 +5879,7 @@ lodash.uniq@^4.5.0:
|
||||
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
||||
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
||||
|
||||
lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
|
||||
lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
|
||||
version "4.17.13"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.13.tgz#0bdc3a6adc873d2f4e0c4bac285df91b64fc7b93"
|
||||
integrity sha512-vm3/XWXfWtRua0FkUyEHBZy8kCPjErNBT9fJx8Zvs+U6zjqPbTUOpkaoum3O5uiA8sm+yNMHXfYkTUHFoMxFNA==
|
||||
@ -8451,7 +8431,7 @@ rx@^4.1.0:
|
||||
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
|
||||
integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=
|
||||
|
||||
rxjs@^6.1.0, rxjs@^6.3.3, rxjs@^6.4.0:
|
||||
rxjs@^6.3.3, rxjs@^6.4.0:
|
||||
version "6.5.2"
|
||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7"
|
||||
integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==
|
||||
|
Loading…
Reference in New Issue
Block a user