دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: 2
نویسندگان: Stoyan Stefanov
سری:
ISBN (شابک) : 9781492051466
ناشر:
سال نشر: 2022
تعداد صفحات: 233
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 6 مگابایت
در صورت تبدیل فایل کتاب React: Up & Running. Building Web Applications به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب React: Up & Running. ساخت برنامه های کاربردی وب نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
Copyright Table of Contents Preface About This Book Conventions Used in This Book Using Code Examples O’Reilly Online Learning How to Contact Us Acknowledgments Chapter 1. Hello World Setup Hello React World What Just Happened? React.createElement() JSX Setup Babel Hello JSX World On Transpilation Next: Custom Components Chapter 2. The Life of a Component A Custom Function Component A JSX Version A Custom Class Component Which Syntax to Use? Properties Properties in Function Components Default Properties State A textarea Component Make It Stateful A Note on DOM Events Event Handling in the Olden Days Event Handling in React Event-Handling Syntax Props Versus State Props in Initial State: an Antipattern Accessing the Component from the Outside Lifecycle Methods Lifecycle Example: Log It All Paranoid State Protection Lifecycle Example: Using a Child Component Performance Win: Prevent Component Updates Whatever Happened to Function Components? Chapter 3. Excel: A Fancy Table Component Data First Table Headers Loop Table Headers Loop, a Terse Version Debugging the Console Warning AddingContent Prop Types Can You Improve the Component? Sorting Can You Improve the Component? Sorting UI Cues Editing Data Editable Cell Input Field Cell Saving Conclusion and Virtual DOM Diffs Search State and UI Filtering Content Update the save() Method Can You Improve the Search? Instant Replay Cleaning Up Event Handlers Cleaning Solution Can You Improve the Replay? An Alternative Implementation? Download the Table Data Fetching Data Chapter 4. Functional Excel A Quick Refresher: Function versus Class Components Rendering the Data The State Hook Sorting the Table Editing Data Searching Lifecycles in a World of Hooks Troubles with Lifecycle Methods useEffect() Cleaning Up Side Effects Trouble-Free Lifecycles useLayoutEffect() A Custom Hook Wrapping up the Replay useReducer Reducer Functions Actions An Example Reducer Unit Testing Reducers Excel Component with a Reducer Chapter 5. JSX A Couple Tools Whitespace in JSX Comments in JSX HTML Entities Anti-XSS Spread Attributes Parent-to-Child Spread Attributes Returning Multiple Nodes in JSX A Wrapper A Fragment An Array Differences Between JSX and HTML No class, What for? style Is an Object Closing Tags camelCase Attributes Namespaced Components JSX and Forms onChange Handler value Versus defaultValue