index.js
176 lines
| 1 | import { useState, useEffect } from 'react'; |
| 2 | import { __ } from '@wordpress/i18n'; |
| 3 | import { ToggleControl, TextControl, BaseControl } from '@wordpress/components'; |
| 4 | import { FontAwesome } from '@vkblocks/utils/font-awesome-new'; |
| 5 | import { iconLabel } from '@vkblocks/utils/icon-label'; |
| 6 | |
| 7 | /** |
| 8 | * Scroll Hint Component |
| 9 | * |
| 10 | * スクロールヒントメッセージの設定UIコンポーネント |
| 11 | * tableとgroupブロックのHorizontal Scrollで使用 |
| 12 | * |
| 13 | * @param {Object} props - Component props |
| 14 | * @param {boolean} props.showScrollMessage - スクロールメッセージを表示するか |
| 15 | * @param {string} props.scrollMessageText - スクロールメッセージのテキスト |
| 16 | * @param {string} props.scrollIconLeft - 左側のアイコンクラス |
| 17 | * @param {string} props.scrollIconRight - 右側のアイコンクラス |
| 18 | * @param {Function} props.setAttributes - 属性を設定する関数 |
| 19 | * @param {Object} props.attributes - ブロックの属性オブジェクト |
| 20 | * @return {JSX.Element} Scroll Hint Controls |
| 21 | */ |
| 22 | const ScrollHint = ({ |
| 23 | showScrollMessage, |
| 24 | scrollMessageText, |
| 25 | scrollIconLeft, |
| 26 | scrollIconRight, |
| 27 | setAttributes, |
| 28 | attributes, |
| 29 | ...props |
| 30 | }) => { |
| 31 | const [iconOutputLeft, setIconOutputLeft] = useState(scrollIconLeft !== ''); |
| 32 | const [iconOutputRight, setIconOutputRight] = useState( |
| 33 | scrollIconRight !== '' |
| 34 | ); |
| 35 | |
| 36 | // アイコンの状� |
| 37 | �が空の場合には、トグルをOFFに設定 |
| 38 | useEffect(() => { |
| 39 | if (attributes.scrollIconLeft === '') { |
| 40 | setIconOutputLeft(false); |
| 41 | } |
| 42 | if (attributes.scrollIconRight === '') { |
| 43 | setIconOutputRight(false); |
| 44 | } |
| 45 | }, [attributes.scrollIconLeft, attributes.scrollIconRight]); |
| 46 | |
| 47 | // アイコン出力の状� |
| 48 | �に応じて data-attributes を更新 |
| 49 | useEffect(() => { |
| 50 | setAttributes({ |
| 51 | iconOutputLeft, |
| 52 | iconOutputRight, |
| 53 | }); |
| 54 | }, [iconOutputLeft, iconOutputRight]); |
| 55 | |
| 56 | const handleScrollMessageToggle = (isChecked) => { |
| 57 | setAttributes({ showScrollMessage: isChecked }); |
| 58 | }; |
| 59 | |
| 60 | const handleMessageTextChange = (value) => { |
| 61 | setAttributes({ scrollMessageText: value }); |
| 62 | }; |
| 63 | |
| 64 | const handleIconChange = (position, iconClass) => { |
| 65 | if (position === 'left') { |
| 66 | setAttributes({ scrollIconLeft: iconClass }); |
| 67 | } else if (position === 'right') { |
| 68 | setAttributes({ scrollIconRight: iconClass }); |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | // ToggleControlが動いたときに状� |
| 73 | �を更新 |
| 74 | const handleIconOutputToggle = (position) => { |
| 75 | if (position === 'left') { |
| 76 | setIconOutputLeft(!iconOutputLeft); |
| 77 | |
| 78 | // トグルがONになった場合にデフォルトアイコンを設定、OFFになった場合は削除 |
| 79 | if (!iconOutputLeft && !attributes.scrollIconLeft) { |
| 80 | setAttributes({ |
| 81 | scrollIconLeft: 'fa-solid fa-caret-left', |
| 82 | }); |
| 83 | } else if (iconOutputLeft) { |
| 84 | setAttributes({ |
| 85 | scrollIconLeft: '', |
| 86 | }); |
| 87 | } |
| 88 | } else if (position === 'right') { |
| 89 | setIconOutputRight(!iconOutputRight); |
| 90 | |
| 91 | // トグルがONになった場合にデフォルトアイコンを設定、OFFになった場合は削除 |
| 92 | if (!iconOutputRight && !attributes.scrollIconRight) { |
| 93 | setAttributes({ |
| 94 | scrollIconRight: 'fa-solid fa-caret-right', |
| 95 | }); |
| 96 | } else if (iconOutputRight) { |
| 97 | setAttributes({ |
| 98 | scrollIconRight: '', |
| 99 | }); |
| 100 | } |
| 101 | } |
| 102 | }; |
| 103 | |
| 104 | return ( |
| 105 | <> |
| 106 | <ToggleControl |
| 107 | label={__('Show Scroll Message', 'vk-blocks')} |
| 108 | checked={showScrollMessage} |
| 109 | onChange={() => handleScrollMessageToggle(!showScrollMessage)} |
| 110 | /> |
| 111 | {showScrollMessage && ( |
| 112 | <> |
| 113 | <TextControl |
| 114 | label={__('Scroll Message Text', 'vk-blocks')} |
| 115 | value={scrollMessageText} |
| 116 | onChange={(value) => handleMessageTextChange(value)} // handleMessageTextChangeに正しく引数を渡す |
| 117 | /> |
| 118 | <h4>{iconLabel(__('Icon', 'vk-blocks'))}</h4> |
| 119 | <ToggleControl |
| 120 | label={__( |
| 121 | 'Display the icon before the text', |
| 122 | 'vk-blocks' |
| 123 | )} |
| 124 | checked={iconOutputLeft} |
| 125 | onChange={() => handleIconOutputToggle('left')} |
| 126 | /> |
| 127 | {iconOutputLeft && ( |
| 128 | <BaseControl |
| 129 | label={__('Before text', 'vk-blocks')} |
| 130 | id="scrollIconLeftControl" |
| 131 | > |
| 132 | <FontAwesome |
| 133 | attributeName={'scrollIconLeft'} |
| 134 | attributes={attributes} |
| 135 | setAttributes={setAttributes} |
| 136 | modeClass={true} |
| 137 | onChange={(iconClass) => |
| 138 | handleIconChange('left', iconClass) |
| 139 | } |
| 140 | {...props} |
| 141 | /> |
| 142 | </BaseControl> |
| 143 | )} |
| 144 | <ToggleControl |
| 145 | label={__( |
| 146 | 'Display the icon after the text.', |
| 147 | 'vk-blocks' |
| 148 | )} |
| 149 | checked={iconOutputRight} |
| 150 | onChange={() => handleIconOutputToggle('right')} |
| 151 | /> |
| 152 | {iconOutputRight && ( |
| 153 | <BaseControl |
| 154 | label={__('After text', 'vk-blocks')} |
| 155 | id="scrollIconRightControl" |
| 156 | > |
| 157 | <FontAwesome |
| 158 | attributeName={'scrollIconRight'} |
| 159 | attributes={attributes} |
| 160 | setAttributes={setAttributes} |
| 161 | modeClass={true} |
| 162 | onChange={(iconClass) => |
| 163 | handleIconChange('right', iconClass) |
| 164 | } |
| 165 | {...props} |
| 166 | /> |
| 167 | </BaseControl> |
| 168 | )} |
| 169 | </> |
| 170 | )} |
| 171 | </> |
| 172 | ); |
| 173 | }; |
| 174 | |
| 175 | export default ScrollHint; |
| 176 |