File size: 4,426 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
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 (
<EditorMediaModalFieldset legend={ legend } className={ 'for-setting-' + settingName }>
<SelectDropdown selectedText={ options[ settings[ settingName ] ] }>
{ Object.keys( options ).map( ( value ) => {
const label = options[ value ];
return (
<SelectDropdown.Item
key={ 'value-' + value }
selected={ value === settings[ settingName ] }
onClick={ () =>
onUpdateSetting( settingName, isFinite( parseInt( value ) ) ? +value : value )
}
>
{ label }
</SelectDropdown.Item>
);
} ) }
</SelectDropdown>
</EditorMediaModalFieldset>
);
};
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 (
<EditorMediaModalFieldset legend={ this.props.translate( 'Random Order' ) }>
<FormCheckbox onChange={ this.updateRandomOrder } checked={ settings.orderBy === 'rand' } />
</EditorMediaModalFieldset>
);
};
render() {
const types = this.getTypeOptions();
const links = this.getLinkOptions();
const sizes = this.getSizeOptions();
return (
<div className="editor-media-modal-gallery__fields">
{ 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' ) }
</div>
);
}
}
export default localize( EditorMediaModalGalleryFields );
|