अपने रिएक्ट एप्लिकेशन को तेजी से कैसे प्रस्तुत करें
तेजी से एप्लिकेशन डिलीवर करना आसान है, तेज एप्लिकेशन डिलीवर करना बहुत कठिन है। आपकी प्रतिक्रिया एप्लायंस को आपके घटकों को तेज़ी से प्रस्तुत करने के लिए यहां कुछ युक्तियां दी गई हैं।
जबकि हम अपने अनुप्रयोगों को तेज़ी से वितरित करने का प्रयास करते हैं, हम अक्सर सर्वोत्तम प्रथाओं पर ध्यान केंद्रित करना भूल जाते हैं। थोड़ी देर के बाद हम घटकों को इतना जटिल बना देते हैं कि एक बार जब आप एक प्रमुख स्थान टाइप करते हैं तो उसे प्रस्तुत करने की आवश्यकता नहीं होती है। यहां क्या करना है और क्या नहीं इसकी सूची यहां दी गई है।
रिएक्ट.मेमो का उपयोग करें
हम आमतौर पर नहीं चाहते हैं कि हमारा घटक हर बार उसके माता-पिता को रेंडर करे। हम कह सकते हैं कि रिएक्ट हमारे कंपोनेंट्स को तब तक रेंडर नहीं करेगा जब तक कि इसकी जरूरत न हो।
// Wrong usage
// Without React.memo this component will get rendered each time
// something causes its parent to render
const YourHeavyComponent = (name, title, onClick) => {
// Render something really heavy like whole page here
}
export default YourHeavyComponent
// Good usage
// This component will not render unless name, title or onClick changes
const YourHeavyComponent = (name, title, onClick) => {
// Render something really heavy like whole page here
}
export default React.memo(YourHeavyComponent)
// This component will not render unless title changes
const YourHeavyComponent = (name, title, onClick) => {
// Render something really heavy like whole page here
}
// This usage might better for some stations, use this second argument
// to specify which props will cause render
export default React.memo(YourHeavyComponent, (prevProps, nextProps) => {
return prevProps.title === nextProps.title
})
प्रति घटक 4 से अधिक प्रॉप न रखें
कई प्रोप हमेशा समस्याग्रस्त होते हैं, प्रत्येक प्रोप का मतलब प्रदर्शन के बारे में विचार करने के लिए एक और परिवर्तनीय होता है और यह आपके कोड को पढ़ने और बनाए रखने के लिए कठिन बना देगा। 10 प्रॉप्स के साथ कंपोनेंट बनाने के बजाय 3–4 प्रॉप्स के साथ 3 छोटे हिस्से बनाएं।
// this component has too many filters
// it's not a good idea to add filters inside this component
// instead we need to create a seperate component to add filter inputs
// and we can also remove title from here
const List = (title, items, sortBy, keys, filters, onFilterChange, children, pagination) => {
// Render something really heavy like whole page here
}
// here userslist wont rendered unless we get a new list
// pagination payload won't cause rendering in filters
const [payload, setPayload] = useState()
const [list, setList] = useState([])
return <>
<Filters onFilterChange={setPayload} filters={payload.filters} />
<UserList items={list}/>
<Pagination onPaginationChange={setPayload} pagination={payload.pagination} />
</>
हुक जब आपके पास चर होते हैं जो कुछ परिवर्तनों के बाद गणना की जाएगी। यह मददगार है क्योंकि यदि आपकी गणना में समय लगता है या गणना के बाद आपको सरणी या वस्तुओं के लिए अलग-अलग मेमोरी संदर्भ मिलेंगे।
कृपया यह न भूलें कि जब आपके वेरिएबल बदले जाते हैं और आप इसे चिल्ड्रन को पास करते हैं, तो चिल्ड्रेन कंपोनेंट को फिर से रेंडर किया जाएगा।
// here we use useMemo for purely caching purposes, if we don't use useMemo
// each time this components rendered the calculation will have to re-run
const heavyCalculated = useMemo(() => doSomeHeavyCalculation(variable1), [variable])
// an example of wrong usage
// each time this components get rendered this
// styles variable will point to different memory address
// and this will cause rerender of YourHeavyComponent
const styles = {
container:{
marginLeft: left,
marginRight: right,
marginTop: top,
marginBottom: bottom,
}
}
// correct usage of useMemo
// this will cache your value and its memory point won't change
// so even if this components gets rendered your YourHeavyComponent won't be rendered again
const styles = useMemo(() => ({
container:{
marginLeft: left,
marginRight: right,
marginTop: top,
marginBottom: bottom,
}
}), [left, right, top, bottom])
जब आप अपने फ़ंक्शन को चाइल्ड कंपोनेंट में पास करेंगे तो आपको useCallback हुक का उपयोग करने की आवश्यकता होगी। हर बार जब आपके घटक प्रदान किए जाते हैं, तो कार्यों को एक अलग स्मृति बिंदु पर इंगित न करें। हमें पिछली कॉलबैक को स्मृति में रखने की आवश्यकता है ताकि हर बार जब हम मुख्य घटक में कुछ करते हैं और बच्चों में प्रतिपादन का कारण बनते हैं तो यह नहीं बदलेगा।
// wrong usage
// each time App components get rendered for some reason
// onClickCallback will be recreated and it will point to different memory address
// so it will cause YourHeavyComponent to re render
const onClickCallback = () => {
// do some stuff
}
return <div>
<YourHeavyComponent onClick={onClickCallback} />
</div>
// good usage of onClickCallback
// each time App components if your variable1 don't change
// onClickCallback will point to same memory point
// so UourHeavyCallback won't render.
const onClickCallback = () => {
// do some stuff
}
return <div>
<YourHeavyComponent onClick={onClickCallback} />
</div>
हम इस हुक का उपयोग बच्चों को पास करने और उनके उदाहरणों का उपयोग करने के लिए करते थे, लेकिन यह न केवल इसके लिए उपलब्ध उपयोग का मामला है। हम इसे किसी प्रकार के कैशिंग और स्टेट मैकेनिज्म के रूप में बिना रीरेंडर किए उपयोग कर सकते हैं।
// in this example we look for useRef value instead of setting
// sent reference is being used for checking if we send this message before or not
// this could hold in the state but if we put into state it will cause render
// it into state, because we don't want to re-render after we set sent.current
const sent = useRef(false)
const postMessage = useCallback(() => {
if (!sent.current) {
// make your api call here
sent.current = true
}
}, [])
इसे कभी न भूलें, हर बार जब आप घटक प्रस्तुत करते हैं, तो उस घटक के अंदर के चर अलग-अलग मेमोरी एड्रेस को इंगित करेंगे, जब यह आदिम प्रकार जैसे स्ट्रिंग और पूर्णांक की बात आती है, तो इससे कोई समस्या नहीं होगी, लेकिन यदि आप सरणियों, वस्तुओं और फ़ंक्शन के साथ काम कर रहे हैं (क्योंकि प्रत्येक कार्य वास्तव में हुड के पीछे की वस्तुएं हैं)। आइए कुछ उदाहरण देखें
const InlineTest = () => {
// the usage below will cause YourHeavyComponent to render if
// something causes InlineTest component to render
return <YourHeavyComponent style={{
marginLeft: 10,
marginRight: 10
}} />
}
const style = {
marginLeft: 10,
marginRight: 10
}
// We move styles outside of component
// this way style will point the same memory address regardless of
// how many tames InlineTest gets rendered
const InlineTest = () => {
// the usage below will cause YourHeavyComponent to render if
// something causes InlineTest component to render
return <YourHeavyComponent style={style} />
}
const InlineTest = () => {
// the usage below will cause YourHeavyComponent to render if
// something causes InlineTest component to render
// because onClick will be assigned to a new function each time
return <YourHeavyComponent onClick={() => {
console.log('clicked');
}} />;
}
import {useCallback} from "react";
const InlineTest = () => {
// the usage below is correct way to do it
// using useCallback will make sure onClick function
// is the same between renders and it won't cause render in below component
const onClick = useCallback(() => {
console.log('clicked');
}, [])
return <YourHeavyComponent onClick={onClick} />;
}
आप सोच सकते हैं कि प्रतिक्रिया में रूपों को संभालना आसान है, लेकिन मैं आपको गारंटी देता हूं कि ऐसा नहीं है। जब आपके फॉर्म जटिल हो जाते हैं और आपको कुछ सत्यापन आदि करने की आवश्यकता होती है तो आप बहुत सारे रेंडर का कारण बनेंगे। इसलिए एक अच्छे पुस्तकालय का उपयोग करना महत्वपूर्ण है। पिछले कुछ वर्षों में मैंने कई अलग-अलग पुस्तकालयों की कोशिश की लेकिन यहाँ केवल एक ही है जो यहाँ उल्लेख करने योग्य है; प्रतिक्रिया-हुक-रूप।
import { useForm } from "react-hook-form";
export default function App() {
const { register, handleSubmit, formState: { errors } } = useForm();
const onSubmit = data => console.log(data);
return (
/* "handleSubmit" will validate your inputs before invoking "onSubmit" */
<form onSubmit={handleSubmit(onSubmit)}>
{/* register your input into the hook by invoking the "register" function */}
<input defaultValue="test" {...register("example")} />
{/* include validation with required or other standard HTML validation rules */}
<input {...register("exampleRequired", { required: true })} />
{/* errors will return when field validation fails */}
{errors.exampleRequired && <span>This field is required</span>}
<input type="submit" />
</form>
);
}