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

Projects grow over time. New features, behaviors and business rules are added. Apart from this, bugs are fixed and optimizations are made.

Over time, this can lead to really long methods if this is not dealt with.

For example, you might find a method like this in a code base:

public async processOrder(orderId: string): Promise<ValidationMessage> {
    const user = await this.getUserFromSession();
    const userId = user.id;
    const userRole = user.role;
    const userAllowed: boolean = await this.userCanModifyOrder(userId, userRole);
    if(!userAllowed) {
        return new ValidationMessage("Permission denied.");
    }
    let saveAttempts = 1;
    while (saveAttempts > 3) {
        const order = await this.getOrderById(orderId);
        if (order.isActive()) {
            const status: OrderStatus = order.getStatus();
            if (status == OrderStatus.Pending) {
                // do some more stuff
            } else if (status ...