Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy&Paste Animation + Adaptors update #1452

Merged
merged 4 commits into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions src/blocks/plugins/copy-paste/adaptors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { coreAdaptors } from './core-adaptors';
import { ColumnAttrs } from '../../blocks/section/column/types';
import { ButtonGroupAttrs } from '../../blocks/button-group/group/types';
import { ButtonAttrs } from '../../blocks/button-group/button/types';
import { addUnit, getInt, makeBox, getSingleValueFromBox } from './utils';
import { addUnit, getInt, makeBox, getSingleValueFromBox, createBoxFrom } from './utils';
import { IconAttrs } from '../../blocks/font-awesome-icons/types';
import { IconListAttrs } from '../../blocks/icon-list/types';
import { IconListItemAttrs } from '../../blocks/icon-list/item/types';
Expand Down Expand Up @@ -480,10 +480,15 @@ export const adaptors = {
size: addUnit( attrs?.labelFontSize, 'px' )
},
border: {
width: makeBox( addUnit( attrs?.inputBorderWidth, 'px' ) ),
width: createBoxFrom( attrs?.inputBorderWidth ),
radius: {
desktop: makeBox( addUnit( attrs?.inputBorderRadius, 'px' ) )
desktop: createBoxFrom( attrs?.inputBorderRadius )
}
},
padding: {
desktop: attrs?.inputPadding,
tablet: attrs?.inputPaddingTablet,
mobile: attrs?.inputPaddingMobile
}
},
private: {
Expand All @@ -501,7 +506,10 @@ export const adaptors = {
labelFontSize: getInt( s?.font?.size ),
inputBorderColor: s?.colors?.border,
inputBorderRadius: getInt( s?.border?.radius?.desktop?.top ),
inputBorderWidth: getInt( getSingleValueFromBox( s?.border?.width ) )
inputBorderWidth: getInt( getSingleValueFromBox( s?.border?.width ) ),
inputPadding: s?.padding?.desktop,
inputPaddingTablet: s?.padding?.tablet,
inputPaddingMobile: s?.padding?.mobile
};
}
},
Expand Down
12 changes: 12 additions & 0 deletions src/blocks/plugins/copy-paste/copy-paste.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { OtterBlock } from '../../helpers/blocks';
import { compactObject } from '../../helpers/helper-functions';
import { adaptors } from './adaptors';
import { CopyPasteStorage, Storage } from './models';
import { copyAnimations, pasteAnimations } from './plugins';


type Adaptors = Record<string, {
copy: ( x: any ) => Storage<any>
Expand Down Expand Up @@ -43,6 +45,7 @@ class CopyPaste {
this.storage.shared = copied?.shared;
this.storage.core = copied?.core;
this.storage.private = copied?.private;
this.storage.animations = copyAnimations( block?.attributes?.className );
this.sync();

success = 'SUCCESS';
Expand All @@ -69,6 +72,15 @@ class CopyPaste {
};

pasted = ( adaptors as Adaptors )?.[block.name]?.paste( attrs );
pasted.className = pasteAnimations( block.attributes?.className, this.storage.animations );

if ( block.name !== this.storage.copiedBlock ) {

/**
* If the blocks are not the same type, copy only the defined values. This will prevent some unwanted override.
*/
pasted = compactObject( pasted );
}

} catch ( e ) {
console.error( e );
Expand Down
15 changes: 8 additions & 7 deletions src/blocks/plugins/copy-paste/core-adaptors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isObjectLike, merge, pick } from 'lodash';
import { merge, pick } from 'lodash';
import { BoxType } from '../../helpers/blocks';
import { getChoice } from '../../helpers/helper-functions';
import { Storage } from './models';
Expand Down Expand Up @@ -52,13 +52,14 @@ const commonExtractor = ( attrs: any ): Storage<unknown> => {
},
margin: {
desktop: attrs?.style?.spacing?.margin
},
border: {
width: makeBox( attrs?.style?.border?.width ),
radius: {
desktop: ! isObjectLike( attrs?.style?.border?.radius ) ? makeBox( attrs?.style?.border?.radius ) : radiusExtract( attrs?.style?.border?.radius )
}
}

// border: {
// width: makeBox( attrs?.style?.border?.width ),
// radius: {
// desktop: ! isObjectLike( attrs?.style?.border?.radius ) ? makeBox( attrs?.style?.border?.radius ) : radiusExtract( attrs?.style?.border?.radius )
// }
// }
},
core: {
textColor: attrs?.textColor,
Expand Down
1 change: 1 addition & 0 deletions src/blocks/plugins/copy-paste/models.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,5 @@ type CopyPasteStorage = {
shared?: SharedAttrs
core?: SharedCore
private?: any
animations?: string[]
}
53 changes: 53 additions & 0 deletions src/blocks/plugins/copy-paste/plugins.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { uniq } from 'lodash';
import { animationsList, outAnimation, delayList, speedList } from '../../../animation/data';

export const copyAnimations = ( className: string | undefined ) => {
if ( className === undefined || ! className?.includes( 'animated' ) ) {
return undefined;
}

const allClasses = uniq( className.split( ' ' ) );

const animations = [
'animated',
...animationsList.map( x => x.value ),
...outAnimation,
...delayList.map( x => x.value ),
...speedList
];

const otterAnim = allClasses.filter( c => {
return 0 < c.length && animations.some( a => c === a );
});

return 0 === otterAnim.length ? undefined : otterAnim;
};

export const pasteAnimations = ( className: string | undefined, animList: string[] | undefined ) => {

if ( animList === undefined ) {
return className;
}

const currentClasses = uniq( ( className ?? '' ).split( ' ' ) );

const animations = [
'animated',
...animationsList.map( x => x.value ),
...outAnimation,
...delayList.map( x => x.value ),
...speedList
];

const cleaned = currentClasses
.filter( c => {
return ! animations.some( a => c === a ) && 0 < c.length;
});

return uniq([ ...( cleaned ?? []), ...( animList ?? []) ]).join( ' ' ).trim();
};

export default {
copyAnimations,
pasteAnimations
};
13 changes: 13 additions & 0 deletions src/blocks/plugins/copy-paste/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { color } from '@wordpress/icons/build-types';
import { isNumber, isString } from 'lodash';
import { BoxType } from '../../helpers/blocks';

/**
Expand Down Expand Up @@ -184,3 +185,15 @@ export const getColorFromThemeStyles = ( type: 'color' | 'gradient' | 'duotone'
const isCSSVar = Boolean( color?.includes( '--wp--preset--' ) );
return isCSSVar ? `var(${color})` : color;
};

export const createBoxFrom = ( x: string | number | undefined | BoxType ) => {
if ( isNumber( x ) ) {
return makeBox( addUnit( x, 'px' ) );
}

if ( isString( x ) ) {
return makeBox( x );
}

return x;
};