Giter VIP home page Giter VIP logo

interactor-organizer's Introduction

interactor-organizer

An interactor/organizer design pattern for javascript.

yarn add interactor-organizer-js

Example: create an organizer to handle updating some object in your system update-model.js

const { Organizer } = require("interactor-organizer")
const organizeEmailSends = require("../email/send-email-updates")

module.exports = new Organizer(
  updateTheModel,
  alertTheBusiness,
  organizeEmailSends
)

some-controller.js

  const organizeModelUpdate = require("./users/organizers/update-model.js")

  async handleRequest (req, res) {
    const initialContext = { model: User, req }
    const ctx = await organizeModelUpdate(initialContext)
    if (ctx.success) {
      res.json({you: "did it"})
    }
  }

Interactors:

  module.exports = class UpdateTheModel {
    async call () {
      await this.context.model.findOneAndUpdate(req.params.id, this.context.req.body)
    }
  }
module.exports = class UpdateTheModel {
  before () {
    if (!this.context.model) {
      this.context.fail("a model is required")
    }
  }
  after () {
    console.log("The model was updated")
  }
  async call () {
    await this.context.model.findOneAndUpdate(req.params.id, this.context.req.body)
  }
}

Use the skip hook to make interactors optional. return truthy to skip, falsey to invoke

module.exports = class UpdateTheModel {
  skip () {
    return !this.context.model
  }

  async call () {
    await this.context.model.findOneAndUpdate(req.params.id, {})
  }
}

You can do the same thing with organizers too.

class UpdateTheModelOrganizer extends Organizer {
  async skip () {
    return !this.context.model
  }
  async before () {}
  async after () {}
}

module.exports = new UpdateTheModelOrganizer(
  updateTheModel,
  alertTheBusiness,
  organizeEmailSends
)

interactor-organizer's People

Contributors

charliemitchell avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.