Section | Video Links |
---|---|
Abstract Factory Pattern | |
Abstract Factory Use Case |
... Refer to Book or Design Patterns in TypeScript website to read textual content.
... Refer to Book or Design Patterns in TypeScript website to read textual content.
node ./dist/abstract-factory/abstract-factory-concept.js
ConcreteProductB { name: 'FactoryA:ConcreteProductB' }
ConcreteProductC { name: 'FactoryB:ConcreteProductC' }
... Refer to Book or Design Patterns in TypeScript website to read textual content.
See this UML diagram of an Abstract Furniture Factory implementation that returns chairs and tables.
node ./dist/abstract-factory/client.js
SmallChair
{ width: 40, depth: 40, height: 40 }
MediumTable
{ width: 60, depth: 60, height: 60 }
... Refer to Book or Design Patterns in TypeScript website to read textual content.