woocommerce/plugins/woocommerce-blocks
Kelly Dwan 43675515af Block: Add new "Best Selling Products" block (https://github.com/woocommerce/woocommerce-blocks/pull/221)
* Move from a JS file per block registration to one file registering all blocks

This will let webpack combine shared libraries, like gridicons

* Move global block settings to the “before all scripts” section

These shouldn’t be tied to a specific block file, since they’re used across all blocks

* Register both block types

We can also remove the scripts, since we enqueue these below

* Update getShortcode & getQuery to handle different block types

* Pass block type name to getQuery

* Update shared attributes - edit_mode is not a universal option, but categories will be

Categories is shared, but orderby is not

* Add “Best Selling Products” block

* Add a shared class name for product grid blocks

* Fix failing tests
2018-12-13 12:19:55 -05:00
..
.github Update pull request template to add a11y instructions 2018-11-29 10:02:06 -05:00
assets Block: Add new "Best Selling Products" block (https://github.com/woocommerce/woocommerce-blocks/pull/221) 2018-12-13 12:19:55 -05:00
includes New custom endpoints (https://github.com/woocommerce/woocommerce-blocks/pull/162) 2018-11-30 14:12:56 -05:00
languages Update textdomain to plugin slug (https://github.com/woocommerce/woocommerce-blocks/pull/199) 2018-12-04 09:51:21 -05:00
tests Fix PHP CodeSniffer issues (https://github.com/woocommerce/woocommerce-blocks/pull/215) 2018-12-11 11:14:02 -06:00
.babelrc Update textdomain to plugin slug (https://github.com/woocommerce/woocommerce-blocks/pull/199) 2018-12-04 09:51:21 -05:00
.editorconfig Add .editorconfig file for editor integration (https://github.com/woocommerce/woocommerce-blocks/pull/128) 2018-11-16 10:42:56 -05:00
.eslintignore Update eslint config to ignore legacy block (https://github.com/woocommerce/woocommerce-blocks/pull/176) 2018-11-30 13:18:52 -05:00
.eslintrc.js Update eslint config to ignore legacy block (https://github.com/woocommerce/woocommerce-blocks/pull/176) 2018-11-30 13:18:52 -05:00
.gitattributes Add gitatributes file 2018-04-23 10:34:21 -07:00
.gitignore Update textdomain to plugin slug (https://github.com/woocommerce/woocommerce-blocks/pull/199) 2018-12-04 09:51:21 -05:00
.nvmrc Adds continuous integration testing with travis (https://github.com/woocommerce/woocommerce-blocks/pull/156) 2018-11-27 12:12:48 -05:00
.stylelintrc.json Add stylelint to find and fix css code style issues (https://github.com/woocommerce/woocommerce-blocks/pull/126) 2018-11-15 10:45:49 -05:00
.travis.yml Adds continuous integration testing with travis (https://github.com/woocommerce/woocommerce-blocks/pull/156) 2018-11-27 12:12:48 -05:00
README.md correct link in readme.md (https://github.com/woocommerce/woocommerce-blocks/pull/234) 2018-12-12 11:16:55 -05:00
composer.json Pin dependencies (https://github.com/woocommerce/woocommerce-blocks/pull/167) 2018-11-29 13:09:21 -05:00
composer.lock Pin dependencies (https://github.com/woocommerce/woocommerce-blocks/pull/167) 2018-11-29 13:09:21 -05:00
license.txt Readme 2018-04-20 10:17:55 -07:00
package-lock.json Update dependency node-sass to v4.11.0 2018-12-09 02:48:04 +00:00
package.json Update Node.js to v10.14.2 (https://github.com/woocommerce/woocommerce-blocks/pull/232) 2018-12-11 17:28:29 -05:00
phpcs.xml Fix PHP CodeSniffer issues (https://github.com/woocommerce/woocommerce-blocks/pull/215) 2018-12-11 11:14:02 -06:00
phpunit.xml.dist Adds continuous integration testing with travis (https://github.com/woocommerce/woocommerce-blocks/pull/156) 2018-11-27 12:12:48 -05:00
postcss.config.js Product preview: Update "Add to cart" button to inherit theme's button styles (https://github.com/woocommerce/woocommerce-blocks/pull/223) 2018-12-13 12:19:06 -05:00
readme.txt Release 1.2.0 (https://github.com/woocommerce/woocommerce-blocks/pull/206) 2018-12-04 15:54:14 -05:00
renovate.json Add renovate.json (https://github.com/woocommerce/woocommerce-blocks/pull/127) 2018-11-15 16:55:12 -05:00
webpack.config.js Block: Add new "Best Selling Products" block (https://github.com/woocommerce/woocommerce-blocks/pull/221) 2018-12-13 12:19:55 -05:00
woocommerce-gutenberg-products-block.php Block: Add new "Best Selling Products" block (https://github.com/woocommerce/woocommerce-blocks/pull/221) 2018-12-13 12:19:55 -05:00

README.md

WooCommerce Product Blocks

Feature plugin for the Gutenberg Products block.

Getting started with the stable version:

  1. The stable version is available on WordPress.org. Download the stable version here.
  2. Activate the plugin.
  3. On Gutenberg posts you should now have a Products block available.

Getting started with the development version:

  1. Make sure you have:
  • the latest version of the Gutenberg plugin and WooCommerce 3.3.1+ installed and active
  • OR WordPress 5.0 (beta) and WooCommerce 3.5.1+
  1. Get a copy of this plugin using the green "Clone or download" button on the right.
  2. npm install to install the dependencies.
  3. npm run build (build once) or npm start (keep watching for changes) to compile the code.
  4. Activate the plugin.
  5. On Gutenberg posts & pages you should now have a "Products" block available.

The source code is in the assets/js/products-block.jsx file and the compiled code is in build/products-block.js.

Gutenberg Tutorial and Docs: https://wordpress.org/gutenberg/handbook/designers-developers/developers/tutorials/block-tutorial/introducing-attributes-and-editable-fields/

Using API in Gutenberg: https://github.com/WordPress/gutenberg/tree/master/packages/api-fetch

Vision for the Feature

Users should be able to insert a variety of products from their store (specific products, products in a category, with assorted layouts and visual styles, etc.) into their post content using a simple and powerful visual editor.