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