| @@ -2,19 +2,21 @@ | ||
| 2 | 2 | import { createBlock, registerBlockType } from '@wordpress/blocks'; |
| 3 | 3 | import { addFilter } from '@wordpress/hooks'; |
| 4 | 4 | import { __ } from '@wordpress/i18n'; |
| 5 | 5 | import classnames from 'classnames'; |
| 6 | -import { Lang } from 'shiki'; | |
| 7 | 6 | import blockConfig from './block.json'; |
| 8 | 7 | import { Edit } from './editor/Edit'; |
| 9 | 8 | import { BlockFilter } from './editor/components/BlockFilter'; |
| 9 | +import { FooterType } from './editor/components/FooterSelect'; | |
| 10 | 10 | import { HeaderType } from './editor/components/HeaderSelect'; |
| 11 | +import { SeeMoreType } from './editor/components/SeeMoreSelect'; | |
| 11 | 12 | import { SidebarControls } from './editor/controls/Sidebar'; |
| 12 | 13 | import { ToolbarControls } from './editor/controls/Toolbar'; |
| 13 | 14 | import './editor/editor.css'; |
| 14 | 15 | import { BlockOutput } from './front/BlockOutput'; |
| 16 | +import { CopyButton } from './front/CopyButton'; | |
| 15 | 17 | import { blockIcon } from './icons'; |
| 16 | -import { Attributes } from './types'; | |
| 18 | +import { Attributes, Lang } from './types'; | |
| 17 | 19 | import { fontFamilyLong, maybeClamp } from './util/fonts'; |
| 18 | 20 | import { getMainAlias } from './util/languages'; |
| 19 | 21 | |
| 20 | 22 | registerBlockType<Attributes>(blockConfig.name, { |
| @@ -31,14 +33,31 @@ | ||
| 31 | 33 | textColor: { type: 'string', default: '#f8f8f2' }, |
| 32 | 34 | fontSize: { type: 'string' }, |
| 33 | 35 | fontFamily: { type: 'string' }, |
| 34 | 36 | lineHeight: { type: 'string' }, |
| 35 | - clampFonts: { type: 'boolean', default: false }, | |
| 37 | + clampFonts: { type: 'boolean' }, | |
| 38 | + editorHeight: { type: 'string' }, | |
| 36 | 39 | lineNumbers: { type: 'boolean' }, |
| 37 | 40 | headerType: { type: 'string' }, |
| 38 | 41 | headerString: { type: 'string' }, |
| 39 | - disablePadding: { type: 'boolean', default: false }, | |
| 40 | - startingLineNumber: { type: 'number', default: 1 }, | |
| 42 | + disablePadding: { type: 'boolean' }, | |
| 43 | + footerType: { type: 'string' }, | |
| 44 | + footerString: { type: 'string' }, | |
| 45 | + footerLink: { type: 'string' }, | |
| 46 | + footerLinkTarget: { type: 'boolean' }, | |
| 47 | + enableMaxHeight: { type: 'boolean' }, | |
| 48 | + seeMoreType: { type: 'string' }, | |
| 49 | + seeMoreString: { type: 'string' }, | |
| 50 | + seeMoreAfterLine: { type: 'string' }, | |
| 51 | + seeMoreTransition: { type: 'boolean' }, | |
| 52 | + startingLineNumber: { type: 'string' }, | |
| 53 | + lineNumbersWidth: { type: 'number' }, | |
| 54 | + enableHighlighting: { type: 'boolean' }, | |
| 55 | + lineHighlights: { type: 'string' }, | |
| 56 | + lineHighlightColor: { type: 'string' }, | |
| 57 | + enableBlurring: { type: 'boolean' }, | |
| 58 | + lineBlurs: { type: 'string' }, | |
| 59 | + removeBlurOnHover: { type: 'boolean' }, | |
| 41 | 60 | frame: { type: 'boolean' }, |
| 42 | 61 | renderType: { type: 'string', default: 'code' }, |
| 43 | 62 | label: { type: 'string', default: '' }, |
| 44 | 63 | copyButton: { type: 'boolean' }, |
| @@ -62,8 +81,14 @@ | ||
| 62 | 81 | <div |
| 63 | 82 | {...blockProps({ |
| 64 | 83 | className: classnames('code-block-pro-editor', { |
| 65 | 84 | 'padding-disabled': attributes.disablePadding, |
| 85 | + 'padding-bottom-disabled': | |
| 86 | + attributes?.footerType && | |
| 87 | + attributes?.footerType !== 'none', | |
| 88 | + 'cbp-has-line-numbers': attributes.lineNumbers, | |
| 89 | + 'cbp-blur-enabled': attributes.enableBlurring, | |
| 90 | + 'cbp-unblur-on-hover': attributes.removeBlurOnHover, | |
| 66 | 91 | }), |
| 67 | 92 | style: { |
| 68 | 93 | fontSize: maybeClamp( |
| 69 | 94 | attributes.fontSize, |
| @@ -68,9 +93,26 @@ | ||
| 68 | 93 | fontSize: maybeClamp( |
| 69 | 94 | attributes.fontSize, |
| 70 | 95 | attributes.clampFonts, |
| 71 | 96 | ), |
| 72 | - fontFamily: fontFamilyLong(attributes.fontFamily), | |
| 97 | + '--cbp-line-number-color': attributes?.lineNumbers | |
| 98 | + ? attributes.textColor | |
| 99 | + : undefined, | |
| 100 | + '--cbp-line-number-start': | |
| 101 | + Number(attributes?.startingLineNumber) > 1 | |
| 102 | + ? attributes.startingLineNumber | |
| 103 | + : undefined, | |
| 104 | + '--cbp-line-number-width': attributes.lineNumbersWidth | |
| 105 | + ? `${attributes.lineNumbersWidth}px` | |
| 106 | + : undefined, | |
| 107 | + '--cbp-line-highlight-color': | |
| 108 | + attributes?.enableHighlighting | |
| 109 | + ? attributes.lineHighlightColor | |
| 110 | + : undefined, | |
| 111 | + '--cbp-line-height': attributes.lineHeight, | |
| 112 | + // Disabled as ligatures will break the editor line widths | |
| 113 | + // fontFamily: fontFamilyLong(attributes.fontFamily), | |
| 114 | + fontFamily: fontFamilyLong(''), | |
| 73 | 115 | lineHeight: maybeClamp( |
| 74 | 116 | attributes.lineHeight, |
| 75 | 117 | attributes.clampFonts, |
| 76 | 118 | ), |
| @@ -76,9 +118,14 @@ | ||
| 76 | 118 | ), |
| 77 | 119 | }, |
| 78 | 120 | })}> |
| 79 | 121 | <HeaderType {...attributes} /> |
| 122 | + {attributes.copyButton && ( | |
| 123 | + <CopyButton attributes={attributes} /> | |
| 124 | + )} | |
| 80 | 125 | <Edit attributes={attributes} setAttributes={setAttributes} /> |
| 126 | + <FooterType {...attributes} /> | |
| 127 | + <SeeMoreType {...attributes} /> | |
| 81 | 128 | </div> |
| 82 | 129 | </> |
| 83 | 130 | ), |
| 84 | 131 | save: ({ attributes }) => <BlockOutput attributes={attributes} />, |