Kill Static, Revive Objects
TL;DR: Replace static functions with object interactions.
https://hackernoon.com/how-to-find-the-stinky-parts-of-your-code-part-iv-7sc3w8n
https://hackernoon.com/how-to-find-the-stinky-parts-of-your-code-part-iv-7sc3w8n
https://hackernoon.com/how-to-find-the-stinky-parts-of-your-code-part-v-evj3zs9
class CharacterUtils {
static createOrpheus() {
return { name: "Orpheus", role: "Musician" };
}
static createEurydice() {
return { name: "Eurydice", role: "Wanderer" };
}
static lookBack(character) {
if (character.name === "Orpheus") {
return "Orpheus looks back and loses Eurydice.";
} else if (character.name === "Eurydice") {
return "Eurydice follows Orpheus in silence.";
}
return "Unknown character.";
}
}
const orpheus = CharacterUtils.createOrpheus();
const eurydice = CharacterUtils.createEurydice();
// 1. Identify static methods used in your code.
// 2. Replace static methods with instance methods.
// 3. Pass dependencies explicitly through
// constructors or method parameters.
class Character {
constructor(name, role, lookBackBehavior) {
this.name = name;
this.role = role;
this.lookBackBehavior = lookBackBehavior;
}
lookBack() {
return this.lookBackBehavior(this);
}
}
// 4. Refactor clients to interact with objects
// instead of static functions.
const orpheusLookBack = (character) =>
"Orpheus looks back and loses Eurydice.";
const eurydiceLookBack = (character) =>
"Eurydice follows Orpheus in silence.";
const orpheus = new Character("Orpheus", "Musician", orpheusLookBack);
const eurydice = new Character("Eurydice", "Wanderer", eurydiceLookBack);
You can make step-by-step replacements.
This refactoring is generally safe, but you should test your changes thoroughly.
Ensure no other parts of your code depend on the static methods you replace.
Your code is easier to test because you can replace dependencies during testing.
Objects encapsulate behavior, improving cohesion and reducing protocol overloading.
You remove hidden global dependencies, making the code clearer and easier to understand.
Without Proper Instructions |
With Specific Instructions |
---|---|
Cohesion
Image by Menno van der Krift from Pixabay
This article is part of the Refactoring Series.