180 lines
4.4 KiB
JavaScript
180 lines
4.4 KiB
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Component, Fragment } from '@wordpress/element';
|
|
import { compose } from '@wordpress/compose';
|
|
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 SectionControls from 'dashboard/components/section-controls';
|
|
import './style.scss';
|
|
|
|
class Leaderboards extends Component {
|
|
constructor( props ) {
|
|
super( ...arguments );
|
|
|
|
this.state = {
|
|
rowsPerTable: parseInt( props.userPrefLeaderboardRows ) || 5,
|
|
};
|
|
}
|
|
|
|
setRowsPerTable = rows => {
|
|
this.setState( { rowsPerTable: parseInt( rows ) } );
|
|
const userDataFields = {
|
|
[ 'dashboard_leaderboard_rows' ]: parseInt( rows ),
|
|
};
|
|
this.props.updateCurrentUserData( userDataFields );
|
|
};
|
|
|
|
renderMenu() {
|
|
const {
|
|
allLeaderboards,
|
|
isFirst,
|
|
isLast,
|
|
hiddenBlocks,
|
|
onMove,
|
|
onRemove,
|
|
onTitleBlur,
|
|
onTitleChange,
|
|
onToggleHiddenBlock,
|
|
titleInput,
|
|
} = this.props;
|
|
const { rowsPerTable } = this.state;
|
|
|
|
return (
|
|
<EllipsisMenu
|
|
label={ __(
|
|
'Choose which leaderboards to display and other settings',
|
|
'woocommerce-admin'
|
|
) }
|
|
renderContent={ ( { onToggle } ) => (
|
|
<Fragment>
|
|
{ window.wcAdminFeatures[ 'analytics-dashboard/customizable' ] && (
|
|
<div className="woocommerce-ellipsis-menu__item">
|
|
<TextControl
|
|
label={ __( 'Section Title', 'woocommerce-admin' ) }
|
|
onBlur={ onTitleBlur }
|
|
onChange={ onTitleChange }
|
|
required
|
|
value={ titleInput }
|
|
/>
|
|
</div>
|
|
) }
|
|
<MenuTitle>{ __( 'Leaderboards', 'woocommerce-admin' ) }</MenuTitle>
|
|
{ allLeaderboards.map( leaderboard => {
|
|
return (
|
|
<MenuItem
|
|
checked={ ! hiddenBlocks.includes( leaderboard.id ) }
|
|
isCheckbox
|
|
isClickable
|
|
key={ leaderboard.id }
|
|
onInvoke={ () => onToggleHiddenBlock( leaderboard.id )() }
|
|
>
|
|
{ leaderboard.label }
|
|
</MenuItem>
|
|
);
|
|
} ) }
|
|
<SelectControl
|
|
className="woocommerce-dashboard__dashboard-leaderboards__select"
|
|
label={ <MenuTitle>{ __( 'Rows Per Table', 'woocommerce-admin' ) }</MenuTitle> }
|
|
value={ rowsPerTable }
|
|
options={ Array.from( { length: 20 }, ( v, key ) => ( {
|
|
v: key + 1,
|
|
label: key + 1,
|
|
} ) ) }
|
|
onChange={ this.setRowsPerTable }
|
|
/>
|
|
<SectionControls
|
|
onToggle={ onToggle }
|
|
onMove={ onMove }
|
|
onRemove={ onRemove }
|
|
isFirst={ isFirst }
|
|
isLast={ isLast }
|
|
/>
|
|
</Fragment>
|
|
) }
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderLeaderboards() {
|
|
const { rowsPerTable } = this.state;
|
|
const { allLeaderboards, hiddenBlocks, query } = this.props;
|
|
|
|
return allLeaderboards.map( leaderboard => {
|
|
if ( hiddenBlocks.includes( leaderboard.id ) ) {
|
|
return;
|
|
}
|
|
|
|
return (
|
|
<Leaderboard
|
|
headers={ leaderboard.headers }
|
|
id={ leaderboard.id }
|
|
key={ leaderboard.id }
|
|
query={ query }
|
|
title={ leaderboard.label }
|
|
totalRows={ rowsPerTable }
|
|
/>
|
|
);
|
|
} );
|
|
}
|
|
|
|
render() {
|
|
const { title } = this.props;
|
|
|
|
return (
|
|
<Fragment>
|
|
<div className="woocommerce-dashboard__dashboard-leaderboards">
|
|
<SectionHeader
|
|
title={ title || __( 'Leaderboards', 'woocommerce-admin' ) }
|
|
menu={ this.renderMenu() }
|
|
/>
|
|
<div className="woocommerce-dashboard__columns">{ this.renderLeaderboards() }</div>
|
|
</div>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
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,
|
|
userPrefLeaderboardRows: userData.dashboard_leaderboard_rows,
|
|
};
|
|
} ),
|
|
withDispatch( dispatch => {
|
|
const { updateCurrentUserData } = dispatch( 'wc-api' );
|
|
|
|
return {
|
|
updateCurrentUserData,
|
|
};
|
|
} )
|
|
)( Leaderboards );
|