export-form.js
2 months ago
file.js
2 months ago
import-form.js
2 months ago
import.js
2 months ago
index.js
2 months ago
export-form.js
165 lines
| 1 | /** |
| 2 | * WordPress dependencies |
| 3 | */ |
| 4 | import { __, sprintf } from '@wordpress/i18n'; |
| 5 | import { Button, CheckboxControl } from '@wordpress/components'; |
| 6 | import { download as downloadIcon } from '@wordpress/icons'; |
| 7 | import { useState } from '@wordpress/element'; |
| 8 | import { useSelect } from '@wordpress/data'; |
| 9 | |
| 10 | /** |
| 11 | * Internal dependencies |
| 12 | */ |
| 13 | import { download } from './file'; |
| 14 | import { OPTION_DEFAULT_SETTINGS } from './index'; |
| 15 | import { STORE_NAME } from '@vkblocks/utils/store/constants'; |
| 16 | |
| 17 | export default function ExportForm(props) { |
| 18 | const { isChanged } = props; |
| 19 | const [exportOptionLists, setExportOptionLists] = useState( |
| 20 | OPTION_DEFAULT_SETTINGS |
| 21 | ); |
| 22 | |
| 23 | const storeVkBlocksOption = useSelect((select) => { |
| 24 | const { getOptions } = select(STORE_NAME); |
| 25 | return getOptions().vkBlocksOption; |
| 26 | }, []); |
| 27 | |
| 28 | async function handleExport(event) { |
| 29 | event.preventDefault(); |
| 30 | |
| 31 | // exportOptionListsからすべてのオプションプロパティー名を取得(isShow が false でないもののみ) |
| 32 | const allOptionNames = new Set(); |
| 33 | exportOptionLists.forEach((setting) => { |
| 34 | // isShowがfalseの設定はエクスポート対象から除外 |
| 35 | if (setting.isShow !== false) { |
| 36 | setting.options.forEach((option) => { |
| 37 | allOptionNames.add(option.name); |
| 38 | }); |
| 39 | } |
| 40 | }); |
| 41 | |
| 42 | // 一旦DBから� |
| 43 | �ての値をエクスポート対象の変数に� |
| 44 | �れる |
| 45 | const exportVkBlocksOptions = { ...storeVkBlocksOption }; |
| 46 | |
| 47 | // exportVkBlocksOptionsから、exportOptionListsに存在しないプロパティを削除します |
| 48 | for (const key in exportVkBlocksOptions) { |
| 49 | if (!allOptionNames.has(key)) { |
| 50 | delete exportVkBlocksOptions[key]; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // ユーザーがエクスポート対象外にしたものを削除する |
| 55 | exportOptionLists.forEach((setting) => { |
| 56 | if (!setting.isExport) { |
| 57 | setting.options.forEach( |
| 58 | (option) => delete exportVkBlocksOptions[option.name] |
| 59 | ); |
| 60 | } |
| 61 | }); |
| 62 | |
| 63 | // ライセンスキーを空文字に設定(セキュリティのため) |
| 64 | if (exportVkBlocksOptions.vk_blocks_pro_license_key !== undefined) { |
| 65 | exportVkBlocksOptions.vk_blocks_pro_license_key = ''; |
| 66 | } |
| 67 | |
| 68 | const exportContents = { |
| 69 | vkBlocksOptions: { |
| 70 | ...exportVkBlocksOptions, |
| 71 | }, |
| 72 | }; |
| 73 | const fileContent = JSON.stringify(exportContents); |
| 74 | const publishDate = new Date().toISOString().split('T')[0]; |
| 75 | const fileName = `vk-blocks-${publishDate}-export.json`; |
| 76 | download(fileName, fileContent, 'application/json'); |
| 77 | } |
| 78 | |
| 79 | // 表示されている� |
| 80 | 目のみをカウント |
| 81 | const visibleExportLists = exportOptionLists.filter((list, index) => { |
| 82 | const { isShow = true } = OPTION_DEFAULT_SETTINGS[index]; |
| 83 | return isShow; |
| 84 | }); |
| 85 | const isExportLists = visibleExportLists.filter((list) => !!list.isExport); |
| 86 | |
| 87 | let ariaChecked; |
| 88 | if (isExportLists.length === visibleExportLists.length) { |
| 89 | ariaChecked = 'true'; |
| 90 | } else if (isExportLists.length > 0) { |
| 91 | ariaChecked = 'mixed'; |
| 92 | } else { |
| 93 | ariaChecked = 'false'; |
| 94 | } |
| 95 | |
| 96 | const handleToggleAll = (value) => { |
| 97 | const copyObj = JSON.parse(JSON.stringify(exportOptionLists)); |
| 98 | copyObj.forEach((list) => (list.isExport = value)); |
| 99 | setExportOptionLists(copyObj); |
| 100 | }; |
| 101 | |
| 102 | const canExport = |
| 103 | !isChanged && exportOptionLists.some((list) => !!list.isExport) |
| 104 | ? true |
| 105 | : false; |
| 106 | |
| 107 | return ( |
| 108 | <div> |
| 109 | <h4>{__('Export', 'vk-blocks')}</h4> |
| 110 | <CheckboxControl |
| 111 | label={__('Toggle all', 'vk-blocks')} |
| 112 | checked={isExportLists.length === exportOptionLists.length} |
| 113 | onChange={handleToggleAll} |
| 114 | aria-checked={ariaChecked} |
| 115 | /> |
| 116 | {Object.keys(OPTION_DEFAULT_SETTINGS).map((key, index) => { |
| 117 | const { groupTitle, isShow = true } = |
| 118 | OPTION_DEFAULT_SETTINGS[key]; |
| 119 | const checked = exportOptionLists[index].isExport |
| 120 | ? true |
| 121 | : false; |
| 122 | const handleToggle = (value) => { |
| 123 | const copyObj = JSON.parse( |
| 124 | JSON.stringify(exportOptionLists) |
| 125 | ); |
| 126 | copyObj[index].isExport = value; |
| 127 | setExportOptionLists(copyObj); |
| 128 | }; |
| 129 | return ( |
| 130 | isShow && ( |
| 131 | <CheckboxControl |
| 132 | key={index} |
| 133 | label={sprintf( |
| 134 | // translators: Export %s |
| 135 | __('Export %s', 'vk-blocks'), |
| 136 | groupTitle |
| 137 | )} |
| 138 | checked={checked} |
| 139 | onChange={(value) => handleToggle(value, index)} |
| 140 | /> |
| 141 | ) |
| 142 | ); |
| 143 | })} |
| 144 | {isChanged && ( |
| 145 | <p> |
| 146 | {__( |
| 147 | 'It seems that the changed settings are not saved. Please save your changes.', |
| 148 | 'vk-blocks' |
| 149 | )} |
| 150 | </p> |
| 151 | )} |
| 152 | <div className="submit"> |
| 153 | <Button |
| 154 | variant="primary" |
| 155 | icon={downloadIcon} |
| 156 | onClick={handleExport} |
| 157 | disabled={!canExport} |
| 158 | > |
| 159 | {__('Export', 'vk-blocks')} |
| 160 | </Button> |
| 161 | </div> |
| 162 | </div> |
| 163 | ); |
| 164 | } |
| 165 |