react-native
Интеграция с Firebase для аутентификации
Поиск…
Вступление
// Замените значения firebase вашими значениями api app, импортируйте firebase из «firebase»;
componentWillMount () {firebase.initializeApp ({apiKey: "yourAPIKey", authDomain: "authDomainNAme", databaseURL: "yourDomainBaseURL", projectId: "yourProjectID", storageBucket: "storageBUcketValue", messagingSenderId: "senderIdValue"}); firebase.auth (). signInWithEmailAndPassword (адрес электронной почты, пароль). then (this.onLoginSuccess)})}
React Native - ListView с Firebase
Это то, что я делаю, когда я работаю с Firebase, и я хочу использовать ListView.
Используйте родительский компонент для извлечения данных из Firebase (Posts.js):
Posts.js
import PostsList from './PostsList';
class Posts extends Component{
constructor(props) {
super(props);
this.state = {
posts: []
}
}
componentWillMount() {
firebase.database().ref('Posts/').on('value', function(data) {
this.setState({ posts: data.val() });
});
}
render() {
return <PostsList posts={this.state.posts}/>
}
}
PostsList.js
class PostsList extends Component {
constructor(props) {
super(props);
this.state = {
dataSource: new ListView.DataSource({
rowHasChanged: (row1, row2) => row1 !== row2
}),
}
}
getDataSource(posts: Array<any>): ListView.DataSource {
if(!posts) return;
return this.state.dataSource.cloneWithRows(posts);
}
componentDidMount() {
this.setState({dataSource: this.getDataSource(this.props.posts)});
}
componentWillReceiveProps(props) {
this.setState({dataSource: this.getDataSource(props.posts)});
}
renderRow = (post) => {
return (
<View>
<Text>{post.title}</Text>
<Text>{post.content}</Text>
</View>
);
}
render() {
return(
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderRow}
enableEmptySections={true}
/>
);
}
}
Я хочу указать, что в Posts.js
я не импортирую firebase
потому что вам нужно импортировать его только один раз, в основной компонент вашего проекта (где у вас есть навигатор) и использовать его в любом месте.
Это решение, которое кто-то предложил в вопросе, который я задал, когда я боролся с ListView. Я подумал, что было бы неплохо поделиться им.
Источник: [ http://stackoverflow.com/questions/38414289/react-native-listview-not-rendering-data-from-firebase][1]
Аутентификация в действии с использованием Firebase
Замените значения firebase значениями api приложения:
import firebase from 'firebase';
componentWillMount() {
firebase.initializeApp({
apiKey: "yourAPIKey",
authDomain: "authDomainNAme",
databaseURL: "yourDomainBaseURL",
projectId: "yourProjectID",
storageBucket: "storageBUcketValue",
messagingSenderId: "senderIdValue"
});
firebase.auth().signInWithEmailAndPassword(email, password)
.then(this.onLoginSuccess)
.catch(() => {
firebase.auth().createUserWithEmailAndPassword(email, password)
.then(this.onLoginSuccess)
.catch(this.onLoginFail)
})
}