react-native
Integrazione con Firebase per l'autenticazione
Ricerca…
introduzione
// Sostituisci i valori di firebase con i valori api dell'app import firebase da 'firebase';
componentWillMount () {firebase.initializeApp ({apiKey: "yourAPIKey", authDomain: "authDomainNAme", databaseURL: "yourDomainBaseURL", projectId: "yourProjectID", storageBucket: "storageBUcketValue", messagingSenderId: "senderIdValue"}); firebase.auth (). signInWithEmailAndPassword (email, password) .then (this.onLoginSuccess)})}
Reagire Nativo - ListView con Firebase
Questo è quello che faccio quando lavoro con Firebase e voglio usare ListView.
Utilizzare un componente padre per recuperare i dati da 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}
/>
);
}
}
Voglio sottolineare che in Posts.js
, non sto importando firebase
perché devi solo importarlo una volta, nel componente principale del tuo progetto (dove hai il navigatore) e usarlo ovunque.
Questa è la soluzione suggerita da qualcuno in una domanda che ho chiesto quando ero alle prese con ListView. Ho pensato che sarebbe stato bello condividerlo.
Autenticazione in React Native utilizzando Firebase
Sostituisci i valori di Firebase con i valori API della tua app:
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)
})
}