Book Image

Refactoring TypeScript

By : James Hickey
Book Image

Refactoring TypeScript

By: James Hickey

Overview of this book

Refactoring improves your code without changing its behavior. With refactoring, the best approach is to apply small targeted changes to a codebase. Instead of doing a huge sweeping change to your code, refactoring is better as a long-term and continuous enterprise. Refactoring TypeScript explains how to spot bugs and remove them from your code. You’ll start by seeing how wordy conditionals, methods, and null checks make code unhealthy and unstable. Whether it is identifying messy nested conditionals or removing unnecessary methods, this book will show various techniques to avoid these pitfalls and write code that is easier to understand, maintain, and test. By the end of the book, you’ll have learned some of the main causes of unhealthy code, tips to identify them and techniques to address them.
Table of Contents (11 chapters)

Guard Clauses

Scenario

In this section (and the next), we're working on a backend system that processes orders for a large e-commerce platform.

We're working with code in a background process that needs to check whether an order was paid, canceled, is suspected of fraud, and so on.

As we'll see, it's a little hard to work with due to containing nested conditionals.

Fail Fast

One of the best ways to deal with nested conditionals is to create what are called guard clauses (https://refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html).

In essence, we want to follow a couple of guiding principles:

  • Return from our method at the earliest time possible.
  • Each condition (if possible) is tested to see whether it fails rather than passes.

Both of these principles combined are sometimes termed fail fast. We want our methods to fail as fast as possible. When our code contains nested conditionals, we are doing the opposite...