मैं इसे स्थापित करूंगा ताकि आप अपने घटकों को यह बताने के लिए एक वैश्विक स्थिति चर भरोसा कर रहे हों कि कब प्रस्तुत करना है। Redux इस परिदृश्य के लिए बेहतर है जहां कई घटक एक दूसरे से बात कर रहे हैं, और आपने एक टिप्पणी में उल्लेख किया है कि आप कभी-कभी इसका उपयोग करते हैं। इसलिए मैं Redux का उपयोग कर एक उत्तर दूंगा।
तुम्हें पता है, पैरेंट कंटेनर के लिए अपने API कॉल स्थानांतरित करने के लिए होगा Component A
। यदि आप चाहते हैं कि एपीआई कॉल पूरी होने के बाद ही आप अपने पोते को प्रस्तुत करें, तो आप उन एपीआई कॉलों को स्वयं पोते में नहीं रख सकते। एक एपीआई कॉल एक घटक से कैसे किया जा सकता है जो अभी तक मौजूद नहीं है?
एक बार सभी एपीआई कॉल किए जाने के बाद, आप डेटा ऑब्जेक्ट्स के एक समूह वाले वैश्विक राज्य चर को अपडेट करने के लिए क्रियाओं का उपयोग कर सकते हैं। हर बार डेटा प्राप्त होने पर (या कोई त्रुटि पकड़ी जाने पर), आप यह जांचने के लिए एक कार्रवाई भेज सकते हैं कि क्या आपका डेटा ऑब्जेक्ट पूरी तरह से भरा हुआ है। एक बार इसका पूरी तरह से भर जाने के बाद, आप एक loading
चर को अपडेट कर सकते हैं false
, और सशर्त रूप से अपने Grid
घटक को प्रस्तुत कर सकते हैं।
उदाहरण के लिए:
// Component A
import { acceptData, catchError } from '../actions'
class ComponentA extends React.Component{
componentDidMount () {
fetch('yoururl.com/data')
.then( response => response.json() )
// send your data to the global state data array
.then( data => this.props.acceptData(data, grandChildNumber) )
.catch( error => this.props.catchError(error, grandChildNumber) )
// make all your fetch calls here
}
// Conditionally render your Loading or Grid based on the global state variable 'loading'
render() {
return (
{ this.props.loading && <Loading /> }
{ !this.props.loading && <Grid /> }
)
}
}
const mapStateToProps = state => ({ loading: state.loading })
const mapDispatchToProps = dispatch => ({
acceptData: data => dispatch( acceptData( data, number ) )
catchError: error=> dispatch( catchError( error, number) )
})
// Grid - not much going on here...
render () {
return (
<div className="Grid">
<GrandChild1 number={1} />
<GrandChild2 number={2} />
<GrandChild3 number={3} />
...
// Or render the granchildren from an array with a .map, or something similar
</div>
)
}
// Grandchild
// Conditionally render either an error or your data, depending on what came back from fetch
render () {
return (
{ !this.props.data[this.props.number].error && <Your Content Here /> }
{ this.props.data[this.props.number].error && <Your Error Here /> }
)
}
const mapStateToProps = state => ({ data: state.data })
आपका reducer वैश्विक राज्य ऑब्जेक्ट को रोक देगा जो कहेगा कि चीजें अभी तक जाने के लिए तैयार हैं या नहीं:
// reducers.js
const initialState = {
data: [{},{},{},{}...], // 9 empty objects
loading: true
}
const reducers = (state = initialState, action) {
switch(action.type){
case RECIEVE_SOME_DATA:
return {
...state,
data: action.data
}
case RECIEVE_ERROR:
return {
...state,
data: action.data
}
case STOP_LOADING:
return {
...state,
loading: false
}
}
}
आपके कार्यों में:
export const acceptData = (data, number) => {
// First revise your data array to have the new data in the right place
const updatedData = data
updatedData[number] = data
// Now check to see if all your data objects are populated
// and update your loading state:
dispatch( checkAllData() )
return {
type: RECIEVE_SOME_DATA,
data: updatedData,
}
}
// error checking - because you want your stuff to render even if one of your api calls
// catches an error
export const catchError(error, number) {
// First revise your data array to have the error in the right place
const updatedData = data
updatedData[number].error = error
// Now check to see if all your data objects are populated
// and update your loading state:
dispatch( checkAllData() )
return {
type: RECIEVE_ERROR,
data: updatedData,
}
}
export const checkAllData() {
// Check that every data object has something in it
if ( // fancy footwork to check each object in the data array and see if its empty or not
store.getState().data.every( dataSet =>
Object.entries(dataSet).length === 0 && dataSet.constructor === Object ) ) {
return {
type: STOP_LOADING
}
}
}
अलग
यदि आप वास्तव में इस विचार से विवाहित हैं कि आपके एपीआई कॉल प्रत्येक पोते के अंदर रहते हैं, लेकिन यह कि पोते की पूरी ग्रिड तब तक रेंडर नहीं करती है जब तक कि सभी एपीआई कॉल पूरी नहीं हो जाती हैं, तो आपको पूरी तरह से अलग समाधान का उपयोग करना होगा। इस स्थिति में, आपके पोते को अपनी कॉल करने के लिए शुरू से प्रस्तुत करना होगा, लेकिन इसके साथ एक सीएसएस क्लास है display: none
, जो वैश्विक राज्य चर के बाद केवल loading
गलत के रूप में चिह्नित होने के बाद बदलता है। यह भी उल्लेखनीय है, लेकिन प्रतिक्रिया के बिंदु के अलावा क्रमबद्ध है।