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)

Extracting Conditional Logic to Explicit Classes

In the previous section, we looked at extracting conditional logic as new methods on a user object.

Sometimes, though, we end up doing this refactoring over and over.

What we are left with is a User class that is filled with tons of these kinds of methods.

Note

This can be an issue that is best solved by actually modeling your classes using a domain-driven design approach.

While being beyond what this book covers, you might be interested in looking into the concept of bounded contexts (https://www.martinfowler.com/bliki/BoundedContext.html).

Let's Get Classy

Imagine that our User class looked something like this now:

class User {
    isAdmin(): boolean { /* Code */ }
    isActive(): boolean { /* Code */ }
    canEdit(): boolean { /* Code */ }
    isActiveAdmin(): boolean { /* Code */ }
    isActiveAdminThatCanEdit(): boolean { /* Code */ }
    // And dozens of more methods...
}

You can tell that this...