From c1dd21ccbd8cfead23b76d0d89d905b2c4307414 Mon Sep 17 00:00:00 2001 From: ReduX Date: Sat, 4 May 2024 16:15:55 +0530 Subject: [PATCH] Update adding-interactivity.md I Translated this page into Telugu. --- src/content/learn/adding-interactivity.md | 100 ++++++++++++---------- 1 file changed, 53 insertions(+), 47 deletions(-) diff --git a/src/content/learn/adding-interactivity.md b/src/content/learn/adding-interactivity.md index 0d4a3b23..67c62f1a 100644 --- a/src/content/learn/adding-interactivity.md +++ b/src/content/learn/adding-interactivity.md @@ -1,30 +1,32 @@ --- -title: Adding Interactivity +శీర్షిక: ఇంటరాక్టివిటీ చేయడం --- -Some things on the screen update in response to user input. For example, clicking an image gallery switches the active image. In React, data that changes over time is called *state.* You can add state to any component, and update it as needed. In this chapter, you'll learn how to write components that handle interactions, update their state, and display different output over time. +వినియోగదారు ఇన్పుట్ నుండి స్క్రీన్‌పై కొనసాగుతున్న కొన్ని విషయాలు అదనపు అప్‌డేట్ అవుతాయి. ఉదా, చిత్ర గ్యాలరీని ప్రేస్ చేసినప్పుడు యాక్టివ్ చిత్రాన్ని మార్చుకోవచ్చు. రియాక్ట్‌లో, సమయం పైన మారుతున్న డేటాను *స్టేట్ం* అని పిలిచించబడుతుంది. ఏమైనా మంత్రాలును యొక్క మేరకు స్థితిని జోడించవచ్చు, మరియు అవసరం అయితే అదనపుగా అప్‌డేట్ చేయవచ్చు. ఈ అధ్యాయంలో, మనం ఇంటరక్షన్‌లను చేర్చే, అవస్థను నవీకరించే మరియు సమయంలో వేర్వేరు ఔట్‌పుట్‌లను ప్రదర్శించే కాంపోనెంట్‌లను ఎలా రాయాలో వెళ్ళండి. + -* [How to handle user-initiated events](/learn/responding-to-events) -* [How to make components "remember" information with state](/learn/state-a-components-memory) -* [How React updates the UI in two phases](/learn/render-and-commit) -* [Why state doesn't update right after you change it](/learn/state-as-a-snapshot) -* [How to queue multiple state updates](/learn/queueing-a-series-of-state-updates) -* [How to update an object in state](/learn/updating-objects-in-state) -* [How to update an array in state](/learn/updating-arrays-in-state) +* [వినియోగదారు ప్రారంభించిన సంఘటనలను ఎలా నిర్వహించాలి అనే విషయం గురించి ఎలాగో ఇది](/learn/responding-to-events) +* [కంపోనెంట్‌లలో స్థితితో సమాచారాన్ని 'గుర్తుచేయడం' ఎలా చేయాలి అనే విషయం గురించి ఎలాగో ఇది](/learn/state-a-components-memory) +* [రియాక్ట్ UI ని రెండు దశల్లో ఎలా అప్‌డేట్ చేస్తుంది](/learn/render-and-commit) +* [మీరు మార్చిన వెంటనే స్టేట్ం ఎందుకు నవీకరించబడదు](/learn/state-as-a-snapshot) +* [బహుళ స్టేట్ం నవీకరణలను ఎలా వరుసలో ఉంచాలి](/learn/queueing-a-series-of-state-updates) +* [స్టేట్ం ఉన్న వస్తువును ఎలా అప్‌డేట్ చేయాలి](/learn/updating-objects-in-state) +* [స్టేట్ం శ్రేణిని ఎలా అప్‌డేట్ చేయాలి](/learn/updating-arrays-in-state) -## Responding to events {/*responding-to-events*/} +## సంఘటనలపై స్పందిస్తున్నారు {/*responding-to-events*/} + +మీ JSXకి *ఈవెంట్ హ్యాండ్లర్‌లను* జోడించడానికి రియాక్ట్ మిమ్మల్ని అనుమతిస్తుంది. ఈవెంట్ హ్యాండ్లర్లు మీ స్వంత ఫంక్షన్‌లు, క్లిక్ చేయడం, హోవర్ చేయడం, ఫారమ్ ఇన్‌పుట్‌లపై దృష్టి పెట్టడం మొదలైన వినియోగదారు పరస్పర చర్యలకు ప్రతిస్పందనగా ట్రిగ్గర్ చేయబడతాయి. -React lets you add *event handlers* to your JSX. Event handlers are your own functions that will be triggered in response to user interactions like clicking, hovering, focusing on form inputs, and so on. +`