0.2.0 • Published 5 years ago

ncc-ecommerce v0.2.0

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

nnc-ecommerce

This bundle provides e-commerce functionality within Apostrophe CMS.

Features

  • manage products, categories and subcategories
  • manage orders
  • cart with paypal smart button for checkout
  • single and multiple email
  • shippings
  • taxes
  • pos

Prerequisites

A working Apostrophe CMS project. Install apostrophe-headless (optional for pos): npm install apostrophe-headless

Use and Configuration

  • Declare and configure modules (this configuration is for all modules, you can choose which module you want) NOTE Modules' order is important, for example modules that use mail must be added after nodemailer definition
// in app.js
// We must declare the bundle!
bundles: [ 'ncc-ecommerce' ],
modules: {
  // Other modules
  // .....

  // ecommerce
  'apostrophe-headless': {},
  'apostrophe-admin-bar': {
    addGroups: [
      {
        label: 'Ecommerce',
        items: [
          'ncc-category',
          'ncc-subcategory',
          'ncc-product',
          'ncc-orders',
          'ncc-shippings'
        ]
      },
    ]
  },
  'ncc-global': {},
  'ncc-category': {},
  'ncc-subcategory': {},
  'ncc-subcategory-widgets': {},
  'ncc-product': {},
  'ncc-products-pages': {},
  'ncc-shippings': {},
  'ncc-cart': {},
  'ncc-pos': {},
  'apostrophe-email': {
    // See the nodemailer documentation, many
    // different transports are available, this one
    // matches how PHP does it on Linux servers
    nodemailer: {
      sendmail: true,
      newline: 'unix',
      path: '/usr/sbin/sendmail'
    }
  },
  'ncc-orders': {},
  'ncc-emails': {},
  'apostrophe-pages': {
    // We must list `ncc-ecommerce-page` as one of the available page types
    types: [
      {
        name: 'ncc-products-pages',
        label: 'Product'
      },
      {
        name: 'default',
        label: 'Default'
      },
      {
        name: 'home',
        label: 'Home'
      }
    ]
  },
}
  • As admin set globals varialbes

Additional routes for user menu

  • /orders: get all orders for the logged user

Add subcategory menu widget

// in home.html, or where you want
  {# Ecommerce subcategory menu #}
  {{ apos.area(data.page, 'category', {
    widgets: {
      'ncc-subcategory': {}
    }
  }) }}

Emails

You can send an email from pieces, or use the method to send mail where you want. It's used nodemailer, so you can configure it how you want, for example with ses. For tests you can use Maildev with this config:

  'apostrophe-email': {
    nodemailer: {
      host: 'localhost',
      port: 1025,
      secure: false,
      tls: {
        rejectUnauthorized: false
      }
    }
  },

Use Paypal

// in app.js add the module
  'ncc-paypal': {
    mode: process.env.PAYPAL_MODE, // sandbox or live
    secret: process.env.PAYPAL_SECRET,
    clientID: process.env.PAYPAL_CLIENTID,
  },

You must export the variable in your env, example:

export PAYPAL_MODE=sandbox
export PAYPAL_SECRET=MYSECRET
export PAYPAL_CLIENTID=MYCLIENTID

Disable selling

If you want disable selling from cart (for example if you want a showcase), you must remove from app.js the modules: ncc-paypal and ncc-cart and remove from lib/modules/ncc-products-pages/views/show.html the Add to cart button.

Useful

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

0.2.0

5 years ago

0.1.14

6 years ago

0.1.13

6 years ago

0.1.12

6 years ago

0.1.11

6 years ago

0.1.10

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago