import { SelectDropdown } from '@automattic/components'; import { localize } from 'i18n-calypso'; import { includes, times } from 'lodash'; import PropTypes from 'prop-types'; import { Component } from 'react'; import FormCheckbox from 'calypso/components/forms/form-checkbox'; import { GalleryColumnedTypes, GallerySizeableTypes } from 'calypso/lib/media/constants'; import { isModuleActive } from 'calypso/lib/site/utils'; import EditorMediaModalFieldset from '../fieldset'; const noop = () => {}; export class EditorMediaModalGalleryFields extends Component { static propTypes = { site: PropTypes.object, settings: PropTypes.object, onUpdateSetting: PropTypes.func, numberOfItems: PropTypes.number, }; static defaultProps = { settings: Object.freeze( {} ), onUpdateSetting: noop, numberOfItems: 0, }; getTypeOptions = () => { const { site } = this.props; const options = { individual: this.props.translate( 'Individual Images' ), default: this.props.translate( 'Thumbnail Grid' ), }; if ( site && ( ! site.jetpack || isModuleActive( site, 'tiled-gallery' ) ) ) { Object.assign( options, { rectangular: this.props.translate( 'Tiled Mosaic' ), square: this.props.translate( 'Square Tiles' ), circle: this.props.translate( 'Circles' ), columns: this.props.translate( 'Tiled Columns' ), } ); } if ( site && ( ! site.jetpack || isModuleActive( site, 'shortcodes' ) ) ) { Object.assign( options, { slideshow: this.props.translate( 'Slideshow' ), } ); } return options; }; getLinkOptions = () => { if ( 'individual' === this.props.settings.type ) { return {}; } return { '': this.props.translate( 'Attachment Page' ), file: this.props.translate( 'Media File' ), none: this.props.translate( 'None' ), }; }; getSizeOptions = () => { if ( ! includes( GallerySizeableTypes, this.props.settings.type ) ) { return {}; } return { thumbnail: this.props.translate( 'Thumbnail' ), medium: this.props.translate( 'Medium' ), large: this.props.translate( 'Large' ), full: this.props.translate( 'Full Size' ), }; }; getColumnOptions = () => { const max = Math.min( this.props.numberOfItems, 9 ); return Object.fromEntries( times( max, ( n ) => [ n + 1, ( n + 1 ).toString() ] ) ); }; updateRandomOrder = ( event ) => { this.props.onUpdateSetting( 'orderBy', event.target.checked ? 'rand' : null ); }; renderDropdown = ( legend, options, settingName ) => { const { settings, onUpdateSetting } = this.props; if ( ! Object.keys( options ).length ) { return; } return ( { Object.keys( options ).map( ( value ) => { const label = options[ value ]; return ( onUpdateSetting( settingName, isFinite( parseInt( value ) ) ? +value : value ) } > { label } ); } ) } ); }; renderColumnsOption = () => { if ( ! includes( GalleryColumnedTypes, this.props.settings.type ) ) { return; } return this.renderDropdown( this.props.translate( 'Columns' ), this.getColumnOptions(), 'columns' ); }; renderRandomOption = () => { const { settings } = this.props; if ( 'individual' === settings.type ) { return; } return ( ); }; render() { const types = this.getTypeOptions(); const links = this.getLinkOptions(); const sizes = this.getSizeOptions(); return (
{ this.renderDropdown( this.props.translate( 'Layout' ), types, 'type' ) } { this.renderColumnsOption() } { this.renderRandomOption() } { this.renderDropdown( this.props.translate( 'Link To' ), links, 'link' ) } { this.renderDropdown( this.props.translate( 'Size' ), sizes, 'size' ) }
); } } export default localize( EditorMediaModalGalleryFields );