4210b6f0a8
* update @wordpress/eslint-plugin dependency to latest version * local prettier config isn’t needed anymore because of fix in upstream package * add jsdoc config to use typescript format for jsdocs * update changelog * update packages and include .prettierrc.js back in for code editor support of prettier * add docs * minor prettier fix in test file * Convert all new eslint rules throwing errors to warnings temporarily to be handled in separate prs * updated changelog * fix package-lock.json * prettier auto-fixes * add prettier dependency at root * sigh prettier is being finicky * version bump Co-authored-by: Paul Sealock <psealock@gmail.com> |
||
---|---|---|
.. | ||
src | ||
.npmrc | ||
CHANGELOG.md | ||
README.md | ||
package.json |
README.md
Data
WooCommerce Admin data store and utilities.
Installation
Install the module
npm install @woocommerce/data --save
This package assumes that your code will run in an ES2015+ environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using core-js or @babel/polyfill will add support for these methods. Learn more about it in Babel docs.
Usage
import { SETTINGS_STORE_NAME } from '@woocommerce/data';
import { useSelect } from '@wordpress/data';
function MySettings() {
const settings = useSelect( select => {
return select( SETTINGS_STORE_NAME ).getSettings();
} );
return (
<ul>
{ settings.map( setting => (
<li>{ setting.name }</li>
) ) }
</ul>
);
}
// Rendered in the application:
//
// <MySettings />