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 Data Objects

Some methods have many parameters. As we saw in the previous section, sometimes that's due to optional parameters that tell the method to behave in an alternative way.

Other times, we are just passing a lot of data through to the method.

Here's an example of this scenario:

public async saveUserDetails(
    id: number, 
    employeeId: string,
    firstName: string, 
    lastName: string, 
    emailAddress: string,
    phone: string,
    fax: string,
    ) : Promise<void> {
    // Save the data.
}

You might use it like this:

await saveUserDetails(id, empId, firstName, lastName, emailAddress, phone, fax);

That's a lot of individual variables that we need to be aware of.

Note

If you've read the chapter on primitive overuse, you might notice that we are using primitive types everywhere. One way to make this better would be to create value objects!

These parameters are not telling the method to behave in a certain...