/** @format */ /** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import { xor } from 'lodash'; import PropTypes from 'prop-types'; import { SelectControl, TextControl } from '@wordpress/components'; import { withDispatch } from '@wordpress/data'; /** * WooCommerce dependencies */ import { EllipsisMenu, MenuItem, MenuTitle, SectionHeader } from '@woocommerce/components'; /** * Internal dependencies */ import Leaderboard from 'analytics/components/leaderboard'; import withSelect from 'wc-api/with-select'; import './style.scss'; class Leaderboards extends Component { constructor( props ) { super( ...arguments ); this.state = { hiddenLeaderboardKeys: props.userPrefLeaderboards || [ 'coupons', 'customers' ], rowsPerTable: parseInt( props.userPrefLeaderboardRows ) || 5, }; this.toggle = this.toggle.bind( this ); } toggle( key ) { return () => { const hiddenLeaderboardKeys = xor( this.state.hiddenLeaderboardKeys, [ key ] ); this.setState( { hiddenLeaderboardKeys } ); const userDataFields = { [ 'dashboard_leaderboards' ]: hiddenLeaderboardKeys, }; this.props.updateCurrentUserData( userDataFields ); }; } setRowsPerTable = rows => { this.setState( { rowsPerTable: parseInt( rows ) } ); const userDataFields = { [ 'dashboard_leaderboard_rows' ]: parseInt( rows ), }; this.props.updateCurrentUserData( userDataFields ); }; renderMenu() { const { allLeaderboards, onTitleBlur, onTitleChange, titleInput } = this.props; const { hiddenLeaderboardKeys, rowsPerTable } = this.state; return ( { window.wcAdminFeatures[ 'dashboard/customizable' ] && (
) } { __( 'Leaderboards', 'woocommerce-admin' ) } { allLeaderboards.map( leaderboard => { return ( { leaderboard.label } ); } ) } { __( 'Rows Per Table', 'woocommerce-admin' ) } } value={ rowsPerTable } options={ Array.from( { length: 20 }, ( v, key ) => ( { v: key + 1, label: key + 1, } ) ) } onChange={ this.setRowsPerTable } />
); } renderLeaderboards() { const { hiddenLeaderboardKeys, rowsPerTable } = this.state; const { allLeaderboards, query } = this.props; return allLeaderboards.map( leaderboard => { if ( hiddenLeaderboardKeys.includes( leaderboard.id ) ) { return; } return ( ); } ); } render() { const { title } = this.props; return (
{ this.renderLeaderboards() }
); } } Leaderboards.propTypes = { query: PropTypes.object.isRequired, }; export default compose( withSelect( select => { const { getCurrentUserData, getItems, getItemsError, isGetItemsRequesting } = select( 'wc-api' ); const userData = getCurrentUserData(); const allLeaderboards = wcSettings.dataEndpoints.leaderboards; return { allLeaderboards, getItems, getItemsError, isGetItemsRequesting, userPrefLeaderboards: userData.dashboard_leaderboards, userPrefLeaderboardRows: userData.dashboard_leaderboard_rows, }; } ), withDispatch( dispatch => { const { updateCurrentUserData } = dispatch( 'wc-api' ); return { updateCurrentUserData, }; } ) )( Leaderboards );