| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/services-block.js.tar |
plugins/themeisle-companion/vendor/codeinwp/gutenberg-blocks/blocks/services/services-block.js 0000604 00000011314 15112050035 0037055 0 ustar 00 home/xbodynamge/crosstraining/wp-content /**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies...
*/
const { __ } = wp.i18n;
const { registerBlockType } = wp.blocks;
const {
ColorPalette,
InnerBlocks,
InspectorControls,
MediaPlaceholder
} = wp.editor;
const {
Button,
ToggleControl,
SelectControl,
PanelBody
} = wp.components;
const { Fragment } = wp.element;
registerBlockType( 'themeisle-blocks/services', {
title: __( 'Our Services' ),
description: __( 'Use this Services table to showcase services your website offers.' ),
icon: 'columns',
category: 'themeisle-blocks',
keywords: [
'services',
'features',
'orbitfox'
],
attributes: {
backgroundType: {
type: 'string',
default: 'color'
},
backgroundColor: {
type: 'string',
default: '#ffffff'
},
backgroundImageID: {
type: 'string'
},
backgroundImageURL: {
type: 'string'
},
backgroundDimmed: {
type: 'boolean',
default: true
},
backgroundParallax: {
type: 'boolean',
default: false
}
},
supports: {
align: [ 'wide', 'full' ]
},
edit: props => {
const ALLOWED_BLOCKS = [ 'themeisle-blocks/service-block' ];
const ALLOWED_MEDIA_TYPES = [ 'image' ];
const TEMPLATE = [ [ 'themeisle-blocks/service-block' ], [ 'themeisle-blocks/service-block' ], [ 'themeisle-blocks/service-block' ] ];
const changeType = value => {
props.setAttributes({ backgroundType: value });
};
const changeColor = value => {
props.setAttributes({ backgroundColor: value });
};
const changeBackground = value => {
props.setAttributes({
backgroundImageID: value.id,
backgroundImageURL: value.url
});
};
const removeBackground = () => {
props.setAttributes({
backgroundImageID: '',
backgroundImageURL: ''
});
};
const toggleDimming = () => {
props.setAttributes({ backgroundDimmed: ! props.attributes.backgroundDimmed });
};
const toggleParallax = () => {
props.setAttributes({ backgroundParallax: ! props.attributes.backgroundParallax });
};
const style = {
background: 'color' === props.attributes.backgroundType ? props.attributes.backgroundColor : `url(' ${ props.attributes.backgroundImageURL } ')`
};
return [
<InspectorControls>
<PanelBody
title={ __( 'Background' ) }
>
<SelectControl
label={ __( 'Background Type' ) }
value={ props.attributes.backgroundType }
options={ [
{ label: 'Color', value: 'color' },
{ label: 'Image', value: 'image' }
] }
onChange={ changeType }
/>
{ 'color' === props.attributes.backgroundType ?
<ColorPalette
label={ __( 'Background Color' ) }
value={ props.attributes.backgroundColor }
onChange={ changeColor }
/> :
props.attributes.backgroundImageURL ?
<Fragment>
<ToggleControl
label={ __( 'Dimmed Background' ) }
checked={ props.attributes.backgroundDimmed }
onChange={ toggleDimming }
/>
<ToggleControl
label={ __( 'Parallax Background' ) }
checked={ props.attributes.backgroundParallax }
onChange={ toggleParallax }
/>
<img
src={ props.attributes.backgroundImageURL }
/>
<Button
isLarge
onClick={ removeBackground }
style={ { marginTop: '10px' } }
>
{ __( 'Change or Remove Image' ) }
</Button>
</Fragment> :
<MediaPlaceholder
icon="format-image"
labels={ {
title: __( 'Background Image' ),
name: __( 'an image' )
} }
value={ props.attributes.backgroundImageID }
onSelect={ changeBackground }
accept="image/*"
allowedTypes={ ALLOWED_MEDIA_TYPES }
/>
}
</PanelBody>
</InspectorControls>,
<div
className={ classnames(
props.className,
{ 'is-dim': 'image' === props.attributes.backgroundType && props.attributes.backgroundDimmed },
{ 'is-parallax': 'image' === props.attributes.backgroundType && props.attributes.backgroundParallax },
) }
style={ style }
>
<InnerBlocks
allowedBlocks={ ALLOWED_BLOCKS }
template={ TEMPLATE }
/>
</div>
];
},
save: props => {
const style = {
background: 'color' === props.attributes.backgroundType ? props.attributes.backgroundColor : `url(' ${ props.attributes.backgroundImageURL } ')`
};
return (
<div
className={ classnames(
'wp-block-themeisle-blocks-services',
{ 'is-dim': 'image' === props.attributes.backgroundType && props.attributes.backgroundDimmed },
{ 'is-parallax': 'image' === props.attributes.backgroundType && props.attributes.backgroundParallax },
) }
style={ style }
>
<InnerBlocks.Content/>
</div>
);
}
});
plugins/themeisle-companion/vendor/codeinwp/gutenberg-blocks/blocks/services/services-block.js 0000644 00000011314 15115654147 0034773 0 ustar 00 home/xbodynamge/dev/wp-content /**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies...
*/
const { __ } = wp.i18n;
const { registerBlockType } = wp.blocks;
const {
ColorPalette,
InnerBlocks,
InspectorControls,
MediaPlaceholder
} = wp.editor;
const {
Button,
ToggleControl,
SelectControl,
PanelBody
} = wp.components;
const { Fragment } = wp.element;
registerBlockType( 'themeisle-blocks/services', {
title: __( 'Our Services' ),
description: __( 'Use this Services table to showcase services your website offers.' ),
icon: 'columns',
category: 'themeisle-blocks',
keywords: [
'services',
'features',
'orbitfox'
],
attributes: {
backgroundType: {
type: 'string',
default: 'color'
},
backgroundColor: {
type: 'string',
default: '#ffffff'
},
backgroundImageID: {
type: 'string'
},
backgroundImageURL: {
type: 'string'
},
backgroundDimmed: {
type: 'boolean',
default: true
},
backgroundParallax: {
type: 'boolean',
default: false
}
},
supports: {
align: [ 'wide', 'full' ]
},
edit: props => {
const ALLOWED_BLOCKS = [ 'themeisle-blocks/service-block' ];
const ALLOWED_MEDIA_TYPES = [ 'image' ];
const TEMPLATE = [ [ 'themeisle-blocks/service-block' ], [ 'themeisle-blocks/service-block' ], [ 'themeisle-blocks/service-block' ] ];
const changeType = value => {
props.setAttributes({ backgroundType: value });
};
const changeColor = value => {
props.setAttributes({ backgroundColor: value });
};
const changeBackground = value => {
props.setAttributes({
backgroundImageID: value.id,
backgroundImageURL: value.url
});
};
const removeBackground = () => {
props.setAttributes({
backgroundImageID: '',
backgroundImageURL: ''
});
};
const toggleDimming = () => {
props.setAttributes({ backgroundDimmed: ! props.attributes.backgroundDimmed });
};
const toggleParallax = () => {
props.setAttributes({ backgroundParallax: ! props.attributes.backgroundParallax });
};
const style = {
background: 'color' === props.attributes.backgroundType ? props.attributes.backgroundColor : `url(' ${ props.attributes.backgroundImageURL } ')`
};
return [
<InspectorControls>
<PanelBody
title={ __( 'Background' ) }
>
<SelectControl
label={ __( 'Background Type' ) }
value={ props.attributes.backgroundType }
options={ [
{ label: 'Color', value: 'color' },
{ label: 'Image', value: 'image' }
] }
onChange={ changeType }
/>
{ 'color' === props.attributes.backgroundType ?
<ColorPalette
label={ __( 'Background Color' ) }
value={ props.attributes.backgroundColor }
onChange={ changeColor }
/> :
props.attributes.backgroundImageURL ?
<Fragment>
<ToggleControl
label={ __( 'Dimmed Background' ) }
checked={ props.attributes.backgroundDimmed }
onChange={ toggleDimming }
/>
<ToggleControl
label={ __( 'Parallax Background' ) }
checked={ props.attributes.backgroundParallax }
onChange={ toggleParallax }
/>
<img
src={ props.attributes.backgroundImageURL }
/>
<Button
isLarge
onClick={ removeBackground }
style={ { marginTop: '10px' } }
>
{ __( 'Change or Remove Image' ) }
</Button>
</Fragment> :
<MediaPlaceholder
icon="format-image"
labels={ {
title: __( 'Background Image' ),
name: __( 'an image' )
} }
value={ props.attributes.backgroundImageID }
onSelect={ changeBackground }
accept="image/*"
allowedTypes={ ALLOWED_MEDIA_TYPES }
/>
}
</PanelBody>
</InspectorControls>,
<div
className={ classnames(
props.className,
{ 'is-dim': 'image' === props.attributes.backgroundType && props.attributes.backgroundDimmed },
{ 'is-parallax': 'image' === props.attributes.backgroundType && props.attributes.backgroundParallax },
) }
style={ style }
>
<InnerBlocks
allowedBlocks={ ALLOWED_BLOCKS }
template={ TEMPLATE }
/>
</div>
];
},
save: props => {
const style = {
background: 'color' === props.attributes.backgroundType ? props.attributes.backgroundColor : `url(' ${ props.attributes.backgroundImageURL } ')`
};
return (
<div
className={ classnames(
'wp-block-themeisle-blocks-services',
{ 'is-dim': 'image' === props.attributes.backgroundType && props.attributes.backgroundDimmed },
{ 'is-parallax': 'image' === props.attributes.backgroundType && props.attributes.backgroundParallax },
) }
style={ style }
>
<InnerBlocks.Content/>
</div>
);
}
});