/** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { BaseControl, Button } from '@wordpress/components'; import classnames from 'classnames'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import { ESCAPE } from '@wordpress/keycodes'; import { get } from 'lodash'; import { withDispatch } from '@wordpress/data'; /** * WooCommerce dependencies */ import { Link, ProductImage } from '@woocommerce/components'; import { getSetting } from '@woocommerce/wc-admin-settings'; /** * Internal dependencies */ import { ActivityCard } from '../../activity-card'; class ProductStockCard extends Component { constructor( props ) { super( props ); this.state = { quantity: props.product.stock_quantity, editing: false, edited: false, }; this.beginEdit = this.beginEdit.bind( this ); this.cancelEdit = this.cancelEdit.bind( this ); this.onQuantityChange = this.onQuantityChange.bind( this ); this.handleKeyDown = this.handleKeyDown.bind( this ); this.onSubmit = this.onSubmit.bind( this ); } beginEdit() { const { product } = this.props; this.setState( { editing: true, quantity: product.stock_quantity, }, () => { if ( this.quantityInput ) { this.quantityInput.focus(); } } ); } cancelEdit() { const { product } = this.props; this.setState( { editing: false, quantity: product.stock_quantity, } ); } handleKeyDown( event ) { if ( event.keyCode === ESCAPE ) { this.cancelEdit(); } } onQuantityChange( event ) { this.setState( { quantity: event.target.value } ); } onSubmit() { const { product, updateProductStock } = this.props; const { quantity } = this.state; this.setState( { editing: false, edited: true } ); updateProductStock( product, quantity ); } getActions() { const { editing } = this.state; if ( editing ) { return [ , , ]; } return [ , ]; } getBody() { const { product } = this.props; const { editing, quantity } = this.state; if ( editing ) { return ( { this.quantityInput = input; } } /> { __( 'in stock', 'woocommerce-admin' ) } ); } return ( { sprintf( __( '%d in stock', 'woocommerce-admin' ), product.stock_quantity ) } ); } render() { const { product } = this.props; const { edited, editing } = this.state; const notifyLowStockAmount = getSetting( 'notifyLowStockAmount', 0 ); const lowStockAmount = Number.isFinite( product.low_stock_amount ) ? product.low_stock_amount : notifyLowStockAmount; const isLowStock = product.stock_quantity <= lowStockAmount; // Hide cards that are not in low stock and have not been edited. // This allows clearing cards which are no longer in low stock after // closing & opening the panel without having to make another request. if ( ! isLowStock && ! edited ) { return null; } const title = ( { product.name } ); let subtitle = null; if ( product.type === 'variation' ) { subtitle = Object.values( product.attributes ) .map( ( attr ) => attr.option ) .join( ', ' ); } const productImage = get( product, [ 'images', 0 ] ) || get( product, [ 'image' ] ); const productImageClasses = classnames( 'woocommerce-stock-activity-card__image-overlay__product', { 'is-placeholder': ! productImage || ! productImage.src, } ); const icon = (
); const activityCardClasses = classnames( 'woocommerce-stock-activity-card', { 'is-dimmed': ! editing && ! isLowStock, } ); const activityCard = ( { this.getBody() } ); if ( editing ) { return (
{ activityCard }
); } return activityCard; } } export default compose( withDispatch( ( dispatch ) => { const { updateProductStock } = dispatch( 'wc-api' ); return { updateProductStock, }; } ) )( ProductStockCard );