deprecated
2 weeks ago
block.json
2 months ago
edit-multiItem.js
2 months ago
edit-slider.js
2 months ago
edit.js
1 month ago
icon.svg
3 months ago
index.js
2 weeks ago
index.php
3 months ago
loop-min-slides.js
3 months ago
pause-button.js
1 month ago
save.js
2 weeks ago
style.scss
3 months ago
view.js
2 weeks ago
index.js
191 lines
| 1 | /** |
| 2 | * Slider block type |
| 3 | * |
| 4 | */ |
| 5 | import { ReactComponent as Icon } from './icon.svg'; |
| 6 | import { createHigherOrderComponent } from '@wordpress/compose'; |
| 7 | import { addFilter } from '@wordpress/hooks'; |
| 8 | |
| 9 | import deprecatedHooks from './deprecated/hooks'; |
| 10 | import deprecated from './deprecated/save'; |
| 11 | import edit from './edit'; |
| 12 | import metadata from './block.json'; |
| 13 | import save from './save'; |
| 14 | |
| 15 | const { name } = metadata; |
| 16 | |
| 17 | export { metadata, name }; |
| 18 | |
| 19 | export const settings = { |
| 20 | icon: <Icon />, |
| 21 | edit, |
| 22 | save, |
| 23 | deprecated, |
| 24 | }; |
| 25 | |
| 26 | const generateHeightCss = (attributes, cssSelector = '') => { |
| 27 | const { blockId, mobile, tablet, pc, unit } = attributes; |
| 28 | let css = ''; |
| 29 | if (unit !== undefined && unit !== null) { |
| 30 | if (mobile !== undefined && mobile !== null && !isNaN(mobile)) { |
| 31 | css += `@media (max-width: 575.98px) { |
| 32 | ${cssSelector} |
| 33 | .vk_slider_${blockId} .vk_slider_item{ |
| 34 | height:${mobile}${unit}!important; |
| 35 | } |
| 36 | }`; |
| 37 | } |
| 38 | if (tablet !== undefined && tablet !== null && !isNaN(tablet)) { |
| 39 | css += `@media (min-width: 576px) and (max-width: 991.98px) { |
| 40 | ${cssSelector} |
| 41 | .vk_slider_${blockId} .vk_slider_item{ |
| 42 | height:${tablet}${unit}!important; |
| 43 | } |
| 44 | }`; |
| 45 | } |
| 46 | if (pc !== undefined && pc !== null && !isNaN(pc)) { |
| 47 | css += `@media (min-width: 992px) { |
| 48 | ${cssSelector} |
| 49 | .vk_slider_${blockId} .vk_slider_item{ |
| 50 | height:${pc}${unit}!important; |
| 51 | } |
| 52 | }`; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | return css; |
| 57 | }; |
| 58 | |
| 59 | // ズーム用の CSS は generateHeightCss と違い cssSelector を取らない。ズームは |
| 60 | // `.vk_slider_${blockId}` を起点にした固定のセレクタで完結するため、呼び出し側から |
| 61 | // 起点を渡す余地が無い(渡しても使われない)。 |
| 62 | // attributes に既定値を置かないのは、未指定で呼ばれた時に黙って空の CSS を返すより、 |
| 63 | // その場で落ちて呼び出し側の誤りが分かるほうがよいため(generateHeightCss と同じ形)。 |
| 64 | //The zoom CSS, unlike generateHeightCss, takes no cssSelector: it is always anchored on |
| 65 | //`.vk_slider_${blockId}`, so there is nothing for the caller to pass in. |
| 66 | //`attributes` has no default on purpose — being called without it should fail here rather |
| 67 | //than silently return empty CSS (same shape as generateHeightCss). |
| 68 | const generateZoomAnimationCss = (attributes) => { |
| 69 | const { |
| 70 | blockId, |
| 71 | zoomAnimation, |
| 72 | zoomInitialScale, |
| 73 | zoomFinalScale, |
| 74 | autoPlayDelay, |
| 75 | speed, |
| 76 | } = attributes; |
| 77 | |
| 78 | let css = ''; |
| 79 | |
| 80 | if (zoomAnimation) { |
| 81 | // ズーム用のセレクターは ::before 専用にして、親要素への副作用を防ぐ |
| 82 | const zoomSelector = `.vk_slider_${blockId}`; |
| 83 | |
| 84 | css += ` |
| 85 | ${zoomSelector} .vk_slider_item { |
| 86 | position: relative; |
| 87 | overflow: hidden; |
| 88 | } |
| 89 | |
| 90 | ${zoomSelector} .vk_slider_item::before { |
| 91 | content: ""; |
| 92 | position: absolute; |
| 93 | top: 0; |
| 94 | left: 0; |
| 95 | width: 100%; |
| 96 | height: 100%; |
| 97 | background-size: cover; |
| 98 | background-position: center; |
| 99 | background-image: var(--vk-slider-item-bg-image, inherit); |
| 100 | will-change: transform; |
| 101 | transform: scale(${zoomInitialScale !== undefined ? zoomInitialScale : 1}); |
| 102 | transition: transform ${(autoPlayDelay + speed + autoPlayDelay * 0.5) / 1000 || 6}s linear; |
| 103 | } |
| 104 | |
| 105 | ${zoomSelector} .vk_slider_item.swiper-slide-active::before { |
| 106 | transform: scale(${zoomFinalScale !== undefined ? zoomFinalScale : 1.25}); |
| 107 | } |
| 108 | |
| 109 | ${zoomSelector} .vk_slider_item.swiper-slide-prev::before, |
| 110 | ${zoomSelector} .vk_slider_item.swiper-slide-next::before { |
| 111 | transform: scale(${zoomInitialScale !== undefined ? zoomInitialScale : 1}); |
| 112 | } |
| 113 | `; |
| 114 | } |
| 115 | |
| 116 | return css; |
| 117 | }; |
| 118 | |
| 119 | // Add column css for editor. |
| 120 | const vkbwithClientIdClassName = createHigherOrderComponent( |
| 121 | (BlockListBlock) => { |
| 122 | return (props) => { |
| 123 | if ('vk-blocks/slider' === props.name) { |
| 124 | const heightCss = generateHeightCss(props.attributes, ''); |
| 125 | const zoomCss = generateZoomAnimationCss(props.attributes); |
| 126 | const cssTag = heightCss + zoomCss; |
| 127 | return ( |
| 128 | <> |
| 129 | <BlockListBlock {...props} /> |
| 130 | {(() => { |
| 131 | if (cssTag) { |
| 132 | return <style type="text/css">{cssTag}</style>; |
| 133 | } |
| 134 | })()} |
| 135 | </> |
| 136 | ); |
| 137 | } |
| 138 | return <BlockListBlock {...props} />; |
| 139 | }; |
| 140 | }, |
| 141 | 'vkbwithClientIdClassName' |
| 142 | ); |
| 143 | addFilter( |
| 144 | 'editor.BlockListBlock', |
| 145 | 'vk-blocks/slider', |
| 146 | vkbwithClientIdClassName |
| 147 | ); |
| 148 | |
| 149 | /** |
| 150 | * Swiperの設定をフロント側に出力するフィルター。 |
| 151 | * 0.49.8で、jSをfooterに出力するよう構造変更。CSSは継続して出力。 |
| 152 | * |
| 153 | * @param {*} el |
| 154 | * @param {*} type |
| 155 | * @param {*} attributes |
| 156 | */ |
| 157 | const addSwiperConfig = (el, type, attributes) => { |
| 158 | if ('vk-blocks/slider' === type.name) { |
| 159 | //現在実行されている deprecated� |
| 160 | の save関数のindexを取得 |
| 161 | const deprecatedFuncIndex = deprecated.findIndex( |
| 162 | (item) => item.save === type.save |
| 163 | ); |
| 164 | |
| 165 | // 最新版 |
| 166 | if (-1 === deprecatedFuncIndex) { |
| 167 | const cssSelector = `.vk_slider_${attributes.blockId},`; |
| 168 | const heightCss = generateHeightCss(attributes, cssSelector); |
| 169 | const zoomCss = generateZoomAnimationCss(attributes); |
| 170 | const cssTag = heightCss + zoomCss; |
| 171 | return ( |
| 172 | <> |
| 173 | {el} |
| 174 | {(() => { |
| 175 | if (cssTag) { |
| 176 | return <style type="text/css">{cssTag}</style>; |
| 177 | } |
| 178 | })()} |
| 179 | </> |
| 180 | ); |
| 181 | |
| 182 | //後方互換 |
| 183 | } |
| 184 | const DeprecatedHook = deprecatedHooks[deprecatedFuncIndex]; |
| 185 | return <DeprecatedHook el={el} attributes={attributes} />; |
| 186 | } |
| 187 | // Slider以外のブロック |
| 188 | return el; |
| 189 | }; |
| 190 | addFilter('blocks.getSaveElement', 'vk-blocks/slider', addSwiperConfig, 11); |
| 191 |