Giter Site home page Giter Site logo

engine's Introduction

Jekyll-Store/Engine

Build Status

Even though Jekyll-Store Engine was written with Jekyll and the Jekyll-Store solution in mind, it is decoupled from most implementation specifics and could just as easily serve the basis of any static-site ecommerce solution. It also has been written such that most of the code is reachable from the main JekyllStoreEngine object to enable extensibility.

Actions

As with all Flux architectures, interaction in Jekyll-Store Engine flows uni-directionally from Actions to Stores and from Stores to any components listening to them. The following is a list of the actions:

  • setItem - Sets the quantity of an item in the basket.
  • removeItem - Removes an item from the basket.
  • setAddress - Sets the address, specifically the country.
  • setDelivery - Sets the delivery method to be used to deliver the order.
  • loadProducts - Loads products.
  • loadCountries - Loads countries.
  • loadDeliveryMethods - Loads delivery methods.
  • setPaymentOptions - Sets the payment options and purchase hook.
  • purchase - Processes order.
  • completed - Called when payment has been successully processed.
  • refreshCheckout - (Used internally).
  • setErrors - Can be used to set errors manually.

For more information, consult the Actions reference page.

Stores

Stores are to be considered the absolute source of truth for the data they trigger. For the most part, data is immutable, using seamless-immutable arrays and objects. As such, the triggered data cannot be changed by other listeners. The following is a list of the stores and what they publish:

  • AddressStore - The current address, specifically the country.
  • BasketStore - The items currently in the basket.
  • CountriesStore - The list of all countries.
  • DeliveryMethodsStore - The available delivery methods for the current address.
  • DeliveryStore - The currently selected delivery method and it's associated cost.
  • OrderStore - The current state of the order with totals, adjustments and errors.
  • PaymentOptionsStore - The payment options.
  • ProductsStore - The list of all products.
  • CheckoutStore - (Used internally).

For more information, consult the Stores reference page.

Calculators

Calculators are simple functions that take an order and return a number, usually representing the cost for an adjustment, such as the delivery rate. The following is a list of the calculators:

  • FixedCalculator - Returns a fixed amount, regardless of the order.
  • PercentCalculator - Returns a percentage of one of the order's totals.
  • TieredCalculator - Returns an amount dependent on which tier one of the order's totals falls into.

For more information, consult the Calculators reference page.

Plugins

The following plugins are made to be used with Jekyll-Store Engine:

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

engine's People

Contributors

mushishi78 avatar

Watchers

James Cloos avatar Nayab Samar 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.