Skip to content

Instantly share code, notes, and snippets.

@dinotrnka
Last active June 11, 2020 19:58
Show Gist options
  • Save dinotrnka/795853115491694a2d5af63cdfe2d326 to your computer and use it in GitHub Desktop.
Save dinotrnka/795853115491694a2d5af63cdfe2d326 to your computer and use it in GitHub Desktop.
class Factory {
constructor() {
this.factoryMapper = new FactoryMapper();
}
create({ item }) {
const { type } = item;
const factory = this.factoryMapper.factory(type);
return factory.create({ item });
}
}
export default Factory;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment