@configuratorware/configurator-admingui 1.27.3-beta.1 → 1.27.3-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App/Api.js +315 -0
- package/App/Config/app.js +96 -0
- package/App/Config/defaultConfig.js +122 -0
- package/App/Config/icons.js +27 -0
- package/App/Config/network.js +20 -0
- package/App/Data.js +473 -0
- package/App/Entity.js +88 -0
- package/App/ErrorBoundary.js +126 -0
- package/App/FeatureReducers.js +62 -0
- package/App/Frame.js +133 -0
- package/App/Listeners.js +56 -0
- package/App/Main.js +321 -0
- package/App/Reducers/Api/Actions.js +262 -0
- package/App/Reducers/Api/Helpers.js +109 -0
- package/App/Reducers/Api/Reducer.js +109 -0
- package/App/Reducers/Common/Form/Actions.js +17 -0
- package/App/Reducers/Common/Form/Reducer.js +64 -0
- package/App/Reducers/Common/Language/Actions.js +17 -0
- package/App/Reducers/Common/Language/Reducer.js +48 -0
- package/App/Reducers/Common/OrderList/Actions.js +96 -0
- package/App/Reducers/Common/OrderList/Listener.js +37 -0
- package/App/Reducers/Common/OrderList/Reducer.js +100 -0
- package/App/Reducers/Common/index.js +19 -0
- package/App/Reducers/Config/Actions.js +18 -0
- package/App/Reducers/Config/Reducer.js +35 -0
- package/App/Reducers/Entity/Actions.js +660 -0
- package/App/Reducers/Entity/Reducer.js +379 -0
- package/App/Reducers/Frame/Actions.js +42 -0
- package/App/Reducers/Frame/Reducer.js +120 -0
- package/App/Reducers/index.js +51 -0
- package/App/ReduxListener.js +52 -0
- package/App/ReduxPersistLoader.js +26 -0
- package/App/Routes.js +73 -0
- package/App/Selectors/Credentials/hasCredentialFor.js +11 -0
- package/App/Services/ElementRef.js +28 -0
- package/App/Services/WindowCommunication.js +73 -0
- package/App/Services/index.js +15 -0
- package/App/Store.js +94 -0
- package/App/Styles.scss +185 -0
- package/App/TestHelpers.js +131 -0
- package/App/ThemeProvider.js +74 -0
- package/App/Translations.js +147 -0
- package/App/Utils.js +41 -0
- package/App/customSetup.js +21 -0
- package/App/i18n.js +308 -0
- package/App/index.js +80 -0
- package/App/initServices.js +92 -0
- package/App/setup.js +22 -0
- package/AppContainer.js +30 -0
- package/Components/AddButton.js +28 -0
- package/Components/AppBar.js +85 -0
- package/Components/CallToActionField.js +171 -0
- package/Components/CopyPaste.js +108 -0
- package/Components/DefaultConnectedForm.js +109 -0
- package/Components/DefaultConnectedList.js +147 -0
- package/Components/DefaultConnectedScreen.js +59 -0
- package/Components/DefaultForm.js +99 -0
- package/Components/DefaultList.js +345 -0
- package/Components/DefaultScreen.js +203 -0
- package/Components/Error.js +30 -0
- package/Components/Form.js +383 -0
- package/Components/FormFragments/AutoComplete.js +308 -0
- package/Components/FormFragments/AutocompleteEntity.js +294 -0
- package/Components/FormFragments/Checkbox.js +34 -0
- package/Components/FormFragments/Chip.js +249 -0
- package/Components/FormFragments/DatePicker.js +26 -0
- package/Components/FormFragments/DateTimePicker.js +27 -0
- package/Components/FormFragments/DynSourceInput.js +210 -0
- package/Components/FormFragments/ErrorWrapper.js +21 -0
- package/Components/FormFragments/File.js +231 -0
- package/Components/FormFragments/HintText.js +31 -0
- package/Components/FormFragments/InlineAddButton.js +213 -0
- package/Components/FormFragments/InputArray.js +349 -0
- package/Components/FormFragments/InputGroup.js +62 -0
- package/Components/FormFragments/InputWithSource.js +68 -0
- package/Components/FormFragments/IntlInput.js +211 -0
- package/Components/FormFragments/Label.js +32 -0
- package/Components/FormFragments/MarkDown.js +163 -0
- package/Components/FormFragments/MonacoEditor.js +119 -0
- package/Components/FormFragments/NestedDataComponent.js +232 -0
- package/Components/FormFragments/ObjectToggle.js +87 -0
- package/Components/FormFragments/RadioGroup.js +42 -0
- package/Components/FormFragments/Select.js +60 -0
- package/Components/FormFragments/SetInput.js +164 -0
- package/Components/FormFragments/SimpleNestedData.js +99 -0
- package/Components/FormFragments/SimpleTable.js +285 -0
- package/Components/FormFragments/SimpleTextEditor.js +43 -0
- package/Components/FormFragments/Styles.scss +119 -0
- package/Components/FormFragments/Tabs.js +307 -0
- package/Components/FormFragments/Text.js +43 -0
- package/Components/FormFragments/TimePicker.js +27 -0
- package/Components/FormFragments/Toggle.js +94 -0
- package/Components/FormFragments/TwoSideSelect.js +249 -0
- package/Components/FormFragments/Value.js +48 -0
- package/Components/FormFragments/index.js +138 -0
- package/Components/FormFragments/styles.js +38 -0
- package/Components/FormHooks/useDataSchema.js +68 -0
- package/Components/GeneralFragments/Box.js +25 -0
- package/Components/GeneralFragments/ConfigurationEditor.js +200 -0
- package/Components/GeneralFragments/ConfiguratorOverlay.js +111 -0
- package/Components/GeneralFragments/Content.js +25 -0
- package/Components/GeneralFragments/Headline.js +32 -0
- package/Components/GeneralFragments/Image.js +94 -0
- package/Components/GeneralFragments/MiniPopup.js +202 -0
- package/Components/GeneralFragments/Styles.scss +8 -0
- package/Components/GeneralFragments/index.js +39 -0
- package/Components/InputHelpers.js +17 -0
- package/Components/Join.js +28 -0
- package/Components/LicenseInfo.js +136 -0
- package/Components/List.js +413 -0
- package/Components/ListColumnFilter.js +258 -0
- package/Components/LocaleSwitch.js +56 -0
- package/Components/LocalizedPriceTextField.js +83 -0
- package/Components/LocalizedPriceValue.js +38 -0
- package/Components/Menu.js +202 -0
- package/Components/ModalContainer.js +128 -0
- package/Components/OrderList.js +248 -0
- package/Components/OverlayContainer.js +34 -0
- package/Components/Pagination.js +175 -0
- package/Components/ProfileButton.js +65 -0
- package/Components/SearchBar.js +183 -0
- package/Components/SplitContainer.js +53 -0
- package/Components/Styles.scss +114 -0
- package/Components/TranslateComponent.js +231 -0
- package/Components/TranslationFinder.js +72 -0
- package/Components/Translations.js +89 -0
- package/Components/ValidatorCallbackProvider.js +102 -0
- package/Components/VersionBadge.js +44 -0
- package/Components/VersionUpdateChip.js +52 -0
- package/Components/withLoadAction.js +41 -0
- package/Components/withTranslationFinder.js +47 -0
- package/README.md +5 -6
- package/Screens/ApiKeys/Containers/Edit.js +162 -0
- package/Screens/ApiKeys/Containers/List.js +37 -0
- package/Screens/ApiKeys/Reducers/Actions.js +44 -0
- package/Screens/ApiKeys/Reducers/Reducer.js +61 -0
- package/Screens/ApiKeys/Screen.js +24 -0
- package/Screens/ApiKeys/Styles.scss +3 -0
- package/Screens/ApiKeys/Translations.js +24 -0
- package/Screens/ApiKeys/index.js +21 -0
- package/Screens/Assemblypointeditor/Components/AssemblypointTable.js +161 -0
- package/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +813 -0
- package/Screens/Assemblypointeditor/Components/Styles.scss +58 -0
- package/Screens/Assemblypointeditor/Components/fabric.min.js +1 -0
- package/Screens/Assemblypointeditor/Containers/Edit.js +77 -0
- package/Screens/Assemblypointeditor/Containers/List.js +53 -0
- package/Screens/Assemblypointeditor/Reducers/Actions.js +72 -0
- package/Screens/Assemblypointeditor/Reducers/Reducer.js +157 -0
- package/Screens/Assemblypointeditor/Screen.js +52 -0
- package/Screens/Assemblypointeditor/Styles.scss +38 -0
- package/Screens/Assemblypointeditor/Translations.js +10 -0
- package/Screens/Assemblypointeditor/index.js +20 -0
- package/Screens/Attribute/Containers/Edit.js +46 -0
- package/Screens/Attribute/Containers/List.js +41 -0
- package/Screens/Attribute/Reducers/Actions.js +42 -0
- package/Screens/Attribute/Reducers/Reducer.js +44 -0
- package/Screens/Attribute/Screen.js +24 -0
- package/Screens/Attribute/Styles.scss +0 -0
- package/Screens/Attribute/Translations.js +22 -0
- package/Screens/Attribute/__tests/AttributeScreen.js +368 -0
- package/Screens/Attribute/index.js +20 -0
- package/Screens/AttributeValue/Containers/Edit.js +49 -0
- package/Screens/AttributeValue/Containers/List.js +48 -0
- package/Screens/AttributeValue/Reducers/Actions.js +21 -0
- package/Screens/AttributeValue/Reducers/Reducer.js +38 -0
- package/Screens/AttributeValue/Screen.js +34 -0
- package/Screens/AttributeValue/Styles.scss +0 -0
- package/Screens/AttributeValue/Translations.js +17 -0
- package/Screens/AttributeValue/__tests/AttributeValueScreen.js +346 -0
- package/Screens/AttributeValue/index.js +20 -0
- package/Screens/ChangePassword/Reducers/Actions.js +69 -0
- package/Screens/ChangePassword/Reducers/Reducer.js +39 -0
- package/Screens/ChangePassword/Screen.js +212 -0
- package/Screens/ChangePassword/Translations.js +22 -0
- package/Screens/ChangePassword/index.js +20 -0
- package/Screens/Channel/Containers/Edit.js +58 -0
- package/Screens/Channel/Containers/List.js +33 -0
- package/Screens/Channel/Reducers/Actions.js +19 -0
- package/Screens/Channel/Reducers/Reducer.js +59 -0
- package/Screens/Channel/Screen.js +28 -0
- package/Screens/Channel/Translations.js +18 -0
- package/Screens/Channel/__tests/ChannelScreen.js +363 -0
- package/Screens/Channel/index.js +20 -0
- package/Screens/Client/Components/ColorTextField.js +90 -0
- package/Screens/Client/Components/PdfMarkdownField.js +171 -0
- package/Screens/Client/Components/TextFields.js +163 -0
- package/Screens/Client/Containers/Edit.js +190 -0
- package/Screens/Client/Containers/List.js +44 -0
- package/Screens/Client/Reducers/Actions.js +118 -0
- package/Screens/Client/Reducers/Reducer.js +149 -0
- package/Screens/Client/Screen.js +34 -0
- package/Screens/Client/Styles.scss +3 -0
- package/Screens/Client/Translations.js +49 -0
- package/Screens/Client/index.js +20 -0
- package/Screens/ColorPalettes/Components/DefaultColorSwitch.js +126 -0
- package/Screens/ColorPalettes/Containers/Edit.js +156 -0
- package/Screens/ColorPalettes/Containers/List.js +57 -0
- package/Screens/ColorPalettes/Reducers/Actions.js +21 -0
- package/Screens/ColorPalettes/Reducers/Reducer.js +61 -0
- package/Screens/ColorPalettes/Screen.js +34 -0
- package/Screens/ColorPalettes/Styles.scss +0 -0
- package/Screens/ColorPalettes/Translations.js +24 -0
- package/Screens/ColorPalettes/index.js +20 -0
- package/Screens/ConfigurationTypeEditor/Containers/Edit.js +83 -0
- package/Screens/ConfigurationTypeEditor/Containers/List.js +64 -0
- package/Screens/ConfigurationTypeEditor/Reducers/Actions.js +137 -0
- package/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +122 -0
- package/Screens/ConfigurationTypeEditor/Screen.js +150 -0
- package/Screens/ConfigurationTypeEditor/Styles.scss +0 -0
- package/Screens/ConfigurationTypeEditor/Translations.js +14 -0
- package/Screens/ConfigurationTypeEditor/index.js +3 -0
- package/Screens/ConfigurationVariants/Containers/Edit.js +127 -0
- package/Screens/ConfigurationVariants/Containers/List.js +33 -0
- package/Screens/ConfigurationVariants/Containers/Styles.scss +13 -0
- package/Screens/ConfigurationVariants/Reducers/Actions.js +25 -0
- package/Screens/ConfigurationVariants/Reducers/Reducer.js +60 -0
- package/Screens/ConfigurationVariants/Screen.js +28 -0
- package/Screens/ConfigurationVariants/Translations.js +31 -0
- package/Screens/ConfigurationVariants/index.js +20 -0
- package/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +81 -0
- package/Screens/ConfigurationWorkflowStatus/Containers/List.js +259 -0
- package/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +119 -0
- package/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +103 -0
- package/Screens/ConfigurationWorkflowStatus/Screen.js +100 -0
- package/Screens/ConfigurationWorkflowStatus/Styles.scss +0 -0
- package/Screens/ConfigurationWorkflowStatus/Translations.js +43 -0
- package/Screens/ConfigurationWorkflowStatus/index.js +22 -0
- package/Screens/ConfigurationWorkflowStatus/initServices.js +12 -0
- package/Screens/Creator/Components/BaseConfigurationEditor.js +241 -0
- package/Screens/Creator/Components/CheckData/ApiCalls.js +43 -0
- package/Screens/Creator/Components/CheckData/CheckData.js +332 -0
- package/Screens/Creator/Components/CheckData/Constants.js +58 -0
- package/Screens/Creator/Components/CheckData/Translations.js +34 -0
- package/Screens/Creator/Components/ComponentEditor.js +245 -0
- package/Screens/Creator/Components/ConfiguratorQuickView.js +102 -0
- package/Screens/Creator/Components/OptionPriceEditor.js +167 -0
- package/Screens/Creator/Components/OptionclassificationEditor.js +572 -0
- package/Screens/Creator/Components/Rules/Containers/Edit.js +276 -0
- package/Screens/Creator/Components/Rules/Containers/List.js +45 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +88 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +88 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +84 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +84 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +76 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +78 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +78 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +88 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +88 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +78 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +240 -0
- package/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +42 -0
- package/Screens/Creator/Components/Rules/Styles.scss +38 -0
- package/Screens/Creator/Components/Rules/Translations.js +178 -0
- package/Screens/Creator/Components/Rules/index.js +80 -0
- package/Screens/Creator/Components/ShowPreviewErrorDialog.js +59 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +43 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +68 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +144 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +125 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +242 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +118 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +102 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +82 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +1098 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/dev.js +385 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/component_1.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_1.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3_fullsize.jpg +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_1.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_3.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_1.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_3.png +0 -0
- package/Screens/Creator/Components/VisualizationAndMediaData/index.js +15 -0
- package/Screens/Creator/Containers/Edit.js +525 -0
- package/Screens/Creator/Containers/List.js +48 -0
- package/Screens/Creator/Reducers/Actions.js +35 -0
- package/Screens/Creator/Reducers/ConfigurationActions.js +443 -0
- package/Screens/Creator/Reducers/ConfigurationReducer.js +338 -0
- package/Screens/Creator/Reducers/CreatorReducer.js +42 -0
- package/Screens/Creator/Reducers/Rules/Actions.js +134 -0
- package/Screens/Creator/Reducers/Rules/Reducer.js +290 -0
- package/Screens/Creator/Screen.js +30 -0
- package/Screens/Creator/Translations.js +136 -0
- package/Screens/Creator/index.js +25 -0
- package/Screens/CurrentClient/Containers/Edit.js +128 -0
- package/Screens/CurrentClient/Reducers/Actions.js +42 -0
- package/Screens/CurrentClient/Reducers/Reducer.js +95 -0
- package/Screens/CurrentClient/Screen.js +15 -0
- package/Screens/CurrentClient/Translations.js +10 -0
- package/Screens/CurrentClient/index.js +20 -0
- package/Screens/Dashboard/Screen.js +50 -0
- package/Screens/Dashboard/Styles.scss +3 -0
- package/Screens/Dashboard/Translations.js +14 -0
- package/Screens/DefaultClient/Containers/Edit.js +141 -0
- package/Screens/DefaultClient/Reducers/Actions.js +42 -0
- package/Screens/DefaultClient/Reducers/Reducer.js +108 -0
- package/Screens/DefaultClient/Screen.js +15 -0
- package/Screens/DefaultClient/Translations.js +10 -0
- package/Screens/DefaultClient/index.js +20 -0
- package/Screens/Demo/Screen.js +164 -0
- package/Screens/Demo/Styles.scss +3 -0
- package/Screens/Demo/index.js +15 -0
- package/Screens/DesignProductionMethods/Containers/Edit.js +292 -0
- package/Screens/DesignProductionMethods/Containers/List.js +53 -0
- package/Screens/DesignProductionMethods/Reducers/Actions.js +29 -0
- package/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +160 -0
- package/Screens/DesignProductionMethods/Screen.js +30 -0
- package/Screens/DesignProductionMethods/Translations.js +74 -0
- package/Screens/DesignProductionMethods/index.js +20 -0
- package/Screens/DesignTemplateEditor/Containers/List.js +78 -0
- package/Screens/DesignTemplateEditor/Reducers/Actions.js +16 -0
- package/Screens/DesignTemplateEditor/Reducers/Reducer.js +22 -0
- package/Screens/DesignTemplateEditor/Screen.js +22 -0
- package/Screens/DesignTemplateEditor/Translations.js +16 -0
- package/Screens/DesignTemplateEditor/index.js +20 -0
- package/Screens/Designer/Components/ConfiguratorQuickView.js +102 -0
- package/Screens/Designer/Components/DesignDataTransfer.js +426 -0
- package/Screens/Designer/Components/TemplateDefaultList.js +423 -0
- package/Screens/Designer/Components/TemplateList.js +316 -0
- package/Screens/Designer/Containers/Edit.js +346 -0
- package/Screens/Designer/Containers/List.js +46 -0
- package/Screens/Designer/Containers/TemplateList.js +45 -0
- package/Screens/Designer/Reducers/Actions.js +41 -0
- package/Screens/Designer/Reducers/DesignerReducer.js +46 -0
- package/Screens/Designer/Screen.js +28 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +451 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +260 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +72 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +133 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +330 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/masks/circle.svg +4 -0
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +115 -0
- package/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +89 -0
- package/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +174 -0
- package/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +1100 -0
- package/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +50 -0
- package/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +106 -0
- package/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +318 -0
- package/Screens/Designer/SubScreens/DesignAreas/Screen.js +34 -0
- package/Screens/Designer/SubScreens/DesignAreas/Styles.scss +0 -0
- package/Screens/Designer/SubScreens/DesignAreas/Translations.js +122 -0
- package/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +18 -0
- package/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +22 -0
- package/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +12 -0
- package/Screens/Designer/SubScreens/DesignAreas/index.js +18 -0
- package/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +216 -0
- package/Screens/Designer/SubScreens/Designviews/Containers/List.js +50 -0
- package/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +260 -0
- package/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +167 -0
- package/Screens/Designer/SubScreens/Designviews/Screen.js +32 -0
- package/Screens/Designer/SubScreens/Designviews/Translations.js +16 -0
- package/Screens/Designer/SubScreens/Designviews/index.js +18 -0
- package/Screens/Designer/SubScreens/Visualization/ApiCalls.js +77 -0
- package/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +291 -0
- package/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +305 -0
- package/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +78 -0
- package/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +138 -0
- package/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +802 -0
- package/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +166 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/logo.svg +120 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +12 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +160 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +995 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +174 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +77 -0
- package/Screens/Designer/SubScreens/Visualization/Containers/List.js +192 -0
- package/Screens/Designer/SubScreens/Visualization/Screen.js +49 -0
- package/Screens/Designer/SubScreens/Visualization/Translations.js +80 -0
- package/Screens/Designer/SubScreens/Visualization/index.js +13 -0
- package/Screens/Designer/Translations.js +49 -0
- package/Screens/Designer/index.js +21 -0
- package/Screens/DesignerGlobalItemPrices/Containers/Edit.js +131 -0
- package/Screens/DesignerGlobalItemPrices/Containers/List.js +45 -0
- package/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +32 -0
- package/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +94 -0
- package/Screens/DesignerGlobalItemPrices/Screen.js +32 -0
- package/Screens/DesignerGlobalItemPrices/Translations.js +24 -0
- package/Screens/DesignerGlobalItemPrices/index.js +21 -0
- package/Screens/Font/Containers/Edit.js +66 -0
- package/Screens/Font/Containers/List.js +63 -0
- package/Screens/Font/Reducers/Actions.js +101 -0
- package/Screens/Font/Reducers/Reducer.js +61 -0
- package/Screens/Font/Screen.js +34 -0
- package/Screens/Font/Styles.scss +0 -0
- package/Screens/Font/Translations.js +16 -0
- package/Screens/Font/index.js +20 -0
- package/Screens/Group/Containers/Edit.js +49 -0
- package/Screens/Group/Containers/List.js +39 -0
- package/Screens/Group/Reducers/Actions.js +24 -0
- package/Screens/Group/Reducers/Reducer.js +38 -0
- package/Screens/Group/Screen.js +34 -0
- package/Screens/Group/Styles.scss +0 -0
- package/Screens/Group/Translations.js +18 -0
- package/Screens/Group/index.js +21 -0
- package/Screens/GroupEntry/Containers/Edit.js +62 -0
- package/Screens/GroupEntry/Containers/List.js +39 -0
- package/Screens/GroupEntry/Reducers/Actions.js +24 -0
- package/Screens/GroupEntry/Reducers/Reducer.js +38 -0
- package/Screens/GroupEntry/Screen.js +34 -0
- package/Screens/GroupEntry/Styles.scss +0 -0
- package/Screens/GroupEntry/Translations.js +16 -0
- package/Screens/GroupEntry/index.js +21 -0
- package/Screens/ImageGallery/Containers/Edit.js +125 -0
- package/Screens/ImageGallery/Containers/List.js +297 -0
- package/Screens/ImageGallery/ImageTags/Actions.js +48 -0
- package/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +38 -0
- package/Screens/ImageGallery/ImageTags/Editor.js +68 -0
- package/Screens/ImageGallery/ImageTags/Reducer.js +64 -0
- package/Screens/ImageGallery/ImageTags/TagsActions.js +42 -0
- package/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +92 -0
- package/Screens/ImageGallery/Reducers/Actions.js +134 -0
- package/Screens/ImageGallery/Reducers/Reducer.js +69 -0
- package/Screens/ImageGallery/Screen.js +34 -0
- package/Screens/ImageGallery/Styles.scss +37 -0
- package/Screens/ImageGallery/Translations.js +41 -0
- package/Screens/ImageGallery/index.js +20 -0
- package/Screens/Inspirations/Containers/Edit.js +163 -0
- package/Screens/Inspirations/Containers/InspirationsSubscreen.js +34 -0
- package/Screens/Inspirations/Containers/ItemInspirationsList.js +48 -0
- package/Screens/Inspirations/Containers/List.js +48 -0
- package/Screens/Inspirations/Reducers/Actions.js +159 -0
- package/Screens/Inspirations/Reducers/ItemInspirationsActions.js +25 -0
- package/Screens/Inspirations/Reducers/Reducer.js +78 -0
- package/Screens/Inspirations/Screen.js +108 -0
- package/Screens/Inspirations/Translations.js +27 -0
- package/Screens/Inspirations/index.js +21 -0
- package/Screens/Item/ApiCalls.js +45 -0
- package/Screens/Item/Components/AttributeEditorPopup.js +117 -0
- package/Screens/Item/Components/ConfiguratorQuickView.js +115 -0
- package/Screens/Item/Components/ListItemStatusEditor.js +216 -0
- package/Screens/Item/Components/Styles.scss +327 -0
- package/Screens/Item/Components/Variants/VariantsAutocomplete.js +418 -0
- package/Screens/Item/Components/Variants/VariantsEditor.js +715 -0
- package/Screens/Item/Components/Variants/VariantsEditorDialog.js +210 -0
- package/Screens/Item/Components/Variants/VariantsEditorPopup.js +117 -0
- package/Screens/Item/Components/Variants/VariantsSelection.js +184 -0
- package/Screens/Item/Components/Variants/VariantsSortFilter.js +230 -0
- package/Screens/Item/Containers/Edit.js +600 -0
- package/Screens/Item/Containers/List.js +118 -0
- package/Screens/Item/Containers/Styles.scss +92 -0
- package/Screens/Item/DataStructures/Attributes/Actions.js +54 -0
- package/Screens/Item/DataStructures/Attributes/Editor.js +127 -0
- package/Screens/Item/DataStructures/Attributes/Reducer.js +37 -0
- package/Screens/Item/Reducers/Actions.js +97 -0
- package/Screens/Item/Reducers/ItemReducer.js +102 -0
- package/Screens/Item/Reducers/Variant/Actions.js +24 -0
- package/Screens/Item/Reducers/Variant/Reducer.js +118 -0
- package/Screens/Item/Screen.js +28 -0
- package/Screens/Item/Translations.js +136 -0
- package/Screens/Item/index.js +22 -0
- package/Screens/License/Reducers/Actions.js +60 -0
- package/Screens/License/Reducers/Reducer.js +47 -0
- package/Screens/License/Screen.js +128 -0
- package/Screens/License/Styles.scss +35 -0
- package/Screens/License/Translations.js +18 -0
- package/Screens/License/index.js +21 -0
- package/Screens/Login/Reducers/Actions.js +102 -0
- package/Screens/Login/Reducers/Listener.js +23 -0
- package/Screens/Login/Reducers/Reducer.js +96 -0
- package/Screens/Login/Screen.js +200 -0
- package/Screens/Login/Styles.scss +0 -0
- package/Screens/Login/Translations.js +10 -0
- package/Screens/Login/__tests/LoginScreen.js +242 -0
- package/Screens/Option/Containers/Edit.js +139 -0
- package/Screens/Option/Containers/List.js +66 -0
- package/Screens/Option/Reducers/Actions.js +25 -0
- package/Screens/Option/Reducers/Reducer.js +127 -0
- package/Screens/Option/Screen.js +28 -0
- package/Screens/Option/Translations.js +23 -0
- package/Screens/Option/index.js +20 -0
- package/Screens/OptionPools/Containers/Edit.js +105 -0
- package/Screens/OptionPools/Containers/List.js +33 -0
- package/Screens/OptionPools/Reducers/Actions.js +25 -0
- package/Screens/OptionPools/Reducers/Reducer.js +61 -0
- package/Screens/OptionPools/Screen.js +28 -0
- package/Screens/OptionPools/Translations.js +22 -0
- package/Screens/OptionPools/index.js +20 -0
- package/Screens/Optionclassification/Containers/Edit.js +92 -0
- package/Screens/Optionclassification/Containers/List.js +63 -0
- package/Screens/Optionclassification/Reducers/Actions.js +25 -0
- package/Screens/Optionclassification/Reducers/Reducer.js +64 -0
- package/Screens/Optionclassification/Screen.js +34 -0
- package/Screens/Optionclassification/Styles.scss +0 -0
- package/Screens/Optionclassification/Translations.js +20 -0
- package/Screens/Optionclassification/index.js +20 -0
- package/Screens/PriceTypes/Containers/Edit.js +124 -0
- package/Screens/PriceTypes/Containers/List.js +67 -0
- package/Screens/PriceTypes/Reducers/Actions.js +21 -0
- package/Screens/PriceTypes/Reducers/Reducer.js +83 -0
- package/Screens/PriceTypes/Screen.js +32 -0
- package/Screens/PriceTypes/Translations.js +36 -0
- package/Screens/PriceTypes/index.js +20 -0
- package/Screens/ProductionView/Components/ConfigurationDataSheet.js +199 -0
- package/Screens/ProductionView/Containers/Edit.js +61 -0
- package/Screens/ProductionView/Containers/List.js +124 -0
- package/Screens/ProductionView/Reducers/Actions.js +34 -0
- package/Screens/ProductionView/Reducers/Reducer.js +40 -0
- package/Screens/ProductionView/Screen.js +42 -0
- package/Screens/ProductionView/Styles.scss +59 -0
- package/Screens/ProductionView/Translations.js +26 -0
- package/Screens/ProductionView/index.js +20 -0
- package/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +280 -0
- package/Screens/ReceiveOfferRequests/Containers/Edit.js +65 -0
- package/Screens/ReceiveOfferRequests/Containers/List.js +117 -0
- package/Screens/ReceiveOfferRequests/Reducers/Actions.js +41 -0
- package/Screens/ReceiveOfferRequests/Reducers/Reducer.js +44 -0
- package/Screens/ReceiveOfferRequests/Screen.js +42 -0
- package/Screens/ReceiveOfferRequests/index.js +21 -0
- package/Screens/Roles/Containers/Edit.js +56 -0
- package/Screens/Roles/Containers/List.js +39 -0
- package/Screens/Roles/Reducers/Actions.js +29 -0
- package/Screens/Roles/Reducers/Reducer.js +46 -0
- package/Screens/Roles/Screen.js +32 -0
- package/Screens/Roles/Translations.js +18 -0
- package/Screens/Roles/index.js +20 -0
- package/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +300 -0
- package/Screens/Savedconfigurations/Containers/Edit.js +65 -0
- package/Screens/Savedconfigurations/Containers/List.js +210 -0
- package/Screens/Savedconfigurations/Reducers/Actions.js +28 -0
- package/Screens/Savedconfigurations/Reducers/Reducer.js +37 -0
- package/Screens/Savedconfigurations/Screen.js +42 -0
- package/Screens/Savedconfigurations/Styles.scss +38 -0
- package/Screens/Savedconfigurations/Translations.js +63 -0
- package/Screens/Savedconfigurations/index.js +20 -0
- package/Screens/Setting/Containers/Edit.js +171 -0
- package/Screens/Setting/Reducers/Actions.js +69 -0
- package/Screens/Setting/Reducers/Reducer.js +48 -0
- package/Screens/Setting/Screen.js +22 -0
- package/Screens/Setting/Styles.scss +0 -0
- package/Screens/Setting/Translations.js +52 -0
- package/Screens/Setting/index.js +20 -0
- package/Screens/SoftwareUpdates/Reducers/Actions.js +23 -0
- package/Screens/SoftwareUpdates/Reducers/Reducer.js +48 -0
- package/Screens/SoftwareUpdates/Screen.js +103 -0
- package/Screens/SoftwareUpdates/Translations.js +24 -0
- package/Screens/SoftwareUpdates/index.js +21 -0
- package/Screens/Tag/Containers/Edit.js +34 -0
- package/Screens/Tag/Containers/List.js +43 -0
- package/Screens/Tag/Reducers/Actions.js +42 -0
- package/Screens/Tag/Reducers/Reducer.js +38 -0
- package/Screens/Tag/Screen.js +24 -0
- package/Screens/Tag/Styles.scss +0 -0
- package/Screens/Tag/Translations.js +18 -0
- package/Screens/Tag/index.js +20 -0
- package/Screens/TrackingCodes/Containers/Edit.js +60 -0
- package/Screens/TrackingCodes/Containers/List.js +42 -0
- package/Screens/TrackingCodes/Reducers/Actions.js +65 -0
- package/Screens/TrackingCodes/Reducers/Reducer.js +75 -0
- package/Screens/TrackingCodes/Screen.js +28 -0
- package/Screens/TrackingCodes/Translations.js +20 -0
- package/Screens/TrackingCodes/index.js +21 -0
- package/Screens/TranslationFileHandling/Containers/Edit.js +303 -0
- package/Screens/TranslationFileHandling/Containers/List.js +38 -0
- package/Screens/TranslationFileHandling/Reducers/Actions.js +21 -0
- package/Screens/TranslationFileHandling/Reducers/Reducer.js +55 -0
- package/Screens/TranslationFileHandling/Screen.js +32 -0
- package/Screens/TranslationFileHandling/Translations.js +24 -0
- package/Screens/TranslationFileHandling/index.js +21 -0
- package/Screens/User/Containers/Edit.js +58 -0
- package/Screens/User/Containers/List.js +42 -0
- package/Screens/User/Reducers/Actions.js +63 -0
- package/Screens/User/Reducers/Reducer.js +63 -0
- package/Screens/User/Screen.js +24 -0
- package/Screens/User/Styles.scss +3 -0
- package/Screens/User/Translations.js +22 -0
- package/Screens/User/__tests/UserScreen.js +406 -0
- package/Screens/User/index.js +20 -0
- package/Screens/index.js +228 -0
- package/UIComponents/AppBar.js +13 -0
- package/UIComponents/AutoComplete.js +311 -0
- package/UIComponents/Button.js +13 -0
- package/UIComponents/ButtonBase.js +13 -0
- package/UIComponents/Checkbox.js +13 -0
- package/UIComponents/Chip.js +13 -0
- package/UIComponents/ChipInput.js +300 -0
- package/UIComponents/CircularProgress.js +13 -0
- package/UIComponents/ClickAwayListener.js +13 -0
- package/UIComponents/Collapse.js +13 -0
- package/UIComponents/DatePicker.js +63 -0
- package/UIComponents/DateTimePicker.js +63 -0
- package/UIComponents/Dialog.js +75 -0
- package/UIComponents/Drawer.js +13 -0
- package/UIComponents/FlatButton.js +52 -0
- package/UIComponents/FloatingActionButton.js +23 -0
- package/UIComponents/FontIcon.js +13 -0
- package/UIComponents/FormControl.js +13 -0
- package/UIComponents/FormControlLabel.js +13 -0
- package/UIComponents/Grow.js +13 -0
- package/UIComponents/IconButton.js +13 -0
- package/UIComponents/IconMenu.js +204 -0
- package/UIComponents/InlineHelp/index.js +109 -0
- package/UIComponents/Input.js +13 -0
- package/UIComponents/InputAdornment.js +13 -0
- package/UIComponents/InputLabel.js +13 -0
- package/UIComponents/LinearProgress.js +13 -0
- package/UIComponents/Link.js +44 -0
- package/UIComponents/List.js +13 -0
- package/UIComponents/ListItem.js +13 -0
- package/UIComponents/ListItemIcon.js +13 -0
- package/UIComponents/ListItemText.js +13 -0
- package/UIComponents/Menu.js +13 -0
- package/UIComponents/MenuItem.js +13 -0
- package/UIComponents/MenuList.js +13 -0
- package/UIComponents/Pagination.js +170 -0
- package/UIComponents/Paper.js +13 -0
- package/UIComponents/Popper.js +13 -0
- package/UIComponents/RadioButton/RadioButton.js +13 -0
- package/UIComponents/RadioButton/RadioGroup.js +13 -0
- package/UIComponents/RadioButton/index.js +23 -0
- package/UIComponents/RaisedButton.js +49 -0
- package/UIComponents/SelectField.js +123 -0
- package/UIComponents/Snackbar.js +13 -0
- package/UIComponents/Table/Table.js +208 -0
- package/UIComponents/Table/TableBody.js +119 -0
- package/UIComponents/Table/TableCell.js +13 -0
- package/UIComponents/Table/TableFooter.js +13 -0
- package/UIComponents/Table/TableHead.js +108 -0
- package/UIComponents/Table/TableHeadColumn.js +13 -0
- package/UIComponents/Table/TableRow.js +74 -0
- package/UIComponents/Table/TableRowColumn.js +13 -0
- package/UIComponents/Table/index.js +63 -0
- package/UIComponents/TableSortLabel.js +13 -0
- package/UIComponents/Tabs/Tab.js +13 -0
- package/UIComponents/Tabs/Tabs.js +13 -0
- package/UIComponents/Tabs/index.js +23 -0
- package/UIComponents/TextField.js +13 -0
- package/UIComponents/TimePicker.js +67 -0
- package/UIComponents/Toggle.js +13 -0
- package/UIComponents/Toolbar.js +13 -0
- package/UIComponents/Tooltip.js +19 -0
- package/UIComponents/Typography.js +13 -0
- package/UIComponents/icons/AccountCircleIcon.js +13 -0
- package/UIComponents/icons/AddCircleOutlineIcon.js +13 -0
- package/UIComponents/icons/AddIcon.js +13 -0
- package/UIComponents/icons/ArrowBackIcon.js +13 -0
- package/UIComponents/icons/CheckmarkIcon.js +13 -0
- package/UIComponents/icons/CloseIcon.js +13 -0
- package/UIComponents/icons/DeleteForeverIcon.js +13 -0
- package/UIComponents/icons/DeleteIcon.js +13 -0
- package/UIComponents/icons/ErrorIcon.js +13 -0
- package/UIComponents/icons/ExpandLessIcon.js +13 -0
- package/UIComponents/icons/ExpandMoreIcon.js +13 -0
- package/UIComponents/icons/FolderIcon.js +13 -0
- package/UIComponents/icons/ForwardIcon.js +13 -0
- package/UIComponents/icons/InfoIcon.js +13 -0
- package/UIComponents/icons/InfoOutlineIcon.js +13 -0
- package/UIComponents/icons/LanguageIcon.js +13 -0
- package/UIComponents/icons/LaunchIcon.js +13 -0
- package/UIComponents/icons/MenuIcon.js +13 -0
- package/UIComponents/icons/PriceIcon.js +13 -0
- package/UIComponents/icons/ReorderIcon.js +13 -0
- package/UIComponents/icons/SearchIcon.js +13 -0
- package/UIComponents/icons/SettingsIcon.js +13 -0
- package/UIComponents/icons/SortIcon.js +13 -0
- package/UIComponents/icons/TranslateIcon.js +13 -0
- package/UIComponents/icons/UpdateIcon.js +13 -0
- package/UIComponents/icons/ViewListIcon.js +13 -0
- package/UIComponents/icons/ZoomResetIcon.js +13 -0
- package/Utils/Async/Deferred.js +139 -0
- package/Utils/Async/newestRequest.js +55 -0
- package/Utils/Decorators/Observable.js +112 -0
- package/Utils/Dev/RequestApiToken.js +44 -0
- package/Utils/Dev/withStateProps.js +43 -0
- package/Utils/Error/createError.js +34 -0
- package/Utils/Events/pointerEvent.js +114 -0
- package/Utils/FunDraw/createMask.js +126 -0
- package/Utils/FunDraw/funDraw.js +561 -0
- package/Utils/FunDraw/movableObject.js +207 -0
- package/Utils/Function/sendMessage.js +22 -0
- package/Utils/HOCs/AsyncProps.js +123 -0
- package/Utils/HOCs/LocalState.js +107 -0
- package/Utils/HOCs/RemappedProps.js +32 -0
- package/Utils/Request/lazyFetch.js +109 -0
- package/Utils/Request/pathParams.js +21 -0
- package/Utils/Test/provideStore.js +30 -0
- package/Utils/Test/wrapperSelectors.js +22 -0
- package/default.js +19 -0
- package/dev.js +61 -0
- package/index.js +18 -0
- package/package.json +39 -102
- package/scripts/getDefaultWebpackConfig.js +1 -1
- package/src/App/Main.js +1 -2
- package/src/App/Reducers/Entity/Actions.js +4 -3
- package/src/App/Styles.scss +185 -185
- package/src/App/Translations.js +10 -0
- package/src/Components/CallToActionField.js +95 -0
- package/src/Components/DefaultList.js +10 -1
- package/src/Components/Form.js +4 -3
- package/src/Components/FormFragments/File.js +4 -2
- package/src/Components/FormFragments/InputGroup.js +18 -5
- package/src/Components/FormFragments/IntlInput.js +2 -5
- package/src/Components/FormFragments/Select.js +1 -0
- package/src/Components/List.js +28 -33
- package/src/Components/Menu.js +9 -1
- package/src/Components/Styles.scss +113 -113
- package/src/Components/Translations.js +4 -2
- package/src/Screens/Assemblypointeditor/Components/Styles.scss +58 -58
- package/src/Screens/Assemblypointeditor/Styles.scss +37 -37
- package/src/Screens/Client/Components/PdfMarkdownField.js +128 -0
- package/src/Screens/Client/Containers/Edit.js +44 -32
- package/src/Screens/Client/Reducers/Reducer.js +15 -7
- package/src/Screens/Client/Styles.scss +3 -0
- package/src/Screens/Client/Translations.js +11 -1
- package/src/Screens/Creator/Components/CheckData/CheckData.js +2 -2
- package/src/Screens/Creator/Components/ComponentEditor.js +9 -5
- package/src/Screens/Creator/Components/ConfiguratorQuickView.js +34 -4
- package/src/Screens/Creator/Components/ShowPreviewErrorDialog.js +46 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +1 -1
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +1 -1
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +1 -1
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +3 -3
- package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +1 -1
- package/src/Screens/Creator/Containers/Edit.js +6 -1
- package/src/Screens/Creator/Reducers/ConfigurationActions.js +42 -6
- package/src/Screens/Creator/Reducers/ConfigurationReducer.js +35 -1
- package/src/Screens/Creator/Translations.js +11 -1
- package/src/Screens/CurrentClient/Containers/Edit.js +44 -28
- package/src/Screens/CurrentClient/Reducers/Reducer.js +14 -6
- package/src/Screens/Dashboard/Styles.scss +2 -2
- package/src/Screens/DefaultClient/Containers/Edit.js +133 -2
- package/src/Screens/DefaultClient/Reducers/Reducer.js +14 -6
- package/src/Screens/Designer/Components/ConfiguratorQuickView.js +30 -4
- package/src/Screens/Designer/Components/DesignDataTransfer.js +1 -1
- package/src/Screens/Designer/Components/TemplateDefaultList.js +1 -2
- package/src/Screens/Designer/Containers/Edit.js +5 -1
- package/src/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +5 -9
- package/src/Screens/Designer/Translations.js +1 -1
- package/src/Screens/ImageGallery/Containers/List.js +104 -3
- package/src/Screens/ImageGallery/Reducers/Actions.js +40 -1
- package/src/Screens/ImageGallery/Reducers/Reducer.js +12 -0
- package/src/Screens/ImageGallery/Styles.scss +37 -0
- package/src/Screens/ImageGallery/Translations.js +10 -4
- package/src/Screens/Inspirations/Containers/Edit.js +1 -1
- package/src/Screens/Inspirations/Screen.js +6 -0
- package/src/Screens/Item/Components/ConfiguratorQuickView.js +47 -3
- package/src/Screens/Item/Containers/Edit.js +22 -36
- package/src/Screens/Item/Containers/Edit.test.js +1 -1
- package/src/Screens/Item/Reducers/Actions.js +73 -73
- package/src/Screens/Item/Reducers/ItemReducer.js +2 -2
- package/src/Screens/Item/Translations.js +4 -2
- package/src/Screens/Option/Containers/List.js +10 -5
- package/src/Screens/Option/Translations.js +1 -0
- package/src/Screens/Optionclassification/Containers/Edit.js +6 -1
- package/src/Screens/Optionclassification/Reducers/Reducer.js +1 -0
- package/src/Screens/Optionclassification/Translations.js +5 -1
- package/src/Screens/Setting/Containers/Edit.js +3 -3
- package/src/UIComponents/SelectField.js +2 -1
- package/src/UIComponents/Table/TableHead.js +1 -2
- package/src/dev.js +3 -3
- package/babel.config.js +0 -1
- package/public/favicon.ico +0 -0
- package/scripts/cpPath.js +0 -152
- package/scripts/updateLocalPackages.js +0 -68
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import React, { useCallback, useEffect, useState } from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import ReactMde from 'react-mde';
|
|
4
|
+
import * as Showdown from 'showdown';
|
|
5
|
+
import 'react-mde/lib/styles/css/react-mde-all.css';
|
|
6
|
+
import FormControlLabel from '../../../UIComponents/FormControlLabel';
|
|
7
|
+
import { withStyles } from '@material-ui/core/styles';
|
|
8
|
+
import debounce from 'lodash/debounce';
|
|
9
|
+
|
|
10
|
+
const MARK_DOWN_FIELD_TRANSLATION_KEY = 'markDownField';
|
|
11
|
+
|
|
12
|
+
import { use, t } from '../../../App/i18n';
|
|
13
|
+
import ErrorWrapper from '../../../Components/FormFragments/ErrorWrapper';
|
|
14
|
+
use(
|
|
15
|
+
{
|
|
16
|
+
en: {
|
|
17
|
+
[MARK_DOWN_FIELD_TRANSLATION_KEY]: {
|
|
18
|
+
write: 'Write',
|
|
19
|
+
preview: 'Preview',
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
de: {
|
|
23
|
+
[MARK_DOWN_FIELD_TRANSLATION_KEY]: {
|
|
24
|
+
write: 'Schreiben',
|
|
25
|
+
preview: 'Vorschau',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
true
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
const converter = new Showdown.Converter({
|
|
33
|
+
tables: true,
|
|
34
|
+
simplifiedAutoLink: true,
|
|
35
|
+
openLinksInNewWindow: true,
|
|
36
|
+
simpleLineBreaks: true,
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
const toolbarCommands = [['bold', 'italic'], ['link'], ['unordered-list', 'ordered-list']];
|
|
40
|
+
|
|
41
|
+
const StyledFormControlLabel = withStyles({
|
|
42
|
+
labelPlacementStart: {},
|
|
43
|
+
root: {
|
|
44
|
+
margin: 0,
|
|
45
|
+
alignItems: 'flex-start',
|
|
46
|
+
width: '100%',
|
|
47
|
+
},
|
|
48
|
+
})(FormControlLabel);
|
|
49
|
+
|
|
50
|
+
const StyledMde = withStyles({
|
|
51
|
+
reactMde: {
|
|
52
|
+
width: '100%',
|
|
53
|
+
border: 0,
|
|
54
|
+
marginBottom: 10,
|
|
55
|
+
},
|
|
56
|
+
toolbar: {
|
|
57
|
+
background: 'none',
|
|
58
|
+
border: 0,
|
|
59
|
+
},
|
|
60
|
+
textArea: {
|
|
61
|
+
border: '1px solid rgba(0, 0, 0, 0.2) !important',
|
|
62
|
+
},
|
|
63
|
+
preview: {
|
|
64
|
+
overflowX: 'auto',
|
|
65
|
+
},
|
|
66
|
+
})(ReactMde);
|
|
67
|
+
|
|
68
|
+
export const PdfMarkDownField = props => {
|
|
69
|
+
const [selectedTab, setSelectedTab] = useState('write');
|
|
70
|
+
const { value, error, onChange, label, classes, maxEditorHeight, name, htmlField, helperText } = props;
|
|
71
|
+
const [currentValue, setCurrentValue] = useState(value.text);
|
|
72
|
+
useEffect(() => {
|
|
73
|
+
setCurrentValue(value);
|
|
74
|
+
}, [value]);
|
|
75
|
+
const changeHandler = value => {
|
|
76
|
+
setCurrentValue(value);
|
|
77
|
+
onChange(htmlField, converter.makeHtml(value));
|
|
78
|
+
onChange(name, value);
|
|
79
|
+
setCurrentValue(value);
|
|
80
|
+
};
|
|
81
|
+
const translations = t(MARK_DOWN_FIELD_TRANSLATION_KEY);
|
|
82
|
+
|
|
83
|
+
return (
|
|
84
|
+
<ErrorWrapper error={error}>
|
|
85
|
+
<StyledFormControlLabel
|
|
86
|
+
label={label}
|
|
87
|
+
labelPlacement="top"
|
|
88
|
+
classes={classes}
|
|
89
|
+
control={
|
|
90
|
+
<StyledMde
|
|
91
|
+
maxEditorHeight={maxEditorHeight}
|
|
92
|
+
value={currentValue}
|
|
93
|
+
onChange={changeHandler}
|
|
94
|
+
selectedTab={selectedTab}
|
|
95
|
+
onTabChange={setSelectedTab}
|
|
96
|
+
generateMarkdownPreview={markdown => Promise.resolve(converter.makeHtml(markdown))}
|
|
97
|
+
childProps={{
|
|
98
|
+
writeButton: {
|
|
99
|
+
tabIndex: -1,
|
|
100
|
+
},
|
|
101
|
+
}}
|
|
102
|
+
toolbarCommands={toolbarCommands}
|
|
103
|
+
l18n={translations}
|
|
104
|
+
/>
|
|
105
|
+
}
|
|
106
|
+
/>
|
|
107
|
+
{helperText && <span className="helper-text">{helperText}</span>}
|
|
108
|
+
</ErrorWrapper>
|
|
109
|
+
);
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
PdfMarkDownField.propTypes = {
|
|
113
|
+
value: PropTypes.string,
|
|
114
|
+
error: PropTypes.node,
|
|
115
|
+
onChange: PropTypes.func.isRequired,
|
|
116
|
+
label: PropTypes.node,
|
|
117
|
+
classes: PropTypes.object,
|
|
118
|
+
maxEditorHeight: PropTypes.number,
|
|
119
|
+
name: PropTypes.string,
|
|
120
|
+
htmlField: PropTypes.string,
|
|
121
|
+
helperText: PropTypes.string,
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
PdfMarkDownField.defaultProps = {
|
|
125
|
+
value: '',
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export default PdfMarkDownField;
|
|
@@ -4,6 +4,9 @@ import generateConnectedEdit from '../../../Components/DefaultConnectedForm';
|
|
|
4
4
|
import TextFields from '../Components/TextFields';
|
|
5
5
|
import ColorTextField from '../Components/ColorTextField';
|
|
6
6
|
import { t } from '../../../App/i18n';
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import { CallToActionField } from '../../../Components/CallToActionField';
|
|
9
|
+
import { PdfMarkDownField } from '../Components/PdfMarkdownField';
|
|
7
10
|
|
|
8
11
|
const formFields = [
|
|
9
12
|
{
|
|
@@ -11,11 +14,6 @@ const formFields = [
|
|
|
11
14
|
label: 'Identifier',
|
|
12
15
|
type: 'text',
|
|
13
16
|
},
|
|
14
|
-
{
|
|
15
|
-
name: 'email',
|
|
16
|
-
label: 'Email',
|
|
17
|
-
type: 'text',
|
|
18
|
-
},
|
|
19
17
|
{
|
|
20
18
|
name: 'users',
|
|
21
19
|
label: 'Users',
|
|
@@ -47,7 +45,7 @@ const formFields = [
|
|
|
47
45
|
type: SimpleNestedData,
|
|
48
46
|
fields: [
|
|
49
47
|
{
|
|
50
|
-
name:
|
|
48
|
+
name: 'highlightColor',
|
|
51
49
|
type: ColorTextField,
|
|
52
50
|
},
|
|
53
51
|
{
|
|
@@ -67,6 +65,20 @@ const formFields = [
|
|
|
67
65
|
},
|
|
68
66
|
],
|
|
69
67
|
},
|
|
68
|
+
{
|
|
69
|
+
name: 'pdfHeaderText',
|
|
70
|
+
label: 'PDF Header',
|
|
71
|
+
htmlField: 'pdfHeaderHtml',
|
|
72
|
+
type: PdfMarkDownField,
|
|
73
|
+
helperText: t('headerInfo'),
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'pdfFooterText',
|
|
77
|
+
label: 'PDF Footer',
|
|
78
|
+
htmlField: 'pdfFooterHtml',
|
|
79
|
+
type: PdfMarkDownField,
|
|
80
|
+
helperText: t('footerInfo'),
|
|
81
|
+
},
|
|
70
82
|
{
|
|
71
83
|
name: 'contactName',
|
|
72
84
|
label: 'Clientname / Shopname',
|
|
@@ -93,38 +105,38 @@ const formFields = [
|
|
|
93
105
|
type: 'text',
|
|
94
106
|
},
|
|
95
107
|
{
|
|
96
|
-
name: '
|
|
97
|
-
label: 'E-
|
|
108
|
+
name: 'toEmailAddresses',
|
|
109
|
+
label: 'E-Mail(s) receiver for request offer',
|
|
98
110
|
type: 'text',
|
|
111
|
+
helperText: t('emailHint'),
|
|
99
112
|
},
|
|
100
113
|
{
|
|
101
|
-
name: '
|
|
102
|
-
label: '
|
|
103
|
-
type: '
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
id: 'requestOffer',
|
|
121
|
-
},
|
|
114
|
+
name: 'fromEmailAddress',
|
|
115
|
+
label: 'E-Mail sender for request offer',
|
|
116
|
+
type: 'text',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: 'ccEmailAddresses',
|
|
120
|
+
label: 'CC E-Mail(s) receiver for request offer',
|
|
121
|
+
type: 'text',
|
|
122
|
+
helperText: t('emailHint'),
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
name: 'bccEmailAddresses',
|
|
126
|
+
label: 'BCC E-Mail(s) receiver for request offer',
|
|
127
|
+
type: 'text',
|
|
128
|
+
helperText: t('emailHint'),
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: CallToActionField,
|
|
132
|
+
fields: [
|
|
122
133
|
{
|
|
123
|
-
|
|
124
|
-
label: 'callToAction.
|
|
125
|
-
|
|
134
|
+
name: 'callToAction',
|
|
135
|
+
label: 'callToAction.callToAction',
|
|
136
|
+
type: 'select',
|
|
126
137
|
},
|
|
127
138
|
],
|
|
139
|
+
dynamicDefaultLabel: false
|
|
128
140
|
},
|
|
129
141
|
{
|
|
130
142
|
type: TextFields,
|
|
@@ -25,13 +25,21 @@ const initialState = {
|
|
|
25
25
|
font: { value: '' },
|
|
26
26
|
},
|
|
27
27
|
},
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
28
|
+
pdfHeaderText: { value: '' },
|
|
29
|
+
pdfHeaderHtml: { value: '' },
|
|
30
|
+
pdfFooterText: { value: '' },
|
|
31
|
+
pdfFooterHtml: { value: '' },
|
|
32
|
+
contactName: { value: '' },
|
|
33
|
+
contactStreet: { value: '' },
|
|
34
|
+
contactPostCode: { value: '' },
|
|
35
|
+
contactCity: { value: '' },
|
|
36
|
+
contactPhone: { value: '' },
|
|
37
|
+
contactEmail: { value: '' },
|
|
38
|
+
toEmailAddresses: { value: '' },
|
|
39
|
+
fromEmailAddress: { value: '' },
|
|
40
|
+
ccEmailAddresses: { value: '' },
|
|
41
|
+
bccEmailAddresses: { value: '' },
|
|
42
|
+
callToAction: '',
|
|
35
43
|
channels: { value: [] },
|
|
36
44
|
customCss: '',
|
|
37
45
|
},
|
|
@@ -12,6 +12,9 @@ require('../../App/i18n').use(
|
|
|
12
12
|
addButtonLabel: 'Add user',
|
|
13
13
|
},
|
|
14
14
|
},
|
|
15
|
+
headerInfo: 'Please check your changes in a generated pdf to make sure it looks as expected',
|
|
16
|
+
footerInfo: 'Please check your changes in a generated pdf to make sure it looks as expected',
|
|
17
|
+
emailHint: 'separate multiple addresses with a semicolon',
|
|
15
18
|
},
|
|
16
19
|
de: {
|
|
17
20
|
clients: 'Klienten',
|
|
@@ -20,11 +23,15 @@ require('../../App/i18n').use(
|
|
|
20
23
|
'Theme - Font': 'Theme - Font',
|
|
21
24
|
termsAndConditionsLink: 'Terms and conditions link',
|
|
22
25
|
'Clientname / Shopname': 'Bezeichner/ Shopname',
|
|
26
|
+
'E-mail (contact)': 'E-Mail (Kontakt)',
|
|
23
27
|
'Street / no': 'Straße / Hausnummer',
|
|
24
28
|
'Post code': 'PLZ',
|
|
25
29
|
City: 'Stadt',
|
|
26
30
|
Phone: 'Telefonnummer',
|
|
27
|
-
'E-
|
|
31
|
+
'E-Mail(s) receiver for request offer': 'E-Mail(s) für die Angebotsanfrage',
|
|
32
|
+
'E-Mail sender for request offer': 'Absender E-Mail für die Angebotsanfrage',
|
|
33
|
+
'CC E-Mail(s) receiver for request offer': 'CC E-Mail(s) für die Angebotsanfrage',
|
|
34
|
+
'BCC E-Mail(s) receiver for request offer': 'BCC E-Mail(s) für die Angebotsanfrage',
|
|
28
35
|
'Client logo': 'Kunden Logo',
|
|
29
36
|
Texts: 'Texte',
|
|
30
37
|
themeColorError: 'Bitte gib einen hexadezimalen Farbwert ein (z.B. #0000ff)',
|
|
@@ -34,6 +41,9 @@ require('../../App/i18n').use(
|
|
|
34
41
|
addButtonLabel: 'Benutzer hinzufügen',
|
|
35
42
|
},
|
|
36
43
|
},
|
|
44
|
+
headerInfo: 'Bitte überprüfe Deine Änderungen in einem generierten PDF',
|
|
45
|
+
footerInfo: 'Bitte überprüfe Deine Änderungen in einem generierten PDF',
|
|
46
|
+
emailHint: 'trenne mehrere Adressen mit einem Semikolon',
|
|
37
47
|
},
|
|
38
48
|
},
|
|
39
49
|
true
|
|
@@ -121,7 +121,7 @@ const styles = {
|
|
|
121
121
|
},
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
const CheckData = withStyles(styles)(({ itemIdentifier, checkItemData, area, license, classes }) => {
|
|
124
|
+
const CheckData = withStyles(styles)(({ itemIdentifier, itemId, checkItemData, area, license, classes }) => {
|
|
125
125
|
const [data, setData] = useState(null);
|
|
126
126
|
const [error, setError] = useState(null);
|
|
127
127
|
const loadData = async () => {
|
|
@@ -206,7 +206,7 @@ const CheckData = withStyles(styles)(({ itemIdentifier, checkItemData, area, lic
|
|
|
206
206
|
<AsyncDialog
|
|
207
207
|
buttonLabel={T('dataCheck.buttonLabel')}
|
|
208
208
|
dialogTitle={T('dataCheck.dialogTitle')}
|
|
209
|
-
buttonDisabled={!
|
|
209
|
+
buttonDisabled={!itemId}
|
|
210
210
|
asyncTask={loadData}
|
|
211
211
|
>
|
|
212
212
|
{data && renderResult(data)}
|
|
@@ -90,10 +90,12 @@ export const ComponentEditor = ({ component, onChange, onClose }) => {
|
|
|
90
90
|
(loading ? (
|
|
91
91
|
<CircularProgress size={24} />
|
|
92
92
|
) : (
|
|
93
|
-
<div
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
93
|
+
<div
|
|
94
|
+
style={{
|
|
95
|
+
display: 'flex',
|
|
96
|
+
flexDirection: 'column',
|
|
97
|
+
}}
|
|
98
|
+
>
|
|
97
99
|
{T('componentEditor.dialogInfo')}
|
|
98
100
|
|
|
99
101
|
<SelectField
|
|
@@ -109,7 +111,9 @@ export const ComponentEditor = ({ component, onChange, onClose }) => {
|
|
|
109
111
|
fontSize: '1.2 em',
|
|
110
112
|
}}
|
|
111
113
|
>
|
|
112
|
-
<MenuItem value={'default'}>
|
|
114
|
+
<MenuItem value={'default'}>
|
|
115
|
+
{T('componentEditor.fields.linkedViewDefaultLabel')}
|
|
116
|
+
</MenuItem>
|
|
113
117
|
{creatorViewList &&
|
|
114
118
|
creatorViewList.map(option => (
|
|
115
119
|
<MenuItem value={option.id} key={option.id}>
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { connect } from 'react-redux';
|
|
3
3
|
import get from 'lodash/get';
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
CONFIGURATION_REDUCER_NAME,
|
|
6
|
+
hideOpenCreatorPreviewError,
|
|
7
|
+
showConfiguratorAdminMode,
|
|
8
|
+
} from '../Reducers/ConfigurationActions';
|
|
5
9
|
import ConfiguratorOverlay from '../../../Components/GeneralFragments/ConfiguratorOverlay';
|
|
6
10
|
import { CREATOR_REDUCER_NAME } from '../Reducers/Actions';
|
|
7
11
|
import networkConfig from '../../../App/Config/network';
|
|
8
12
|
import { T } from '../../../App/i18n';
|
|
9
13
|
import RaisedButton from '../../../UIComponents/RaisedButton';
|
|
14
|
+
import ShowPreviewErrorDialog from './ShowPreviewErrorDialog';
|
|
10
15
|
|
|
11
16
|
const mapStateToProps = state => {
|
|
12
17
|
const { i18n } = state;
|
|
@@ -15,6 +20,8 @@ const mapStateToProps = state => {
|
|
|
15
20
|
const locale = i18n.locale.replace('-', '_');
|
|
16
21
|
const configurationData = state[CONFIGURATION_REDUCER_NAME];
|
|
17
22
|
const { adminModeHash } = configurationData;
|
|
23
|
+
const itemId = get(state[CREATOR_REDUCER_NAME], 'data.id.value');
|
|
24
|
+
const showOpenCreatorPreviewError = get(configurationData, 'showOpenCreatorPreviewError');
|
|
18
25
|
|
|
19
26
|
const params = new URLSearchParams({
|
|
20
27
|
_adminmode: 'quickView',
|
|
@@ -31,22 +38,45 @@ const mapStateToProps = state => {
|
|
|
31
38
|
return {
|
|
32
39
|
show: state[CONFIGURATION_REDUCER_NAME].showConfiguratorAdminMode,
|
|
33
40
|
configuratorUrl,
|
|
41
|
+
itemId,
|
|
42
|
+
showOpenCreatorPreviewError,
|
|
34
43
|
};
|
|
35
44
|
};
|
|
36
45
|
|
|
37
46
|
const mapDispatchToProps = dispatch => ({
|
|
38
47
|
close: () => dispatch(showConfiguratorAdminMode(false)),
|
|
39
|
-
open:
|
|
48
|
+
open: itemId =>
|
|
49
|
+
dispatch(showConfiguratorAdminMode(true, 'creator', itemId)),
|
|
50
|
+
hideOpenCreatorPreviewError: () => dispatch(hideOpenCreatorPreviewError()),
|
|
40
51
|
});
|
|
41
52
|
|
|
42
|
-
const ConfiguratorQuickView = ({
|
|
53
|
+
const ConfiguratorQuickView = ({
|
|
54
|
+
show,
|
|
55
|
+
open,
|
|
56
|
+
close,
|
|
57
|
+
configuratorUrl,
|
|
58
|
+
style,
|
|
59
|
+
className,
|
|
60
|
+
itemId,
|
|
61
|
+
showOpenCreatorPreviewError,
|
|
62
|
+
hideOpenCreatorPreviewError,
|
|
63
|
+
}) => (
|
|
43
64
|
<div style={style} className={className}>
|
|
44
65
|
<RaisedButton
|
|
45
66
|
label={T('configuratorQuickView.buttonText')}
|
|
46
|
-
onClick={open}
|
|
67
|
+
onClick={() => open(itemId)}
|
|
47
68
|
disabled={!configuratorUrl}
|
|
48
69
|
/>
|
|
49
70
|
<ConfiguratorOverlay show={show} configuratorUrl={configuratorUrl} onClose={close} />
|
|
71
|
+
{showOpenCreatorPreviewError &&
|
|
72
|
+
<ShowPreviewErrorDialog
|
|
73
|
+
dialogTitle={T('openPreviewError.title')}
|
|
74
|
+
open={showOpenCreatorPreviewError}
|
|
75
|
+
onClose={hideOpenCreatorPreviewError}
|
|
76
|
+
>
|
|
77
|
+
<p>{T('openPreviewError.openCreatorPreviewError')}</p>
|
|
78
|
+
</ShowPreviewErrorDialog>
|
|
79
|
+
}
|
|
50
80
|
</div>
|
|
51
81
|
);
|
|
52
82
|
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Dialog from '../../../UIComponents/Dialog';
|
|
3
|
+
import withStyles from '@material-ui/core/styles/withStyles';
|
|
4
|
+
import FlatButton from '../../../UIComponents/FlatButton';
|
|
5
|
+
import { T } from '../../../App/i18n';
|
|
6
|
+
|
|
7
|
+
const styles = () => ({
|
|
8
|
+
paperRoot: {
|
|
9
|
+
minWidth: '450px',
|
|
10
|
+
},
|
|
11
|
+
dialogContentRoot: {
|
|
12
|
+
overflow: 'hidden',
|
|
13
|
+
display: 'flex',
|
|
14
|
+
},
|
|
15
|
+
dialogContentTextRoot: {
|
|
16
|
+
width: '100%',
|
|
17
|
+
},
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
const ShowPreviewErrorDialog = withStyles(styles)(
|
|
21
|
+
({
|
|
22
|
+
classes,
|
|
23
|
+
dialogTitle,
|
|
24
|
+
open,
|
|
25
|
+
onClose,
|
|
26
|
+
children,
|
|
27
|
+
}) => {
|
|
28
|
+
return (
|
|
29
|
+
<Dialog
|
|
30
|
+
title={dialogTitle}
|
|
31
|
+
open={open}
|
|
32
|
+
maxWidth="sm"
|
|
33
|
+
classes={{
|
|
34
|
+
dialogContentTextRoot: classes.dialog,
|
|
35
|
+
}}
|
|
36
|
+
actions={[
|
|
37
|
+
<FlatButton label={T('Ok')} key="closeButton" primary={false} onClick={onClose} />,
|
|
38
|
+
]}
|
|
39
|
+
>
|
|
40
|
+
{children}
|
|
41
|
+
</Dialog>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
export default withStyles(styles)(ShowPreviewErrorDialog);
|
|
@@ -29,7 +29,7 @@ export const EditableText = withStyles(() => ({
|
|
|
29
29
|
flexDirection: 'row',
|
|
30
30
|
justifyContent: 'space-between',
|
|
31
31
|
alignItems: 'center',
|
|
32
|
-
}
|
|
32
|
+
},
|
|
33
33
|
}))(({ value, onChange, classes, ...props }) => {
|
|
34
34
|
const [open, setOpen] = useState(false);
|
|
35
35
|
const [currentValue, setCurrentValue] = useState(value);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useEffect, useState } from 'react';
|
|
2
2
|
import withStyles from '@material-ui/core/styles/withStyles';
|
|
3
3
|
import { T } from '../../../../../App/i18n';
|
|
4
|
-
import { Tooltip } from
|
|
4
|
+
import { Tooltip } from '@material-ui/core';
|
|
5
5
|
|
|
6
6
|
const Image = withStyles({
|
|
7
7
|
image: {
|
package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js
CHANGED
|
@@ -8,7 +8,7 @@ import ConfirmDelete from './ConfirmDelete';
|
|
|
8
8
|
import Api from '../../../../../App/Api';
|
|
9
9
|
import { networkError } from '../../../../../App/Reducers/Api/Actions';
|
|
10
10
|
import { useDispatch } from 'react-redux';
|
|
11
|
-
import {Tooltip} from
|
|
11
|
+
import { Tooltip } from '@material-ui/core';
|
|
12
12
|
|
|
13
13
|
const ImageEditTools = withStyles({
|
|
14
14
|
root: {
|
|
@@ -20,8 +20,7 @@ require('../../../../App/i18n').use(
|
|
|
20
20
|
'All files are put into the described folders on the server.<br/>' +
|
|
21
21
|
'Important: If you add folders and images via FTP, non existing items can also mean that the file permissions are wrong (folders and images need to be readable).',
|
|
22
22
|
infoBoxTextComponentsAndOptions:
|
|
23
|
-
'' +
|
|
24
|
-
'All Thumbnails and Detail Images are added globally once per component / option.',
|
|
23
|
+
'' + 'All Thumbnails and Detail Images are added globally once per component / option.',
|
|
25
24
|
infoBoxTextViewsAndVisualization:
|
|
26
25
|
'' +
|
|
27
26
|
'For 2D Visualization image data is edited in one or more views. Here you can check the image data for each view.',
|
|
@@ -60,7 +59,8 @@ require('../../../../App/i18n').use(
|
|
|
60
59
|
},
|
|
61
60
|
missingImageNotice: {
|
|
62
61
|
noMissingImage: 'Alle Optionen haben Bilder für alle Ansichten und Komponenten',
|
|
63
|
-
imagesAreMissing:
|
|
62
|
+
imagesAreMissing:
|
|
63
|
+
'HINWEIS: Nicht alle Optionen haben Bilder für alle Ansichten und Komponenten',
|
|
64
64
|
},
|
|
65
65
|
infoBoxText:
|
|
66
66
|
'' +
|
|
@@ -133,11 +133,16 @@ class CreatorForm extends Component {
|
|
|
133
133
|
};
|
|
134
134
|
|
|
135
135
|
const itemIdentifier = _.get(this.props.entityState, 'data.identifier.value');
|
|
136
|
+
const itemId = _.get(this.props.entityState, 'data.identifier.value');
|
|
136
137
|
return (
|
|
137
138
|
<div className="itemEdit">
|
|
138
139
|
<div className={classes.itemStatusForm}>
|
|
139
140
|
<ConfiguratorQuickView className="configuratorQuickView" />
|
|
140
|
-
<CheckData
|
|
141
|
+
<CheckData
|
|
142
|
+
itemIdentifier={itemIdentifier}
|
|
143
|
+
itemId={itemId}
|
|
144
|
+
area={'creator'}
|
|
145
|
+
/>
|
|
141
146
|
</div>
|
|
142
147
|
<div className={classes.root}>
|
|
143
148
|
<Tabs value={currentTab} onChange={this.onTabChange} className={classes.flexContainer}>
|
|
@@ -37,6 +37,10 @@ export const CONFIGURATION_SAVE_CONFIGURATION_SUCCESS = 'CONFIGURATION_SAVE_CONF
|
|
|
37
37
|
export const CONFIGURATION_ADMIN_MODE_HASH_KEY = 'admin_mode_hash';
|
|
38
38
|
export const CONFIGURATION_ADMIN_MODE_HASH_URL = 'adminmode/gethash';
|
|
39
39
|
export const CONFIGURATION_GET_ADMIN_MODE_HASH = 'CONFIGURATION_GET_ADMIN_MODE_HASH';
|
|
40
|
+
export const CONFIGURATION_SHOW_DESIGNER_PREVIEW_ERROR = 'CONFIGURATION_SHOW_DESIGNER_PREVIEW_ERROR';
|
|
41
|
+
export const CONFIGURATION_SHOW_CREATOR_PREVIEW_ERROR = 'CONFIGURATION_SHOW_CREATOR_PREVIEW_ERROR';
|
|
42
|
+
export const CONFIGURATION_HIDE_DESIGNER_PREVIEW_ERROR = 'CONFIGURATION_HIDE_DESIGNER_PREVIEW_ERROR';
|
|
43
|
+
export const CONFIGURATION_HIDE_CREATOR_PREVIEW_ERROR = 'CONFIGURATION_HIDE_CREATOR_PREVIEW_ERROR';
|
|
40
44
|
export const CONFIGURATION_SHOW_CONFIGURATOR_ADMIN_MODE = 'CONFIGURATION_SHOW_CONFIGURATOR_ADMIN_MODE';
|
|
41
45
|
export const CONFIGURATION_SET_OVERWRITE_COMPONENT_ORDER = 'CONFIGURATION_SET_OVERWRITE_COMPONENT_ORDER';
|
|
42
46
|
|
|
@@ -47,7 +51,7 @@ export const showOptionSelection = (show = false, component = null) => ({
|
|
|
47
51
|
});
|
|
48
52
|
|
|
49
53
|
import { dispatchFetchData, RECEIVE_DATA, NETWORK_ERROR } from '../../../App/Reducers/Api/Helpers';
|
|
50
|
-
import { postData } from '../../../App/Reducers/Api/Actions';
|
|
54
|
+
import { fetchData, postData } from '../../../App/Reducers/Api/Actions';
|
|
51
55
|
|
|
52
56
|
export const invalidateOptions = () => ({
|
|
53
57
|
type: CONFIGURATION_INVALIDATE_OPTIONS,
|
|
@@ -125,11 +129,43 @@ export const saveConfigurationSuccess = data => ({
|
|
|
125
129
|
data,
|
|
126
130
|
});
|
|
127
131
|
|
|
128
|
-
export const
|
|
129
|
-
type:
|
|
130
|
-
|
|
132
|
+
export const showOpenDesignerPreviewError = () => ({
|
|
133
|
+
type: CONFIGURATION_SHOW_DESIGNER_PREVIEW_ERROR,
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
export const showOpenCreatorPreviewError = () => ({
|
|
137
|
+
type: CONFIGURATION_SHOW_CREATOR_PREVIEW_ERROR,
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
export const hideOpenDesignerPreviewError = () => ({
|
|
141
|
+
type: CONFIGURATION_HIDE_DESIGNER_PREVIEW_ERROR,
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
export const hideOpenCreatorPreviewError = () => ({
|
|
145
|
+
type: CONFIGURATION_HIDE_CREATOR_PREVIEW_ERROR,
|
|
131
146
|
});
|
|
132
147
|
|
|
148
|
+
export const showConfiguratorAdminMode = (show = false, configurationMode = null, itemId = null) => async dispatch => {
|
|
149
|
+
if (show) {
|
|
150
|
+
if (configurationMode === 'designer') {
|
|
151
|
+
const designareas = await dispatch(fetchData(`designareas?_language=en_GB&offset=0&limit=20&filters%5Bdesignarea.item.id%5D=${itemId}`));
|
|
152
|
+
const designareaCount = +(get(designareas, 'data.metadata.totalcount'));
|
|
153
|
+
|
|
154
|
+
if (!designareaCount) return dispatch(showOpenDesignerPreviewError());
|
|
155
|
+
|
|
156
|
+
} else {
|
|
157
|
+
const components = await dispatch(fetchData(`constructionpatterns/${itemId}?_language=en_GB`));
|
|
158
|
+
const componentCount = (get(components, 'data.selectableComponents')).length;
|
|
159
|
+
|
|
160
|
+
if (!componentCount) return dispatch(showOpenCreatorPreviewError());
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
dispatch({
|
|
164
|
+
type: CONFIGURATION_SHOW_CONFIGURATOR_ADMIN_MODE,
|
|
165
|
+
show,
|
|
166
|
+
});
|
|
167
|
+
};
|
|
168
|
+
|
|
133
169
|
export const getAdminModeHash = () => dispatch => {
|
|
134
170
|
const url = CONFIGURATION_ADMIN_MODE_HASH_URL;
|
|
135
171
|
dispatch({
|
|
@@ -146,8 +182,8 @@ export const setOverwriteComponentOrder = value => async (dispatch, getState) =>
|
|
|
146
182
|
});
|
|
147
183
|
const item = get(entityState, 'data.item.value');
|
|
148
184
|
if (item) {
|
|
149
|
-
const {
|
|
150
|
-
const data = {
|
|
185
|
+
const { stock, ...itemData } = item;
|
|
186
|
+
const data = { ...itemData, overwriteComponentOrder: value };
|
|
151
187
|
const url = `items`;
|
|
152
188
|
return dispatch(postData({ url }, data, CONFIGURATION_SAVE_ITEM)).then(apiAction => {
|
|
153
189
|
switch (apiAction.type) {
|