react-native
Integracja z Firebase do uwierzytelniania
Szukaj…
Wprowadzenie
// Zamień wartości bazy ogniowej na wartości interfejsu API aplikacji importuj bazę ogniową z „bazy ogniowej”;
componentWillMount () {firebase.initializeApp ({apiKey: „yourAPIKey”, authDomain: „authDomainNAme”, databaseURL: „yourDomainBaseURL”, projectId: „yourProjectID”, storageBucket: „storageBUcketValue”, messagingSenderIdal: ” firebase.auth (). signInWithEmailAndPassword (adres e-mail, hasło). następnie (this.onLoginSuccess)})}
React Native - ListView z Firebase
To właśnie robię, gdy pracuję z Firebase i chcę korzystać z ListView.
Użyj komponentu nadrzędnego, aby pobrać dane z 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}
/>
);
}
}
Chcę podkreślić, że w Posts.js
, nie jestem importowania firebase
ponieważ trzeba tylko je importować raz, w głównym składnikiem projektu (gdzie trzeba nawigatora) i używać go w dowolnym miejscu.
Jest to rozwiązanie, które ktoś zasugerował w pytaniu, które zadałem, kiedy walczyłem z ListView. Pomyślałem, że fajnie byłoby się tym podzielić.
Uwierzytelnianie w React Native przy użyciu Firebase
Zamień wartości bazy ogniowej na wartości interfejsu API aplikacji:
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)
})
}