|
|
@@ -6,6 +6,7 @@ import { withTranslation } from 'react-i18next';
|
|
|
import AppContainer from '../../../services/AppContainer';
|
|
|
|
|
|
import { createSubscribedElement } from '../../UnstatedUtils';
|
|
|
+import CustomizeLayoutSetting from './CustomizeLayoutSetting';
|
|
|
|
|
|
class Customize extends React.Component {
|
|
|
|
|
|
@@ -14,25 +15,22 @@ class Customize extends React.Component {
|
|
|
|
|
|
return (
|
|
|
<Fragment>
|
|
|
- {/* fieldset + legend ではなく、row + header + フォームコンポーネントに書き換える(GC244着手時に対応) */}
|
|
|
- <fieldset>
|
|
|
- <legend>{t('customize_page.Layout')}</legend>
|
|
|
- {/* レイアウトフォームの react componentをここで呼ぶ(GW-244) */}
|
|
|
- <legend>{t('customize_page.Theme')}</legend>
|
|
|
- {/* テーマフォームの react componentをここで呼ぶ(GW-245) */}
|
|
|
- <legend>{t('customize_page.Behavior')}</legend>
|
|
|
- {/* 挙動フォームの react componentをここで呼ぶ(GW-246) */}
|
|
|
- <legend>{t('customize_page.Function')}</legend>
|
|
|
- {/* 機能フォームの react componentをここで呼ぶ(GW-276) */}
|
|
|
- <legend>{t('customize_page.Code Highlight')}</legend>
|
|
|
- {/* コードハイライトフォームの react componentをここで呼ぶ(GW-277) */}
|
|
|
- <legend>{t('customize_page.custom_title')}</legend>
|
|
|
- {/* カスタムタイトルフォームの react componentをここで呼ぶ(GW-278) */}
|
|
|
- <legend>{t('customize_page.Custom CSS')}</legend>
|
|
|
- {/* カスタムCSSフォームの react componentをここで呼ぶ(GW-279) */}
|
|
|
- <legend>{t('customize_page.Custom script')}</legend>
|
|
|
- {/* カスタムスクリプトフォームの react componentをここで呼ぶ(GW-280) */}
|
|
|
- </fieldset>
|
|
|
+ <div className="row my-3">
|
|
|
+ <h2>{t('customize_page.Layout')}</h2>
|
|
|
+ <CustomizeLayoutSetting />
|
|
|
+ </div>
|
|
|
+ <legend>{t('customize_page.Behavior')}</legend>
|
|
|
+ {/* 挙動フォームの react componentをここで呼ぶ(GW-246) */}
|
|
|
+ <legend>{t('customize_page.Function')}</legend>
|
|
|
+ {/* 機能フォームの react componentをここで呼ぶ(GW-276) */}
|
|
|
+ <legend>{t('customize_page.Code Highlight')}</legend>
|
|
|
+ {/* コードハイライトフォームの react componentをここで呼ぶ(GW-277) */}
|
|
|
+ <legend>{t('customize_page.custom_title')}</legend>
|
|
|
+ {/* カスタムタイトルフォームの react componentをここで呼ぶ(GW-278) */}
|
|
|
+ <legend>{t('customize_page.Custom CSS')}</legend>
|
|
|
+ {/* カスタムCSSフォームの react componentをここで呼ぶ(GW-279) */}
|
|
|
+ <legend>{t('customize_page.Custom script')}</legend>
|
|
|
+ {/* カスタムスクリプトフォームの react componentをここで呼ぶ(GW-280) */}
|
|
|
</Fragment>
|
|
|
);
|
|
|
}
|