JavaScript Decorator Pattern

Definition

The Decorator Pattern attaches additional responsibilities to an object dynamically.

Decorator pattern emphasise Open-Closed principle - classes should be open for extension, but closed for modification.

The pattern is an alternative for sub-classing. It is usually used in places where it is necessary to add additional functionality to objects. For example if you start with 3 basic objects and 4 different features then you may end up with 3*2^4=48 different objects. More basic object’s types or more features and you end up with an enormous number (in case if you want to create all possible objects).

A much easier approach is to add features to basic objects when they are necessary. That’s one feature of Decorator Pattern.

Other important feature of Decorator Pattern is that it allows you to add functionality without altering existing base code. This way your’e likely to produce less bugs or to break the system.

Basic Decorator Example

This is one very often used patterns and probably most unknown. A vary basic example may look like:

// Basic object
var Book = {
  name: 'great book'
, pages: 145
}

// Let's decorate
Book.getHeading = function(){
  return 'title: ' + this.name + '; pages: ' + this.pages
}

console.log(Book.getHeading()) // title: great book; pages: 145

Here we simply added new property to basic object. But we broke the Open-Closed Principle. In order to fix that we simply have to create a new object which delegates to basic object:

// Basic object
var Book = {
    name: 'great book'
  , pages: 145
  }
  , BookNew = Object.create(Book)

// Let's decorate
BookNew.getHeading = function(){
  return 'title: ' + this.name + '; pages: ' + this.pages
}

console.log(BookNew.getHeading()) // title: great book; pages: 145

If we need to create many objects and we need to pass many features then we may makeup a function like this:

// Basic object
var Book = {
    name: 'great book'
  , pages: 145
  }

// Decoration function
function decorate(obj, decoration) {
  var objNew = Object.create(obj)
  for(i in decoration){
    objNew[i] = decoration[i]
  }
  return objNew
}

// Let's decorate
var BookNew = decorate(Book, {
  getHeading: function(){
    return 'title: ' + this.name + '; pages: ' + this.pages
  }
, isItBig: function(){
    return this.pages > 500
  }
})

console.log(BookNew.getHeading()) // title: great book; pages: 145
console.log(BookNew.isItBig()) // false

Decorating using jQuery's extend method

Using jQuery we can shorten a little bit our decorate function:

// Basic object
var Book = {
    name: 'great book'
  , pages: 145
  }

// Decoration function
function decorate(obj, decoration) {
  return $.extend(Object.create(obj), decoration)
}

// Let's decorate
var BookNew = decorate(Book, {
  getHeading: function(){
    return 'title: ' + this.name + '; pages: ' + this.pages
  }
, isItBig: function(){
    return this.pages > 500
  }
})

console.log(BookNew.getHeading()) // title: great book; pages: 145
console.log(BookNew.isItBig()) // false

It may be used without wrapping into decorate function as it takes roughly one line.

Solving the problem of overriding object attributes

All previous examples have one common problem - if base object has an attribute with the same name as the one we want to use for decoration then the attribute in base object will be overridden in new object. In order to overcome that we can check if base object has the attribute we plan to use for decoration.

// Basic object
var Book = {
    price: 45
  , getPrice: function() {
      return this.price
    }
  }

// Decoration function
function decorate(obj, decoration) {
  var objNew = Object.create(obj)
  for (i in decoration){
    // Check if base object has this property and if it is a function
    if (obj[i] !== undefined && Object.prototype.toString.call(decoration[i]) === '[object Function]') {
      if (Object.prototype.toString.call(obj[i]) === '[object Function]') {
        var func = decoration[i](obj[i]())
      } else {
        var func = decoration[i](obj[i])
      }

      objNew[i] = function(){
        return func
      }
    } else {
      objNew[i] = decoration[i]
    }
  }
  return objNew
}

// Let's decorate
var BookNew = decorate(Book, {
  getPrice: function(price){
    return Math.ceil(price * 1.1)
  }
})

var BookOld = decorate(Book, {
  price: function(price) {
    return price * 0.4
  }
})

console.log(Book.getPrice()) // 45
console.log(BookNew.getPrice()) // 50
console.log(BookOld.price()) // 18

Here are 2 things to mention:

  • We do not check for hasOwnProperty as base objects may have functionality gained through delegation, and we want to use that. However you can add this check if you need it.
  • If base object has given attribute we'll check if it is a function or not. If it is a function we'll use it's result, if not we'll pass it directly to decorator's method.

Decorating through prototype

Actually it is the same as basic example, but using a different implementation:

var Book = {}
Book.decorate = function () {
  console.log('Book has pages.')
}

Book.getDecorator = function (deco) {
  Book[deco].prototype = this
  return new Book[deco]
}

Book.Images = function () {
  this.decorate = function () {
    this.Images.prototype.decorate()
    console.log('Add images')
  }
}

Book.Cover = function () {
  this.decorate = function () {
    this.Cover.prototype.decorate()
    console.log('Add cover')
  }
}

Book = Book.getDecorator('Images')
Book = Book.getDecorator('Cover')

Book.decorate()

Here we are overriding object pointer and relation with previous objects is through prototype. It may work well if you need to have only one object in a given namespase/clojure, but if you want at least 2 objects based on same base object than you’ll be in trouble with this solution. Also you can’t decorate using the same decorator 2 times as it will give get into infinite loop.

CoffeeScript Example

As CoffeeScript tries to simulate classes we’ll use this to decorate our objects.

class Book
  constructor: (@title, @pages) ->

  getDescription: () ->
    """Author: #{@title}
    Pages: #{@pages}"""

class Decorator
  constructor: (@book) ->

  getDescription: () ->
    @book.getDescription()

class Cover extends Decorator
  getDescription: () ->
    super() + "\nCover: yes"

class Old extends Decorator
  getDescription: () ->
    super() + "\nOld: yes"

book = new Book("War and Peace", 999)
bookWithCover = new Cover(book)
oldBook = new Old(book)
oldBookWithCover = new Old(bookWithCover)

console.log book.getDescription()
console.log bookWithCover.getDescription()
console.log oldBook.getDescription()
console.log oldBookWithCover.getDescription()

Sources

  1. (github) shichuan / javascript-patterns / design-patterns / decorator.html
  2. (github) Design-Patterns/CoffeeScript/Decorator.coffee
  3. (book) Head First Design Patterns
  4. (book) Learning JavaScript Design Patterns
  5. (book) JavaScript Patterns: Build Better Applications with Coding and Design Patterns
  6. (book) Learning JavaScript Design Patterns: A JavaScript and jQuery Developer's Guide
  7. (book) Pro JavaScript Design Patterns: The Essentials of Object-Oriented JavaScript Programming
  8. (book) CoffeeScript Cookbook
  9. (article) dofactory JavaScript Decorator Pattern