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

Imagine a method that fetches all active users from a database:

public getUsers() : User[] {
    // Does stuff.
}

A business came to you with some new features they need. You'll need to reuse the same logic from the previous method. But now it needs to include all inactive users.

What's the easy fix? Something like this?

public getUsers(includeInactive: boolean = false) : User[] {
}

The Slippery Slope of Optional Parameters

That's a seemingly crafty fix. It ensures you won't duplicate that logic somewhere else by copying and pasting it.

Over time, however, this can slowly grow into a grossly unmaintainable method.

Imagine that, over the next few weeks, several junior developers add some new features to this method.

You find that this method signature has exploded and become this:

public getUsers(
    includeInactive: boolean = false, 
    filterText: string = null, 
    orderByName: boolean = false, 
    forHireDate:...