deprecated
1 week ago
block.json
1 week ago
component.js
2 weeks ago
edit.js
1 week ago
icon.svg
3 months ago
index.js
1 week ago
index.php
3 months ago
save.js
1 week ago
style.scss
1 week ago
transforms.js
3 months ago
save.js
191 lines
| 1 | import { VKBButton } from './component'; |
| 2 | import { RichText, useBlockProps } from '@wordpress/block-editor'; |
| 3 | import { isHexColor } from '@vkblocks/utils/is-hex-color'; |
| 4 | import { toPresetSpacingVar } from '@vkblocks/utils/to-preset-spacing-var'; |
| 5 | |
| 6 | export default function save(props) { |
| 7 | const { attributes } = props; |
| 8 | const { |
| 9 | content, |
| 10 | subCaption, |
| 11 | buttonUrl, |
| 12 | buttonTarget, |
| 13 | relAttribute, |
| 14 | linkToPost, |
| 15 | linkToCustomField, |
| 16 | buttonSize, |
| 17 | buttonType, |
| 18 | buttonEffect, |
| 19 | buttonColor, |
| 20 | buttonTextColorCustom, |
| 21 | buttonColorCustom, |
| 22 | buttonBorderColorCustom, |
| 23 | buttonHoverBorderColorCustom, |
| 24 | buttonHoverBgColorCustom, |
| 25 | buttonHoverTextColorCustom, |
| 26 | buttonAlign, |
| 27 | buttonWidthMobile, |
| 28 | buttonWidthTablet, |
| 29 | buttonWidth, |
| 30 | outerGap, |
| 31 | fontAwesomeIconBefore, |
| 32 | fontAwesomeIconAfter, |
| 33 | iconSizeBefore, |
| 34 | iconSizeAfter, |
| 35 | inlineStyle, |
| 36 | borderRadius, |
| 37 | blockId, |
| 38 | fontSizeValue, |
| 39 | } = attributes; |
| 40 | |
| 41 | const effectiveUrl = linkToPost || linkToCustomField ? '' : buttonUrl; |
| 42 | const hasButtonBorderColor = |
| 43 | (buttonType === '0' || buttonType === null || buttonType === '1') && |
| 44 | buttonBorderColorCustom !== undefined && |
| 45 | buttonBorderColorCustom !== null && |
| 46 | buttonBorderColorCustom !== ''; |
| 47 | const hasButtonHoverBorderColor = |
| 48 | (buttonType === '0' || buttonType === null || buttonType === '1') && |
| 49 | buttonHoverBorderColorCustom !== undefined && |
| 50 | buttonHoverBorderColorCustom !== null && |
| 51 | buttonHoverBorderColorCustom !== ''; |
| 52 | |
| 53 | let containerClass = ''; |
| 54 | // カスタム色・枠線色・アウターのギャップ・ホバー色のいずれかを使う場合 |
| 55 | // Add the block-specific class for custom colors, a border color, an outer gap, or hover colors. |
| 56 | if ( |
| 57 | (buttonColorCustom !== undefined && isHexColor(buttonColorCustom)) || |
| 58 | (buttonTextColorCustom !== undefined && |
| 59 | isHexColor(buttonTextColorCustom)) || |
| 60 | hasButtonBorderColor || |
| 61 | hasButtonHoverBorderColor || |
| 62 | outerGap || |
| 63 | (buttonHoverBgColorCustom !== undefined && |
| 64 | buttonHoverBgColorCustom !== '') || |
| 65 | (buttonHoverTextColorCustom !== undefined && |
| 66 | buttonHoverTextColorCustom !== '') |
| 67 | ) { |
| 68 | containerClass = `vk_button vk_button-color-custom vk_button-${blockId}`; |
| 69 | } else { |
| 70 | containerClass = `vk_button vk_button-color-custom`; |
| 71 | } |
| 72 | |
| 73 | if (buttonWidthMobile || buttonWidthTablet || buttonWidth) { |
| 74 | // 横並びボタンで� |
| 75 | が指定されている |
| 76 | if (buttonWidthMobile) { |
| 77 | containerClass += ` vk_button-width-mobile-${buttonWidthMobile}`; |
| 78 | } |
| 79 | if (buttonWidthTablet) { |
| 80 | containerClass += ` vk_button-width-tablet-${buttonWidthTablet}`; |
| 81 | } |
| 82 | if (buttonWidth) { |
| 83 | containerClass += ` vk_button-width-${buttonWidth}`; |
| 84 | } |
| 85 | } else { |
| 86 | containerClass += ` vk_button-align-${buttonAlign}`; |
| 87 | } |
| 88 | |
| 89 | // エフェクト |
| 90 | if (buttonEffect !== '') { |
| 91 | containerClass += ` is-style-${buttonEffect}`; |
| 92 | } |
| 93 | |
| 94 | // コア spacing.padding は useBlockProps.save が wrapper (.vk_button) の |
| 95 | // インライン style に自動注� |
| 96 | �するが、ボタンの「� |
| 97 | 側余白」というユーザー期� |
| 98 | は |
| 99 | // <a> 自体の padding なので、wrapper 側の padding 系プロパティを取り除き、 |
| 100 | // 同じ値を <a> 側に転写する。 |
| 101 | // プリセット値 (var:preset|spacing|XX) は toPresetSpacingVar で var() に変換する。 |
| 102 | // useBlockProps.save will inject the core spacing.padding as inline style on the |
| 103 | // wrapper (.vk_button), but users expect the inner padding of the <a>. So we |
| 104 | // strip the padding properties from the wrapper style and forward them onto <a>. |
| 105 | const spacingPadding = attributes?.style?.spacing?.padding; |
| 106 | const hasSpacingPadding = |
| 107 | spacingPadding && |
| 108 | (spacingPadding.top || |
| 109 | spacingPadding.right || |
| 110 | spacingPadding.bottom || |
| 111 | spacingPadding.left); |
| 112 | |
| 113 | const blockProps = useBlockProps.save({ |
| 114 | className: containerClass, |
| 115 | }); |
| 116 | |
| 117 | if (hasSpacingPadding && blockProps.style) { |
| 118 | // 既存ユーザー(padding 未設定)の出力は完� |
| 119 | �不変にするため、 |
| 120 | // 設定がある時だけ wrapper 側 padding を取り除く。 |
| 121 | // Strip the wrapper padding only when the user actually set one, |
| 122 | // so that the existing output stays byte-identical for legacy blocks. |
| 123 | const { |
| 124 | paddingTop: _pt, |
| 125 | paddingRight: _pr, |
| 126 | paddingBottom: _pb, |
| 127 | paddingLeft: _pl, |
| 128 | ...restWrapperStyle |
| 129 | } = blockProps.style; |
| 130 | blockProps.style = restWrapperStyle; |
| 131 | } |
| 132 | |
| 133 | // inlineStyleからborderRadius・コアpaddingを含む新しいスタイルオブジェクトを構築 |
| 134 | const btnInlineStyle = { ...inlineStyle }; |
| 135 | if (borderRadius) { |
| 136 | btnInlineStyle.borderRadius = borderRadius; |
| 137 | } |
| 138 | if (hasSpacingPadding) { |
| 139 | if (spacingPadding.top) { |
| 140 | btnInlineStyle.paddingTop = toPresetSpacingVar(spacingPadding.top); |
| 141 | } |
| 142 | if (spacingPadding.right) { |
| 143 | btnInlineStyle.paddingRight = toPresetSpacingVar( |
| 144 | spacingPadding.right |
| 145 | ); |
| 146 | } |
| 147 | if (spacingPadding.bottom) { |
| 148 | btnInlineStyle.paddingBottom = toPresetSpacingVar( |
| 149 | spacingPadding.bottom |
| 150 | ); |
| 151 | } |
| 152 | if (spacingPadding.left) { |
| 153 | btnInlineStyle.paddingLeft = toPresetSpacingVar( |
| 154 | spacingPadding.left |
| 155 | ); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | return ( |
| 160 | <div {...blockProps}> |
| 161 | <VKBButton |
| 162 | lbTextColorCustom={buttonTextColorCustom} |
| 163 | lbColorCustom={buttonColorCustom} |
| 164 | lbColor={buttonColor} |
| 165 | lbType={buttonType} |
| 166 | lbAlign={buttonAlign} |
| 167 | lbSize={buttonSize} |
| 168 | lbUrl={effectiveUrl} |
| 169 | lbTarget={buttonTarget} |
| 170 | lbLinkToPost={linkToPost} |
| 171 | lbLinkToCustomField={linkToCustomField} |
| 172 | lbRelAttribute={relAttribute} |
| 173 | lbFontAwesomeIconBefore={fontAwesomeIconBefore} |
| 174 | lbFontAwesomeIconAfter={fontAwesomeIconAfter} |
| 175 | lbIconSizeBefore={iconSizeBefore} |
| 176 | lbIconSizeAfter={iconSizeAfter} |
| 177 | lbsubCaption={subCaption} |
| 178 | lbFontSizeValue={fontSizeValue} |
| 179 | inlineStyle={btnInlineStyle} |
| 180 | lbRichtext={ |
| 181 | <RichText.Content |
| 182 | tagName={'span'} |
| 183 | className={'vk_button_link_txt'} |
| 184 | value={content} |
| 185 | /> |
| 186 | } |
| 187 | /> |
| 188 | </div> |
| 189 | ); |
| 190 | } |
| 191 |