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)

Identification

One of the classic code smells is called primitive overuse.

It's deceptively simple.

Take this code, for example:

const email: string = user.email;
if(email !== null && email !== "") {
    // Do something with the email.
}

Notice that we are handling the email's raw data?

Or, consider this:

const firstname = user.firstname || "";
const lastname = user.lastname || "";
const fullName: string = firstname + " " + lastname;

Notice all that extra checking around making sure the user's names are not null? You've seen code like this, no doubt.

What's Wrong Here?

What's wrong with this code? There are a few things to think about:

  • That logic is not sharable and therefore will be duplicated all over the place.
  • In more complex scenarios, it's hard to see what the underlying business concept represents (which leads to code that's hard to understand).
  • ...