Extension Framework Game Plan

Posted by web E.
7
Nov 28, 2016
244 Views

Extension Framework Game Plan

Let’s validate and list the capabilities needed in Extension Framework through an extension which provides feature to mark a product as user’s favorite.

Favorite Product Extension Requirements:

  • Ability to mark and unmark a Product as favorite
    • a View probably showing all products with Ability to mark/unmark product as favorite
    • a controller action preparing the view
    • a route exposing the controller / view through Web
    • a controller action handling mark product as favorite
    • a route exposing the controller / view through Web
    • a controller action removing product from the list of favorites
    • a route exposing the controller / view through Web
    • a model interfacing with database to store product favorited by user
    • a migration to create join table in database
    • a join table storing product_id and user_id
  • Showing All Products favorited by a User
    • association in User to get favorite products
    • a View showing list of Favorite Products
    • a controller preparing the view
    • a route exposing the controller / view through Web
  • Showing Users who favorited a particular Product
    • association in Product to get users who favorited
    • a View showing list of Users who favorited
    • a controller preparing the view
    • a Route exposing the controller / view through Web
  • Ability to test the integration of above mentioned requirements

Let’s break the above requirements into two groups

  • Model layer changes
  • Request layer changes

Model Layer Changes

  • Ability to mark and unmark a Product as favorite
    • a model interfacing with database to store product favorited by user
    • a migration to create join table in database
    • a join table storing product_id and user_id
  • Showing All Products favorited by a User
    • association in User to get favorite products
  • Showing Users who favorited a particular Product
    • association in Product to get users who favorited

translates to

  • Ability to mark and unmark a Product as favorite
    • New Ecto Model with user_id and product_id fields
    • Ecto migration to create join table storing product_id and user_id
  • Showing All Products favorited by a User
    • extending User schema to have associations as needed
    • support functions in User Model to retrieve all products favorited by a user
  • Showing Users who favorited a particular Product
    • extending Product schema to have associations as needed
    • support functions in Product Model too retrieve all users who favorited a product

Request Layer Changes

  • Ability to mark and unmark a Product as favorite
    • a View probably showing all products with ability to mark/unmark product as favorite
    • a controller action preparing the view
    • a route exposing the controller / view through Web
    • a controller action handling mark product as favorite
    • a route exposing the controller / view through Web
    • a controller action removing product from the list of favorites
    • a route exposing the controllerontroller / view through Web
  • Showing All Products favorited by a User
    • a View showing list of Products
    • a controller preparing the view
    • already route exposing the controller / view through Web
  • Showing Users who favorited a particular Product
    • a View showing list of Users
    • a controller preparing the view
    • a route exposing the controller / view through Web

translates to

  • Ability to mark and unmark a Product as favorite
    • View probably showing all products with ability to mark/unmark product as favorite
    • controller with index / create / delete action
    • route exposingposing index / create / delete action
  • Showing All Products favorited by a User
    • View showing list of Products
    • controller preparing the viewew
    • route exposing the controller / view through Web
  • Showing Users who favorited a particular Product
    • View showing list of Users
    • controller preparing the view
    • route exposing throughe controller / view through Web

What we need

  • way to extend schema definitions for existing models
  • way to add new functions in existing models
  • way to add routes
  • way to add controller / views for newly added routes
  • way to extend views
  • way to reuse layouts
  • way to reuse already available routes

How we attempt to solve

  • Elixir Metaprogramming
  • Elixir umbrella app dependencies to share and reuse code among Nectar & Extensions using ExtensionManager
  • Extensions as Phoenix project leveraging NectarCommerce

Bridging the Gap

Next Posts would refer the Favorite Product Extension to help co-relate and reveal the challenges & solutions implemented to propose an Extension framework.

Our aim with these posts is to start a dialog with the Elixir community on validity and technical soundness of our approach. We would really appreciate your feedback and reviews, and any ideas/suggestions/pull requests for improvements to our current implementation or entirely different and better way to do things to achieve the goals we have set out for NectarCommerce.

We look forward for your support and feedback on twitter and github

Enjoy the Elixir potion !!

 

Source – http://vinsol.com/blog/2016/04/12/extension-framework-game-plan/

Comments
avatar
Please sign in to add comment.