@configuratorware/configurator-frontendgui 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/Constant.js +73 -0
- package/App/Error/DevelopmentErrorPage/index.js +74 -0
- package/App/Error/ErrorBoundary.js +98 -0
- package/App/Error/ProductionErrorPage/Style.scss +47 -0
- package/App/Error/ProductionErrorPage/index.js +43 -0
- package/App/Error/ProductionErrorPage/index.story.js +13 -0
- package/App/Error/ProductionErrorPage/res/error_gears.png +0 -0
- package/App/Frame.js +95 -0
- package/App/Modules/Creator/Components/ConfigurationvariantItem/Styles.scss +33 -0
- package/App/Modules/Creator/Components/ConfigurationvariantItem/index.js +118 -0
- package/App/Modules/Creator/Components/ConfigurationvariantSelection/Styles.scss +47 -0
- package/App/Modules/Creator/Components/ConfigurationvariantSelection/index.js +130 -0
- package/App/Modules/Creator/Components/CustomTitleEditor/Styles.scss +43 -0
- package/App/Modules/Creator/Components/CustomTitleEditor/index.js +144 -0
- package/App/Modules/Creator/Components/ExternalVisualization/index.js +140 -0
- package/App/Modules/Creator/Components/FastConfiguration/SelectableRow.js +128 -0
- package/App/Modules/Creator/Components/FastConfiguration/Styles.scss +53 -0
- package/App/Modules/Creator/Components/FastConfiguration/index.js +280 -0
- package/App/Modules/Creator/Components/FastConfigurationRow/Styles.scss +45 -0
- package/App/Modules/Creator/Components/FastConfigurationRow/index.js +78 -0
- package/App/Modules/Creator/Components/FastConfigurationSelect/Styles.scss +35 -0
- package/App/Modules/Creator/Components/FastConfigurationSelect/index.js +251 -0
- package/App/Modules/Creator/Components/FormattedNumber/index.js +45 -0
- package/App/Modules/Creator/Components/FormattedPrice/index.js +57 -0
- package/App/Modules/Creator/Components/FullScreenView/FullScreenView.js +104 -0
- package/App/Modules/Creator/Components/Incompatibility/OptionRule/index.js +182 -0
- package/App/Modules/Creator/Components/Incompatibility/RuleComponent.js +88 -0
- package/App/Modules/Creator/Components/Incompatibility/index.js +251 -0
- package/App/Modules/Creator/Components/InvalidConfigurationNotice/index.js +164 -0
- package/App/Modules/Creator/Components/LoginForm/Styles.scss +9 -0
- package/App/Modules/Creator/Components/LoginForm/index.js +129 -0
- package/App/Modules/Creator/Components/Option/index.js +545 -0
- package/App/Modules/Creator/Components/Option/index.story.js +154 -0
- package/App/Modules/Creator/Components/OptionAmount/index.js +236 -0
- package/App/Modules/Creator/Components/OptionGroup/index.js +55 -0
- package/App/Modules/Creator/Components/Optiondetail/ZoomImage/index.js +173 -0
- package/App/Modules/Creator/Components/Optiondetail/index.js +497 -0
- package/App/Modules/Creator/Components/Optiondetail/index.story.js +117 -0
- package/App/Modules/Creator/Components/OptionsList/index.js +193 -0
- package/App/Modules/Creator/Components/Price/Styles.scss +3 -0
- package/App/Modules/Creator/Components/Price/index.js +79 -0
- package/App/Modules/Creator/Components/ProductPart/index.js +185 -0
- package/App/Modules/Creator/Components/ProductPart/index.story.js +88 -0
- package/App/Modules/Creator/Components/ProductPartsList/index.js +150 -0
- package/App/Modules/Creator/Components/ProductPartsList/index.story.js +101 -0
- package/App/Modules/Creator/Components/SavedConfiguration/Styles.scss +19 -0
- package/App/Modules/Creator/Components/SavedConfiguration/index.js +82 -0
- package/App/Modules/Creator/Components/ShareConfiguration/Styles.scss +23 -0
- package/App/Modules/Creator/Components/ShareConfiguration/index.js +224 -0
- package/App/Modules/Creator/Components/StockInformation/index.js +93 -0
- package/App/Modules/Creator/Components/StoreConfigurationForm/Styles.scss +5 -0
- package/App/Modules/Creator/Components/StoreConfigurationForm/index.js +123 -0
- package/App/Modules/Creator/Components/Tools/Styles.scss +44 -0
- package/App/Modules/Creator/Components/Tools/index.js +102 -0
- package/App/Modules/Creator/Components/ValidationResult/Styles.scss +45 -0
- package/App/Modules/Creator/Components/ValidationResult/index.js +165 -0
- package/App/Modules/Creator/Components/index.js +84 -0
- package/App/Modules/Creator/Containers/AmountPrice/index.js +26 -0
- package/App/Modules/Creator/Containers/ConfigurationvariantSelection/index.js +60 -0
- package/App/Modules/Creator/Containers/CustomTitleEditor/index.js +52 -0
- package/App/Modules/Creator/Containers/FastConfiguration/index.js +62 -0
- package/App/Modules/Creator/Containers/FormattedPrice/index.js +31 -0
- package/App/Modules/Creator/Containers/Incompatibility/index.js +40 -0
- package/App/Modules/Creator/Containers/InvalidConfigurationNotice/index.js +89 -0
- package/App/Modules/Creator/Containers/LoadingOverlay/index.js +26 -0
- package/App/Modules/Creator/Containers/Optiondetail/index.js +48 -0
- package/App/Modules/Creator/Containers/OptionsList/index.js +49 -0
- package/App/Modules/Creator/Containers/ProductPart/index.js +26 -0
- package/App/Modules/Creator/Containers/ProductPartsList/index.js +49 -0
- package/App/Modules/Creator/Containers/SavedConfigurationContainer/index.js +25 -0
- package/App/Modules/Creator/Containers/ShareConfiguration/index.js +42 -0
- package/App/Modules/Creator/Containers/StockInformation/index.js +33 -0
- package/App/Modules/Creator/Containers/Tools/index.js +44 -0
- package/App/Modules/Creator/Containers/ValidationResult/index.js +34 -0
- package/App/Modules/Creator/Containers/index.js +175 -0
- package/App/Modules/Creator/CreatorScreen.js +307 -0
- package/App/Modules/Creator/Layouts/DefaultLayout.js +260 -0
- package/App/Modules/Creator/Styles.scss +216 -0
- package/App/Modules/Designer/Components/AddGalleryImage/index.js +234 -0
- package/App/Modules/Designer/Components/AddGalleryImage/index.story.js +94 -0
- package/App/Modules/Designer/Components/AddGalleryImage/index.test.js +151 -0
- package/App/Modules/Designer/Components/AddVisualElement/Styles.scss +0 -0
- package/App/Modules/Designer/Components/AddVisualElement/index.js +278 -0
- package/App/Modules/Designer/Components/AddVisualElement/index.story.js +24 -0
- package/App/Modules/Designer/Components/AddVisualElement/index.test.js +47 -0
- package/App/Modules/Designer/Components/CloseDesignEditor/index.js +130 -0
- package/App/Modules/Designer/Components/CloseGraphicsEditorButton/index.js +54 -0
- package/App/Modules/Designer/Components/ColorPalettes/ColorPalettesSearch.js +175 -0
- package/App/Modules/Designer/Components/ColorPalettes/index.js +814 -0
- package/App/Modules/Designer/Components/ColorPalettes/index.story.js +158 -0
- package/App/Modules/Designer/Components/ColorPalettes/index.test.js +150 -0
- package/App/Modules/Designer/Components/DesignAreaControlbox/Styles.scss +0 -0
- package/App/Modules/Designer/Components/DesignAreaControlbox/index.js +460 -0
- package/App/Modules/Designer/Components/DesignAreaControlbox/index.story.js +272 -0
- package/App/Modules/Designer/Components/DesignAreaControlbox/index.test.js +164 -0
- package/App/Modules/Designer/Components/DesignerSelectionToolbox/CustomFontOverlay.js +162 -0
- package/App/Modules/Designer/Components/DesignerSelectionToolbox/DesignerSelectionToolbox.js +425 -0
- package/App/Modules/Designer/Components/DesignerSelectionToolbox/fontItemUtils.js +48 -0
- package/App/Modules/Designer/Components/Dialog/index.js +125 -0
- package/App/Modules/Designer/Components/EditDesignButton/index.js +128 -0
- package/App/Modules/Designer/Components/FeedbackNotice/index.js +110 -0
- package/App/Modules/Designer/Components/FeedbackNotice/index.test.js +16 -0
- package/App/Modules/Designer/Components/FullScreenView/FullScreenView.js +63 -0
- package/App/Modules/Designer/Components/ImageColorPicker/ImageColorPicker.dev.js +32 -0
- package/App/Modules/Designer/Components/ImageColorPicker/ImageColorPicker.js +430 -0
- package/App/Modules/Designer/Components/ImageColorize/index.js +636 -0
- package/App/Modules/Designer/Components/ImageColorize/index.story.js +73 -0
- package/App/Modules/Designer/Components/ImageControlbox/index.js +302 -0
- package/App/Modules/Designer/Components/ImageEditDialog/ImageThumbnail.js +171 -0
- package/App/Modules/Designer/Components/ImageEditDialog/ImageUpload.js +478 -0
- package/App/Modules/Designer/Components/ImageEditDialog/index.js +716 -0
- package/App/Modules/Designer/Components/ImageEditDialog/res/baseline_colorize_black_24dp.png +0 -0
- package/App/Modules/Designer/Components/ImageEditDialog/res/checkers_tile.png +0 -0
- package/App/Modules/Designer/Components/ImageLibraryFilter/index.js +179 -0
- package/App/Modules/Designer/Components/ImageLibraryThumbnail/Styles.scss +14 -0
- package/App/Modules/Designer/Components/ImageLibraryThumbnail/index.js +165 -0
- package/App/Modules/Designer/Components/ObjectTools/index.js +146 -0
- package/App/Modules/Designer/Components/Select/index.js +171 -0
- package/App/Modules/Designer/Components/TextControlbox/TextFormatIcon.js +48 -0
- package/App/Modules/Designer/Components/TextControlbox/index.js +656 -0
- package/App/Modules/Designer/Components/TextControlbox/index.story.js +109 -0
- package/App/Modules/Designer/Components/TextControlbox/index.test.js +172 -0
- package/App/Modules/Designer/Containers/AddGalleryImage.js +90 -0
- package/App/Modules/Designer/Containers/AddVisualElement.js +166 -0
- package/App/Modules/Designer/Containers/CloseDesignEditor.js +32 -0
- package/App/Modules/Designer/Containers/CloseGraphicsEditorButton.js +32 -0
- package/App/Modules/Designer/Containers/ColorPalettes.js +145 -0
- package/App/Modules/Designer/Containers/DesignAreaControlbox.js +54 -0
- package/App/Modules/Designer/Containers/Designer.js +37 -0
- package/App/Modules/Designer/Containers/DesignerSelectionToolbox.js +116 -0
- package/App/Modules/Designer/Containers/EditDesignButton.js +35 -0
- package/App/Modules/Designer/Containers/ImageEditDialog.js +1130 -0
- package/App/Modules/Designer/Designer.js +231 -0
- package/App/Modules/Designer/DesignerScreen.js +233 -0
- package/App/Modules/Designer/Layouts/DefaultLayout.js +196 -0
- package/App/Modules/Designer/Layouts/Mobile/TwoSideBottomBar.js +50 -0
- package/App/Modules/Designer/Layouts/PopupAreaProvider.js +186 -0
- package/App/Modules/Designer/Utils/FontFaceRepository.js +82 -0
- package/App/Modules/Designer/Utils/ImageEditUtils.js +104 -0
- package/App/Modules/Designer/Utils/Transformers.js +164 -0
- package/App/Modules/Designer/setupDesigner.js +182 -0
- package/App/Modules/Designer/withActiveCanvas.js +136 -0
- package/App/Modules/Visualization/AlignTargetContainer.js +55 -0
- package/App/Modules/Visualization/CreatorAlignTarget.js +41 -0
- package/App/Modules/Visualization/DefaultVisualizationProvider.js +105 -0
- package/App/Modules/Visualization/DesignerAlignTarget.js +45 -0
- package/App/Modules/Visualization/Utils/getFirstDataURLFromScreenshotsObj.js +20 -0
- package/App/Reducers/Actions.js +297 -0
- package/App/Reducers/ConfigurationMode/Actions.js +21 -0
- package/App/Reducers/ConfigurationMode/Reducer.js +80 -0
- package/App/Reducers/ConfigurationMode/Selectors.js +84 -0
- package/App/Reducers/Configurator/Actions.js +1417 -0
- package/App/Reducers/Configurator/AttributeSelectors.js +32 -0
- package/App/Reducers/Configurator/Modifiers.js +35 -0
- package/App/Reducers/Configurator/Reducer.js +639 -0
- package/App/Reducers/Configurator/Selectors.js +242 -0
- package/App/Reducers/Confirm/Actions.js +84 -0
- package/App/Reducers/Confirm/Reducer.js +30 -0
- package/App/Reducers/DesignArea/Actions.js +76 -0
- package/App/Reducers/DesignArea/DesignElementSelectors.js +114 -0
- package/App/Reducers/DesignArea/MaskSelectors.js +101 -0
- package/App/Reducers/DesignArea/Reducer.js +150 -0
- package/App/Reducers/DesignArea/Selectors.js +1314 -0
- package/App/Reducers/DesignArea/Transformers.js +333 -0
- package/App/Reducers/DesignData/Actions.js +232 -0
- package/App/Reducers/DesignData/Modifiers.js +328 -0
- package/App/Reducers/DesignData/Reducer.js +189 -0
- package/App/Reducers/DesignData/Selectors.js +94 -0
- package/App/Reducers/DesignData/Transformers.js +27 -0
- package/App/Reducers/DesignView/Actions.js +19 -0
- package/App/Reducers/DesignView/Reducer.js +165 -0
- package/App/Reducers/DesignView/Selectors.js +130 -0
- package/App/Reducers/DesignView/Transformers.js +32 -0
- package/App/Reducers/Device/Actions.js +16 -0
- package/App/Reducers/Device/Reducer.js +51 -0
- package/App/Reducers/Fonts/Actions.js +137 -0
- package/App/Reducers/Fonts/Reducer.js +39 -0
- package/App/Reducers/Fonts/Selectors.js +98 -0
- package/App/Reducers/GeneralActions.js +16 -0
- package/App/Reducers/ImageGallery/Actions.js +336 -0
- package/App/Reducers/ImageGallery/Modifiers.js +67 -0
- package/App/Reducers/ImageGallery/Reducer.js +320 -0
- package/App/Reducers/ImageGallery/Selectors.js +206 -0
- package/App/Reducers/Reducer.js +107 -0
- package/App/Reducers/UI/Actions.js +191 -0
- package/App/Reducers/UI/Reducer.js +98 -0
- package/App/Reducers/UI/Selectors.js +32 -0
- package/App/Reducers.js +48 -0
- package/App/Routing.js +168 -0
- package/App/Screens/Configurator/CalculationWidgetScreen.js +84 -0
- package/App/Screens/Configurator/Components/AmountSelection/Styles.scss +17 -0
- package/App/Screens/Configurator/Components/AmountSelection/index.js +170 -0
- package/App/Screens/Configurator/Components/AmountSelection/index.story.js +36 -0
- package/App/Screens/Configurator/Components/CalculationWidget/index.js +652 -0
- package/App/Screens/Configurator/Components/CalculationWidget/index.story.js +154 -0
- package/App/Screens/Configurator/Components/CalculationWidget/index.test.js +142 -0
- package/App/Screens/Configurator/Components/ConfigurationModeSwitch/ConfigurationModeSwitch.js +82 -0
- package/App/Screens/Configurator/Components/ConfigurationModeSwitch/index.js +15 -0
- package/App/Screens/Configurator/Components/Confirm/Styles.scss +0 -0
- package/App/Screens/Configurator/Components/Confirm/index.js +105 -0
- package/App/Screens/Configurator/Components/DesignApproval/index.js +76 -0
- package/App/Screens/Configurator/Components/DesignApproval/index.story.js +27 -0
- package/App/Screens/Configurator/Components/DesignApproval/index.test.js +31 -0
- package/App/Screens/Configurator/Components/Error/index.js +106 -0
- package/App/Screens/Configurator/Components/FallbackVisualization/FallbackVisualization.js +96 -0
- package/App/Screens/Configurator/Components/FileUpload/FileUploadBase.js +1 -0
- package/App/Screens/Configurator/Components/FullScreenView/index.js +303 -0
- package/App/Screens/Configurator/Components/FullScreenView/index.test.js +28 -0
- package/App/Screens/Configurator/Components/ImageLoader/ImageLoader.js +96 -0
- package/App/Screens/Configurator/Components/LandscapeInformation/index.js +75 -0
- package/App/Screens/Configurator/Components/NoVisualization/NoVisualization.js +35 -0
- package/App/Screens/Configurator/Components/PreviewPortal/index.js +246 -0
- package/App/Screens/Configurator/Components/Styles.scss +1 -0
- package/App/Screens/Configurator/Components/Thumbnail/index.js +394 -0
- package/App/Screens/Configurator/Components/Thumbnail/index.test.js +50 -0
- package/App/Screens/Configurator/Components/TotalPrice/TotalPrice.js +57 -0
- package/App/Screens/Configurator/Containers/AmountPrice.js +84 -0
- package/App/Screens/Configurator/Containers/CalculationWidget.js +278 -0
- package/App/Screens/Configurator/Containers/ConfigurationModeSwitch.js +81 -0
- package/App/Screens/Configurator/Containers/Confirm.js +37 -0
- package/App/Screens/Configurator/Containers/DesignApproval.js +129 -0
- package/App/Screens/Configurator/Containers/FallbackVisualization.js +32 -0
- package/App/Screens/Configurator/Containers/FullScreenView.js +46 -0
- package/App/Screens/Configurator/Containers/Thumbnail.js +41 -0
- package/App/Screens/Configurator/Containers/Visualization.js +13 -0
- package/App/Screens/Configurator/DesignerUI.js +215 -0
- package/App/Screens/Configurator/DynamicComponents.js +40 -0
- package/App/Screens/Configurator/Screen.js +236 -0
- package/App/Screens/Configurator/ScreenPropTypes.js +45 -0
- package/App/Screens/Configurator/ThemeProvider.js +298 -0
- package/App/Screens/DesignerProductPreview/Constants.js +12 -0
- package/App/Screens/DesignerProductPreview/DesignerProductPreviewManager.js +554 -0
- package/App/Screens/DesignerProductPreview/Screen.js +407 -0
- package/App/Screens.js +42 -0
- package/App/ServiceLocator.js +309 -0
- package/App/Services/AdminareaCommunicationService.js +149 -0
- package/App/Services/AnalyticsService.js +403 -0
- package/App/Services/ConfiguratorService.js +1122 -0
- package/App/Services/DesignDataService.js +3249 -0
- package/App/Services/DesignerService.js +496 -0
- package/App/Services/InteractionService.js +782 -0
- package/App/Services/UIService.js +129 -0
- package/App/Services/VisualizationService.js +842 -0
- package/App/Shared/Components/AcceptDesign/index.js +166 -0
- package/App/Shared/Components/AddToBasket/index.js +194 -0
- package/App/Shared/Components/AddToBasket/index.story.js +47 -0
- package/App/Shared/Components/AlertDialog/index.js +138 -0
- package/App/Shared/Components/AmountInput/Styles.scss +6 -0
- package/App/Shared/Components/AmountInput/index.js +296 -0
- package/App/Shared/Components/AmountInput/index.story.js +29 -0
- package/App/Shared/Components/AmountPrice/index.js +925 -0
- package/App/Shared/Components/AmountPrice/index.story.js +112 -0
- package/App/Shared/Components/AmountPrice/index.test.js +125 -0
- package/App/Shared/Components/Analytics/AnalyticsWrapper.js +49 -0
- package/App/Shared/Components/BulkNames/index.js +319 -0
- package/App/Shared/Components/CallToAction/index.js +220 -0
- package/App/Shared/Components/Header/Header.js +150 -0
- package/App/Shared/Components/Header/index.js +15 -0
- package/App/Shared/Components/Header/index.story.js +143 -0
- package/App/Shared/Components/InformationTag/InformationTag.js +155 -0
- package/App/Shared/Components/LicenseNotice/LicenseNotice.js +148 -0
- package/App/Shared/Components/LicenseNotice/index.js +15 -0
- package/App/Shared/Components/LoadConfiguration/index.js +218 -0
- package/App/Shared/Components/MessageBox/index.js +84 -0
- package/App/Shared/Components/MessageBox/index.story.js +49 -0
- package/App/Shared/Components/Notification/index.js +105 -0
- package/App/Shared/Components/Notification/index.story.js +55 -0
- package/App/Shared/Components/PdfDownload/index.js +150 -0
- package/App/Shared/Components/PlusMinusInput/index.js +118 -0
- package/App/Shared/Components/PriceList/index.js +237 -0
- package/App/Shared/Components/PriceList/index.story.js +114 -0
- package/App/Shared/Components/PriceOverview/index.js +177 -0
- package/App/Shared/Components/PriceOverview/index.story.js +215 -0
- package/App/Shared/Components/ProductVariant/Image.js +75 -0
- package/App/Shared/Components/ProductVariant/Styles.scss +11 -0
- package/App/Shared/Components/ProductVariant/index.js +477 -0
- package/App/Shared/Components/ProductVariant/index.story.js +283 -0
- package/App/Shared/Components/Progress/Progress.js +59 -0
- package/App/Shared/Components/ReceiveOfferForm/index.js +432 -0
- package/App/Shared/Components/ReceiveOfferForm/index.story.js +32 -0
- package/App/Shared/Components/ReceiveOfferForm/index.test.js +36 -0
- package/App/Shared/Components/SaveConfiguration/index.js +286 -0
- package/App/Shared/Components/SendEmail/index.js +103 -0
- package/App/Shared/Components/Stepper/index.js +136 -0
- package/App/Shared/Components/Stepper/index.story.js +38 -0
- package/App/Shared/Components/ToolbarList/index.js +231 -0
- package/App/Shared/Components/ToolbarList/index.story.js +33 -0
- package/App/Shared/Components/VariantChooser/index.js +270 -0
- package/App/Shared/Components/VariantChooser/index.story.js +100 -0
- package/App/Shared/Containers/AlertMessages.js +37 -0
- package/App/Shared/Containers/AmountPrice/AmountPriceAdminareaWrapper.js +40 -0
- package/App/Shared/Containers/AmountPrice/index.js +284 -0
- package/App/Shared/Containers/BulkNames.js +310 -0
- package/App/Shared/Containers/Error.js +37 -0
- package/App/Shared/Containers/GlobalLoader.js +25 -0
- package/App/Shared/Containers/Header/index.js +178 -0
- package/App/Shared/Containers/LicenseNotice/LicenseNotice.js +26 -0
- package/App/Shared/Containers/LicenseNotice/index.js +15 -0
- package/App/Shared/Containers/LoadConfiguration/LoadConfiguration.js +146 -0
- package/App/Shared/Containers/LoadConfiguration/index.js +15 -0
- package/App/Shared/Containers/PdfDownload/index.js +39 -0
- package/App/Shared/Containers/ProductVariant/ProductVariant.js +339 -0
- package/App/Shared/Containers/ProductVariant/index.js +15 -0
- package/App/Shared/Containers/SaveConfiguration.js +49 -0
- package/App/Shared/Containers/SendEmail/SendEmail.js +45 -0
- package/App/Shared/Containers/SendEmail/index.js +15 -0
- package/App/Shared/Providers/DefaultCanvasProvider.js +86 -0
- package/App/Storage.js +17 -0
- package/App/Store.js +87 -0
- package/App/Styles.scss +0 -0
- package/App/Translations.js +88 -0
- package/App/Utils/createMessageInterface.js +52 -0
- package/App/Utils/customClassName.js +12 -0
- package/App/Utils/getContrastText.js +27 -0
- package/App/Utils/getImageUrl.js +32 -0
- package/App/Variables.scss +84 -0
- package/App/configuration.js +421 -0
- package/App/index.js +52 -0
- package/App/initServices.js +67 -0
- package/App/setup.js +22 -0
- package/App/versionInfo.js +8 -0
- package/Framework/Api.js +178 -0
- package/Framework/ComponentContainer.js +165 -0
- package/Framework/Components/Carousel/Styles.scss +85 -0
- package/Framework/Components/Carousel/index.js +322 -0
- package/Framework/Components/Dialog/Style.scss +79 -0
- package/Framework/Components/Dialog/index.js +721 -0
- package/Framework/Components/DialogSelect/Styles.scss +53 -0
- package/Framework/Components/DialogSelect/index.js +331 -0
- package/Framework/Components/Input/index.js +147 -0
- package/Framework/Components/LoadingOverlay/Styles.scss +37 -0
- package/Framework/Components/LoadingOverlay/index.js +33 -0
- package/Framework/Components/Markdown/index.js +62 -0
- package/Framework/Components/Mobile/index.js +33 -0
- package/Framework/CustomError.js +51 -0
- package/Framework/Helpers/TransitionDetect.js +116 -0
- package/Framework/Helpers/isLandscapeMobile.js +14 -0
- package/Framework/Helpers/isMobileDevice.js +17 -0
- package/Framework/Helpers/isMobileSize.js +13 -0
- package/Framework/Mixins.scss +235 -0
- package/Framework/Services/AbstractAdminareaCommunicationService.js +48 -0
- package/Framework/Services/AbstractAsyncService.js +44 -0
- package/Framework/Services/AbstractConfiguratorService.js +47 -0
- package/Framework/Services/AbstractInteractionService.js +50 -0
- package/Framework/Services/AbstractStoreService.js +42 -0
- package/Framework/Services/AbstractUIService.js +53 -0
- package/Framework/Services/AbstractVisualizationService.js +47 -0
- package/Framework/Services/AsyncService.js +93 -0
- package/Framework/Services/StoreService.js +237 -0
- package/Framework/Variables.scss +22 -0
- package/Framework/bindDecorator.js +173 -0
- package/Framework/i18n.js +383 -0
- package/README.md +5 -26
- package/Resources/Icons/MaterialUI/Icons/AddCircle.js +13 -0
- package/Resources/Icons/MaterialUI/Icons/RemoveCircle.js +13 -0
- package/Resources/Icons/MaterialUI/fontFace.scss +37 -0
- package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.eot +0 -0
- package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.svg +2373 -0
- package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.ttf +0 -0
- package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.woff +0 -0
- package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/Resources/Icons/fonts/ionicons.eot +0 -0
- package/Resources/Icons/fonts/ionicons.svg +2230 -0
- package/Resources/Icons/fonts/ionicons.ttf +0 -0
- package/Resources/Icons/fonts/ionicons.woff +0 -0
- package/Resources/Icons/ionicons.scss +1489 -0
- package/Resources/Icons/ioniconsExtend.scss +1469 -0
- package/Resources/Icons/v4/fontFace.scss +11 -0
- package/Resources/Icons/v4/fonts/ionicons.eot +0 -0
- package/Resources/Icons/v4/fonts/ionicons.svg +2090 -0
- package/Resources/Icons/v4/fonts/ionicons.ttf +0 -0
- package/Resources/Icons/v4/fonts/ionicons.woff +0 -0
- package/Resources/Icons/v4/fonts/ionicons.woff2 +0 -0
- package/Resources/Icons/v4/icons.scss +15 -0
- package/Resources/Icons/v4/iconsExtend.scss +7 -0
- package/Resources/Images/designer_placeholder_logo.svg +1 -0
- package/Resources/Masks/circle.svg +4 -0
- package/Shared/Components/CustomDialog.js +132 -0
- package/Shared/Components/CustomDialogSelect.js +161 -0
- package/Shared/Components/MainButton.js +81 -0
- package/Shared/ErrorTypes/DeferredError.js +51 -0
- package/Shared/HOCs/ResizeDetect/ResizeDetect.dev.js +60 -0
- package/Shared/HOCs/ResizeDetect/ResizeDetect.js +217 -0
- package/Shared/HOCs/getDisplayName.js +10 -0
- package/Shared/HOCs/withFixedChangeHandler.js +46 -0
- package/Shared/PropTypes/ReactComponent.js +13 -0
- package/Shared/Styles/absoluteCenter.js +17 -0
- package/Utils/Array/isIdentical.js +38 -0
- package/Utils/Async/AsyncManager.js +128 -0
- package/Utils/Async/Deferred.js +146 -0
- package/Utils/Async/ObjectLock.js +38 -0
- package/Utils/Decorators/Observable.js +130 -0
- package/Utils/Dev/HOCs/withFilePicker.js +101 -0
- package/Utils/Dev/isDev.js +21 -0
- package/Utils/Events/pointerEvent.js +199 -0
- package/Utils/Events/preventEventDoubling.js +23 -0
- package/Utils/Function/cached.js +64 -0
- package/Utils/Function/createDebounceManager.js +77 -0
- package/Utils/Function/createSelector.js +62 -0
- package/Utils/Function/memoize.js +46 -0
- package/Utils/Function/sendMessage.js +22 -0
- package/Utils/Helper/createSelectionRangeMemo.js +45 -0
- package/Utils/Immutable/set.js +81 -0
- package/Utils/Math/conversions.js +13 -0
- package/Utils/Math/isPositiveNumber.js +12 -0
- package/Utils/Redux/createActionWithGlobalState.js +23 -0
- package/Utils/Styles/combineMediaQueries.js +24 -0
- package/Utils/Styles/createCheckerBoardBackground.js +22 -0
- package/Utils/Test/CallOrderChecker.js +29 -0
- package/Utils/Test/createStoreProvider.js +33 -0
- package/Utils/Test/formDataToJSON.js +20 -0
- package/Utils/Test/mountWithState.js +40 -0
- package/index.js +8 -0
- package/package.json +20 -102
- package/scripts/cpPublic.js +3 -3
- package/scripts/getDefaultWebpackConfig.js +11 -10
- package/src/App/Error/ProductionErrorPage/Style.scss +1 -1
- package/src/App/Modules/Creator/Components/Option/index.js +1 -0
- package/src/App/Modules/Creator/Components/Option/index.test.js +1 -1
- package/src/App/Modules/Creator/Components/OptionAmount/index.test.js +1 -1
- package/src/App/Modules/Creator/Components/ProductPart/index.js +1 -0
- package/src/App/Modules/Creator/Components/ProductPart/index.test.js +1 -1
- package/src/App/Modules/Designer/Components/AddGalleryImage/index.story.js +1 -1
- package/src/App/Modules/Designer/Components/ColorPalettes/index.test.jsx +1 -1
- package/src/App/Modules/Designer/Components/DesignAreaControlbox/index.test.jsx +1 -1
- package/src/App/Modules/Designer/Components/TextControlbox/index.test.jsx +1 -1
- package/src/App/Reducers/Configurator/Actions.js +13 -3
- package/src/App/Reducers/DesignArea/Selectors.js +9 -7
- package/src/App/Reducers/DesignView/Actions.js +1 -2
- package/src/App/Reducers/DesignView/Reducer.js +2 -10
- package/src/App/Reducers/DesignView/__mocks__/designerViewData.js +0 -1
- package/src/App/Reducers/DesignView/__tests__/Reducer.test.js +0 -22
- package/src/App/Reducers/ImageGallery/Actions.js +1 -1
- package/src/App/Reducers/UI/Actions.js +8 -0
- package/src/App/Reducers/UI/Reducer.js +3 -1
- package/src/App/Screens/Configurator/Components/CalculationWidget/index.test.jsx +1 -1
- package/src/App/Screens/Configurator/Components/DesignApproval/index.test.jsx +1 -1
- package/src/App/Screens/Configurator/Components/FullScreenView/index.test.jsx +1 -1
- package/src/App/Screens/Configurator/Containers/AmountPrice.js +1 -1
- package/src/App/Screens/Configurator/Containers/Confirm.js +1 -1
- package/src/App/Screens/Configurator/Screen.js +1 -1
- package/src/App/Screens/Configurator/ThemeProvider.js +1 -0
- package/src/App/Services/__tests__/DesignDataService.selectViewForComponent.test.js +0 -53
- package/src/App/Shared/Containers/AlertMessages.js +1 -1
- package/src/App/Shared/Containers/AmountPrice/index.test.js +1 -1
- package/src/App/Shared/Containers/Error.js +1 -1
- package/src/App/Shared/Containers/SaveConfiguration.js +1 -1
- package/src/App/Translations.js +1 -1
- package/src/Framework/Components/Carousel/index.js +29 -8
- package/src/Framework/i18n.js +2 -3
- package/babel.config.js +0 -46
- package/public/ConfigurationMessagingDemo.html +0 -55
- package/scripts/cpPath.js +0 -135
- package/scripts/moveLibToPackageRoot.js +0 -40
- package/scripts/rmDir.js +0 -29
- package/scripts/updateLocalPackages.js +0 -68
- package/scripts/utils/process.js +0 -19
- package/tsconfig.json +0 -22
package/package.json
CHANGED
|
@@ -1,44 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configuratorware/configurator-frontendgui",
|
|
3
|
-
"version": "1.27.3-beta.
|
|
3
|
+
"version": "1.27.3-beta.5",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"private": false,
|
|
6
|
-
"main": "./
|
|
7
|
-
"files": [
|
|
8
|
-
"App",
|
|
9
|
-
"Framework",
|
|
10
|
-
"Resources",
|
|
11
|
-
"src",
|
|
12
|
-
"scripts",
|
|
13
|
-
"babel.config.js",
|
|
14
|
-
"tsconfig.json",
|
|
15
|
-
"public/translations",
|
|
16
|
-
"public/favicon.ico",
|
|
17
|
-
"public/invoke.js",
|
|
18
|
-
"public/DesignerPreviewWidgetDemo.html",
|
|
19
|
-
"public/ConfigurationMessagingDemo.html"
|
|
20
|
-
],
|
|
6
|
+
"main": "./index.js",
|
|
21
7
|
"dependencies": {
|
|
22
|
-
"@babel/cli": "^7.13.14",
|
|
23
|
-
"@babel/core": "^7.13.14",
|
|
24
|
-
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
|
25
|
-
"@babel/plugin-proposal-decorators": "^7.13.5",
|
|
26
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
27
|
-
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
|
|
28
8
|
"@babel/polyfill": "^7.12.1",
|
|
29
|
-
"@
|
|
30
|
-
"@babel/preset-react": "^7.13.13",
|
|
31
|
-
"@babel/preset-typescript": "^7.13.0",
|
|
9
|
+
"@configuratorware/scripts": "1.27.3-beta.5",
|
|
32
10
|
"@hot-loader/react-dom": "^17.0.1",
|
|
33
|
-
"@material-ui/core": "^4.
|
|
11
|
+
"@material-ui/core": "^4.12.2",
|
|
34
12
|
"@material-ui/icons": "^4.11.2",
|
|
35
|
-
"@material-ui/lab": "^4.0.0-alpha.
|
|
13
|
+
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
36
14
|
"@tweenjs/tween.js": "^17.6.0",
|
|
37
15
|
"axios": "^0.21.1",
|
|
38
|
-
"babel-plugin-module-resolver": "^4.1.0",
|
|
39
16
|
"clsx": "^1.1.1",
|
|
40
17
|
"console-polyfill": "^0.3.0",
|
|
41
|
-
"cross-env": "^7.0.3",
|
|
42
18
|
"css-element-queries": "^1.2.3",
|
|
43
19
|
"fontfaceobserver": "^2.1.0",
|
|
44
20
|
"hyphenated-de": "^1.2.0",
|
|
@@ -56,73 +32,34 @@
|
|
|
56
32
|
"react-file-drop": "^0.2.8",
|
|
57
33
|
"react-hot-loader": "^4.13.0",
|
|
58
34
|
"react-hyphen": "^1.4.0",
|
|
59
|
-
"react-intersection-observer": "^8.
|
|
60
|
-
"react-redux": "^7.2.
|
|
35
|
+
"react-intersection-observer": "^8.32.0",
|
|
36
|
+
"react-redux": "^7.2.4",
|
|
61
37
|
"react-redux-i18n": "^1.9.3",
|
|
62
38
|
"react-router": "^5.2.0",
|
|
63
39
|
"react-router-dom": "^5.2.0",
|
|
64
40
|
"react-swipeable": "^5.5.1",
|
|
65
41
|
"react-zoom-pan-pinch": "^2.1.3",
|
|
66
|
-
"redhotmagma-graphics-editor": "1.27.3-beta.
|
|
67
|
-
"redhotmagma-visualization": "1.27.3-beta.
|
|
68
|
-
"redux": "^4.0
|
|
42
|
+
"redhotmagma-graphics-editor": "1.27.3-beta.5",
|
|
43
|
+
"redhotmagma-visualization": "1.27.3-beta.5",
|
|
44
|
+
"redux": "^4.1.0",
|
|
69
45
|
"redux-logger": "^3.0.6",
|
|
70
46
|
"redux-persist": "^5.10.0",
|
|
71
47
|
"redux-thunk": "^2.3.0",
|
|
72
|
-
"rimraf": "^3.0.2",
|
|
73
48
|
"showdown": "^1.9.1",
|
|
74
49
|
"storage-factory": "^0.2.0",
|
|
75
50
|
"typeface-roboto": "^1.1.13",
|
|
76
51
|
"url-search-params-polyfill": "^8.1.1",
|
|
77
52
|
"uuid": "^3.4.0"
|
|
78
53
|
},
|
|
79
|
-
"devDependencies": {
|
|
80
|
-
"@sambego/storybook-state": "^2.0.1",
|
|
81
|
-
"@storybook/addon-actions": "^6.2.1",
|
|
82
|
-
"@storybook/addon-essentials": "^6.2.1",
|
|
83
|
-
"@storybook/addon-links": "^6.2.1",
|
|
84
|
-
"@storybook/builder-webpack5": "^6.2.1",
|
|
85
|
-
"@storybook/react": "^6.2.1",
|
|
86
|
-
"@types/jest": "^26.0.22",
|
|
87
|
-
"@types/lodash": "^4.14.168",
|
|
88
|
-
"babel-eslint": "^10.1.0",
|
|
89
|
-
"babel-jest": "^26.6.3",
|
|
90
|
-
"babel-loader": "^8.2.2",
|
|
91
|
-
"css-loader": "^5.2.0",
|
|
92
|
-
"enzyme": "^3.11.0",
|
|
93
|
-
"enzyme-adapter-react-16": "^1.15.6",
|
|
94
|
-
"eslint": "^5.16.0",
|
|
95
|
-
"eslint-config-prettier": "^4.3.0",
|
|
96
|
-
"eslint-plugin-import": "^2.22.1",
|
|
97
|
-
"eslint-plugin-prettier": "^3.3.1",
|
|
98
|
-
"eslint-plugin-react": "^7.23.1",
|
|
99
|
-
"eslint-plugin-react-hooks": "^2.5.1",
|
|
100
|
-
"file-loader": "^6.2.0",
|
|
101
|
-
"html-webpack-plugin": "^5.3.1",
|
|
102
|
-
"husky": "^3.1.0",
|
|
103
|
-
"jest": "^26.6.3",
|
|
104
|
-
"jest-environment-enzyme": "^7.1.2",
|
|
105
|
-
"jest-enzyme": "^7.1.2",
|
|
106
|
-
"jsdom": "^16.5.2",
|
|
107
|
-
"lint-staged": "^9.5.0",
|
|
108
|
-
"mini-css-extract-plugin": "^1.4.0",
|
|
109
|
-
"node-sass": "^5.0.0",
|
|
110
|
-
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
|
111
|
-
"prettier": "^1.19.1",
|
|
112
|
-
"redux-mock-store": "^1.5.4",
|
|
113
|
-
"resolve-url-loader": "^3.1.2",
|
|
114
|
-
"sass-loader": "^11.0.1",
|
|
115
|
-
"sinon": "^10.0.0",
|
|
116
|
-
"style-loader": "^2.0.0",
|
|
117
|
-
"terser-webpack-plugin": "^5.1.1",
|
|
118
|
-
"ts-jest": "^26.5.4",
|
|
119
|
-
"url-loader": "^4.1.1",
|
|
120
|
-
"webpack": "^5.28.0",
|
|
121
|
-
"webpack-bundle-analyzer": "^4.4.0",
|
|
122
|
-
"webpack-cli": "^4.6.0",
|
|
123
|
-
"webpack-dev-server": "^3.11.2"
|
|
124
|
-
},
|
|
125
54
|
"peerDependencies": {
|
|
55
|
+
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
|
56
|
+
"@babel/plugin-proposal-decorators": "^7.13.5",
|
|
57
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
58
|
+
"@babel/preset-env": "^7.13.12",
|
|
59
|
+
"@babel/preset-react": "^7.13.13",
|
|
60
|
+
"@babel/preset-typescript": "^7.13.0",
|
|
61
|
+
"babel-loader": "^8.2.2",
|
|
62
|
+
"babel-plugin-module-resolver": "^4.1.0",
|
|
126
63
|
"css-loader": "^5.2.0",
|
|
127
64
|
"file-loader": "^6.2.0",
|
|
128
65
|
"mini-css-extract-plugin": "^1.4.0",
|
|
@@ -137,26 +74,7 @@
|
|
|
137
74
|
"webpack-dev-server": "^3.11.2"
|
|
138
75
|
},
|
|
139
76
|
"scripts": {
|
|
140
|
-
"start": "webpack serve --port 3001 --host 0.0.0.0",
|
|
141
|
-
"start:dev": "webpack-dev-server --port 3333 --config dev/webpack.config.js",
|
|
142
|
-
"build": "webpack --config webpack.production.config.js",
|
|
143
|
-
"package": "npm run package:clean && npm run package:compile && npm run package:copy && npm run package:after",
|
|
144
|
-
"package:clean": "rimraf ./lib",
|
|
145
|
-
"package:compile": "cross-env NODE_ENV=production babel ./src --out-dir ./lib --extensions .ts,.tsx,.js,.jsx",
|
|
146
|
-
"package:copy": "node ./scripts/cpPath.js ./src ./lib \"\\.(scss|eot|svg|ttf|woff|woff2|png)$\"",
|
|
147
|
-
"package:install-packages": "node ./packages/install.js",
|
|
148
|
-
"package:after": "node ./scripts/moveLibToPackageRoot.js",
|
|
149
77
|
"copy-public": "node ./scripts/cpPublic.js",
|
|
150
|
-
"install": "npm run
|
|
151
|
-
"build:test": "npm run build && http-server -P http://localhost:10030",
|
|
152
|
-
"build:profile": "webpack --config webpack.production.config.js --profile --json > stats.json",
|
|
153
|
-
"storybook": "start-storybook -p 6006",
|
|
154
|
-
"test": "jest",
|
|
155
|
-
"test:dev": "jest --watch",
|
|
156
|
-
"analyze": "npm run build:profile && webpack-bundle-analyzer stats.json ./public",
|
|
157
|
-
"lint": "eslint ./ --ext .js,.jsx",
|
|
158
|
-
"lint-ci": "eslint ./ --ext .js,.jsx -c .eslintrc.ci.json --quiet",
|
|
159
|
-
"lint-fix": "eslint ./ --ext .js,.jsx --fix",
|
|
160
|
-
"build-storybook": "build-storybook"
|
|
78
|
+
"install": "npm run copy-public"
|
|
161
79
|
}
|
|
162
|
-
}
|
|
80
|
+
}
|
package/scripts/cpPublic.js
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
const path = require('path');
|
|
25
25
|
|
|
26
|
-
const { cpDirDeep, testMatchers } = require('
|
|
27
|
-
const { isDependency } = require('
|
|
26
|
+
const { cpDirDeep, testMatchers } = require('@configuratorware/scripts/utils/fileSystem');
|
|
27
|
+
const { isDependency } = require('@configuratorware/scripts/utils/process');
|
|
28
28
|
|
|
29
29
|
// keep existing files listed below
|
|
30
30
|
const test = testMatchers.keepIfExists(/favicon\.ico$/);
|
|
@@ -38,5 +38,5 @@ if (isDependency()) {
|
|
|
38
38
|
const src = path.resolve(__dirname, '../public');
|
|
39
39
|
const dst = path.resolve(__dirname, '../../../../public');
|
|
40
40
|
|
|
41
|
-
cpDirDeep(src, dst, test);
|
|
41
|
+
cpDirDeep(src, dst, { testFn: test });
|
|
42
42
|
}
|
|
@@ -6,7 +6,7 @@ const path = require('path');
|
|
|
6
6
|
const webpack = require('webpack');
|
|
7
7
|
const fs = require('fs');
|
|
8
8
|
|
|
9
|
-
const version = require('../package.json')
|
|
9
|
+
const { version } = require('../package.json');
|
|
10
10
|
|
|
11
11
|
function getConfig(mode, dirname) {
|
|
12
12
|
try {
|
|
@@ -84,7 +84,8 @@ function getConfig(mode, dirname) {
|
|
|
84
84
|
'process.env.FRONTENDGUI_VERSION': JSON.stringify(version),
|
|
85
85
|
});
|
|
86
86
|
|
|
87
|
-
return
|
|
87
|
+
return {
|
|
88
|
+
...commonConfig,
|
|
88
89
|
mode: 'development',
|
|
89
90
|
cache: true,
|
|
90
91
|
devtool: 'eval-cheap-module-source-map',
|
|
@@ -132,20 +133,21 @@ function getConfig(mode, dirname) {
|
|
|
132
133
|
},
|
|
133
134
|
plugins: [env, new webpack.HotModuleReplacementPlugin()],
|
|
134
135
|
resolve: Object.assign({}, commonConfig.resolve, {
|
|
136
|
+
...commonConfig.resolve,
|
|
135
137
|
alias: {
|
|
136
|
-
|
|
138
|
+
...commonConfig.resolve.alias,
|
|
139
|
+
'react-dom': path.resolve(dirname, 'node_modules/@hot-loader/react-dom'),
|
|
137
140
|
},
|
|
138
141
|
}),
|
|
139
142
|
optimization: {
|
|
140
143
|
moduleIds: 'named',
|
|
141
144
|
},
|
|
142
|
-
}
|
|
145
|
+
};
|
|
143
146
|
}
|
|
144
147
|
|
|
145
148
|
case 'prod': {
|
|
146
149
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
147
150
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
148
|
-
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
|
149
151
|
|
|
150
152
|
const env = new webpack.DefinePlugin({
|
|
151
153
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
|
@@ -156,8 +158,6 @@ function getConfig(mode, dirname) {
|
|
|
156
158
|
filename: 'bundle.css',
|
|
157
159
|
});
|
|
158
160
|
|
|
159
|
-
const optimizeCss = new OptimizeCSSAssetsPlugin({});
|
|
160
|
-
|
|
161
161
|
const minimizer = new TerserPlugin({
|
|
162
162
|
parallel: true,
|
|
163
163
|
terserOptions: {
|
|
@@ -167,7 +167,8 @@ function getConfig(mode, dirname) {
|
|
|
167
167
|
},
|
|
168
168
|
});
|
|
169
169
|
|
|
170
|
-
return
|
|
170
|
+
return {
|
|
171
|
+
...commonConfig,
|
|
171
172
|
mode: 'production',
|
|
172
173
|
devtool: 'source-map',
|
|
173
174
|
devServer: {
|
|
@@ -204,11 +205,11 @@ function getConfig(mode, dirname) {
|
|
|
204
205
|
},
|
|
205
206
|
].concat(commonRules),
|
|
206
207
|
},
|
|
207
|
-
plugins: [env, extractSass
|
|
208
|
+
plugins: [env, extractSass],
|
|
208
209
|
optimization: {
|
|
209
210
|
minimizer: [minimizer],
|
|
210
211
|
},
|
|
211
|
-
}
|
|
212
|
+
};
|
|
212
213
|
}
|
|
213
214
|
}
|
|
214
215
|
} catch (e) {
|
|
@@ -4,7 +4,7 @@ import { mount, render } from 'enzyme';
|
|
|
4
4
|
import { Provider } from 'react-redux';
|
|
5
5
|
import { noop } from 'lodash';
|
|
6
6
|
import DefaultThemeProvider from 'App/Screens/Configurator/ThemeProvider';
|
|
7
|
-
import Option from '
|
|
7
|
+
import Option from './index';
|
|
8
8
|
|
|
9
9
|
const reducer = (state = {}, action) => {
|
|
10
10
|
return { ...action, ...state };
|
|
@@ -4,7 +4,7 @@ import { Provider } from 'react-redux';
|
|
|
4
4
|
import { mount, render } from 'enzyme';
|
|
5
5
|
import { noop } from 'lodash';
|
|
6
6
|
import DefaultThemeProvider from 'App/Screens/Configurator/ThemeProvider';
|
|
7
|
-
import ProductPart from '
|
|
7
|
+
import ProductPart from './index';
|
|
8
8
|
|
|
9
9
|
const initialState = {
|
|
10
10
|
displaySwitchedOptions: false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { storiesOf } from '@storybook/react';
|
|
3
3
|
import ServiceLocator from 'App/ServiceLocator';
|
|
4
|
-
import AddGalleryImage from './';
|
|
4
|
+
import AddGalleryImage from './index';
|
|
5
5
|
import blueImg from './res/blau.jpg';
|
|
6
6
|
import greyIMG from './res/grau.jpg';
|
|
7
7
|
import redIMG from './res/rot.jpg';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { noop } from 'lodash';
|
|
4
4
|
import { mount, render } from 'enzyme';
|
|
5
|
-
import DesignAreaControlbox from '
|
|
5
|
+
import DesignAreaControlbox from './index';
|
|
6
6
|
import MenuItem from '@material-ui/core/MenuItem';
|
|
7
7
|
import ServiceLocator from 'App/ServiceLocator';
|
|
8
8
|
|
|
@@ -3,7 +3,7 @@ import React from 'react';
|
|
|
3
3
|
import { noop } from 'lodash';
|
|
4
4
|
import { mount, render } from 'enzyme';
|
|
5
5
|
import MenuItem from '@material-ui/core/MenuItem';
|
|
6
|
-
import TextControlbox from '
|
|
6
|
+
import TextControlbox from './index';
|
|
7
7
|
import ServiceLocator from 'App/ServiceLocator';
|
|
8
8
|
|
|
9
9
|
const mockedFontsList = [
|
|
@@ -6,7 +6,13 @@ import Api from 'Framework/Api';
|
|
|
6
6
|
import { createActionWithGlobalState } from 'Utils/Redux/createActionWithGlobalState';
|
|
7
7
|
import { getConf } from '../../configuration';
|
|
8
8
|
import { Services } from '../../ServiceLocator';
|
|
9
|
-
import {
|
|
9
|
+
import {
|
|
10
|
+
dismissError,
|
|
11
|
+
reportConfigurationNotFoundError,
|
|
12
|
+
reportError,
|
|
13
|
+
setVisible,
|
|
14
|
+
setWorkInProgress,
|
|
15
|
+
} from '../UI/Actions';
|
|
10
16
|
import { fetchFonts } from '../../Reducers/Fonts/Actions';
|
|
11
17
|
import { addImagesFromDesignArea } from '../../Reducers/ImageGallery/Actions';
|
|
12
18
|
import {
|
|
@@ -627,9 +633,13 @@ export const fetchInitialConfiguration = () => (dispatch, getState) => {
|
|
|
627
633
|
const defaultLoadIdentifier = getConf('defaultLoadIdentifier');
|
|
628
634
|
|
|
629
635
|
if (loadCode) {
|
|
630
|
-
// Load the
|
|
636
|
+
// Load the configuration by code
|
|
631
637
|
return dispatch(fetchConfigurationByCode(loadCode)).then(configuration => {
|
|
632
|
-
|
|
638
|
+
if (configuration.error) {
|
|
639
|
+
dispatch(reportConfigurationNotFoundError(t('loadConfiguration.error.loadingFailed')));
|
|
640
|
+
} else {
|
|
641
|
+
Services.analytics.triggerEvent(EventTypes.load_item, configuration.data.item.identifier);
|
|
642
|
+
}
|
|
633
643
|
});
|
|
634
644
|
} else if (getConf('loadVariantsFirst')) {
|
|
635
645
|
// Load variants by identifier
|
|
@@ -19,6 +19,7 @@ import { getConfigurator, getSelectedVariantIdentifier } from '../Configurator/S
|
|
|
19
19
|
import { compareDesignAreasBySize } from '../DesignView/Transformers';
|
|
20
20
|
import { isImageCompatible } from '../ImageGallery/Selectors';
|
|
21
21
|
import { recalculateSingleDesignArea } from './Transformers';
|
|
22
|
+
import { CONFIGURATION_NOT_FOUND_ERROR } from '../UI/Actions';
|
|
22
23
|
export * from './MaskSelectors';
|
|
23
24
|
|
|
24
25
|
export function getDesignProductionMethods(state) {
|
|
@@ -299,13 +300,14 @@ function isIt500Error({ ui: { error } }) {
|
|
|
299
300
|
|
|
300
301
|
function isConfigurationNotFound({ ui: { error } }) {
|
|
301
302
|
return (
|
|
302
|
-
error &&
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
303
|
+
(error &&
|
|
304
|
+
error.source &&
|
|
305
|
+
error.response &&
|
|
306
|
+
error.response.status === 404 &&
|
|
307
|
+
['loadbyitemidentifier', 'getconfigurationvariants'].indexOf(
|
|
308
|
+
(error.source.url || error.source).split('/')[1]
|
|
309
|
+
) !== -1) ||
|
|
310
|
+
(error && error.type === CONFIGURATION_NOT_FOUND_ERROR)
|
|
309
311
|
);
|
|
310
312
|
}
|
|
311
313
|
|
|
@@ -2,8 +2,7 @@ export const actionTypes = {
|
|
|
2
2
|
SELECT_DESIGN_VIEW: 'DesignView/SELECT_DESIGN_VIEW',
|
|
3
3
|
};
|
|
4
4
|
|
|
5
|
-
export const selectDesignView =
|
|
5
|
+
export const selectDesignView = designViewIdentifier => ({
|
|
6
6
|
type: actionTypes.SELECT_DESIGN_VIEW,
|
|
7
7
|
designViewIdentifier,
|
|
8
|
-
options,
|
|
9
8
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { actionTypes as designViewActionTypes } from '
|
|
1
|
+
import { actionTypes as designViewActionTypes } from './Actions';
|
|
2
2
|
import find from 'lodash/find';
|
|
3
3
|
import get from 'lodash/get';
|
|
4
4
|
import * as configuratorActionTypes from '../Configurator/Actions';
|
|
@@ -16,7 +16,6 @@ const prepareDesignViews = designViews =>
|
|
|
16
16
|
const initialState = {
|
|
17
17
|
designViews: [],
|
|
18
18
|
selectedDesignView: {},
|
|
19
|
-
lastSelectedDesignView: {},
|
|
20
19
|
autogeneratedDesignViews: [],
|
|
21
20
|
viewThumbnailImages: [],
|
|
22
21
|
};
|
|
@@ -24,13 +23,11 @@ const initialState = {
|
|
|
24
23
|
export default function designViewReducer(state = initialState, action = {}) {
|
|
25
24
|
switch (action.type) {
|
|
26
25
|
case designViewActionTypes.SELECT_DESIGN_VIEW: {
|
|
27
|
-
const { designViewIdentifier
|
|
26
|
+
const { designViewIdentifier } = action;
|
|
28
27
|
const designView = find(state.designViews, { identifier: designViewIdentifier });
|
|
29
|
-
const { saveLast = true } = options;
|
|
30
28
|
return {
|
|
31
29
|
...state,
|
|
32
30
|
selectedDesignView: designView,
|
|
33
|
-
...(saveLast ? { lastSelectedDesignView: designView } : null),
|
|
34
31
|
};
|
|
35
32
|
}
|
|
36
33
|
case configuratorActionTypes.RECEIVE_DESIGNER_DATA: {
|
|
@@ -62,14 +59,12 @@ export default function designViewReducer(state = initialState, action = {}) {
|
|
|
62
59
|
...state,
|
|
63
60
|
designViews: prepareDesignViews(updatedDesignViews),
|
|
64
61
|
selectedDesignView: {},
|
|
65
|
-
lastSelectedDesignView: {},
|
|
66
62
|
};
|
|
67
63
|
}
|
|
68
64
|
return {
|
|
69
65
|
...state,
|
|
70
66
|
designViews: prepareDesignViews(designViews),
|
|
71
67
|
selectedDesignView: {},
|
|
72
|
-
lastSelectedDesignView: {},
|
|
73
68
|
};
|
|
74
69
|
}
|
|
75
70
|
case configuratorActionTypes.RECEIVE_CONFIGURATION: {
|
|
@@ -87,7 +82,6 @@ export default function designViewReducer(state = initialState, action = {}) {
|
|
|
87
82
|
...state,
|
|
88
83
|
designViews: [],
|
|
89
84
|
selectedDesignView: {},
|
|
90
|
-
lastSelectedDesignView: {},
|
|
91
85
|
autogeneratedDesignViews,
|
|
92
86
|
viewThumbnailImages,
|
|
93
87
|
};
|
|
@@ -99,7 +93,6 @@ export default function designViewReducer(state = initialState, action = {}) {
|
|
|
99
93
|
...state,
|
|
100
94
|
designViews: autogeneratedDesignViews,
|
|
101
95
|
selectedDesignView,
|
|
102
|
-
lastSelectedDesignView: selectedDesignView,
|
|
103
96
|
autogeneratedDesignViews,
|
|
104
97
|
viewThumbnailImages,
|
|
105
98
|
};
|
|
@@ -109,7 +102,6 @@ export default function designViewReducer(state = initialState, action = {}) {
|
|
|
109
102
|
...state,
|
|
110
103
|
designViews: [],
|
|
111
104
|
selectedDesignView: {},
|
|
112
|
-
lastSelectedDesignView: {},
|
|
113
105
|
autogeneratedDesignViews: [],
|
|
114
106
|
viewThumbnailImages: [],
|
|
115
107
|
};
|
|
@@ -13,7 +13,6 @@ describe('Reducers/DesignView.designViewReducer', () => {
|
|
|
13
13
|
expect(initialState).toEqual({
|
|
14
14
|
designViews: [],
|
|
15
15
|
selectedDesignView: {},
|
|
16
|
-
lastSelectedDesignView: {},
|
|
17
16
|
autogeneratedDesignViews: [],
|
|
18
17
|
viewThumbnailImages: [],
|
|
19
18
|
});
|
|
@@ -42,23 +41,6 @@ describe('Reducers/DesignView.designViewReducer', () => {
|
|
|
42
41
|
const action = selectDesignView(identifier);
|
|
43
42
|
const state = designViewReducer(initialState, action);
|
|
44
43
|
expect(state.selectedDesignView.identifier).toBe(identifier);
|
|
45
|
-
expect(state.lastSelectedDesignView.identifier).toBe(identifier);
|
|
46
|
-
});
|
|
47
|
-
test('returns the correct state for SELECT_DESIGN_VIEW action, if the { saveLast: false } option is provided', () => {
|
|
48
|
-
// select a view directly (eg. user clicks the view buttons)
|
|
49
|
-
const initialState = designViewReducer(simpleState);
|
|
50
|
-
const selectedDesignViewIdentifier = simpleState.designViews[1].identifier;
|
|
51
|
-
const selectDesignViewAction = selectDesignView(selectedDesignViewIdentifier);
|
|
52
|
-
const state1 = designViewReducer(initialState, selectDesignViewAction);
|
|
53
|
-
expect(state1.selectedDesignView.identifier).toBe(selectedDesignViewIdentifier);
|
|
54
|
-
expect(state1.lastSelectedDesignView.identifier).toBe(selectedDesignViewIdentifier);
|
|
55
|
-
|
|
56
|
-
// select a view automatically (eg. user switches to a component which has a linked view)
|
|
57
|
-
const autoDesignViewIdentifier = simpleState.designViews[0].identifier;
|
|
58
|
-
const action = selectDesignView(autoDesignViewIdentifier, { saveLast: false });
|
|
59
|
-
const state2 = designViewReducer(state1, action);
|
|
60
|
-
expect(state2.selectedDesignView.identifier).toBe(autoDesignViewIdentifier);
|
|
61
|
-
expect(state2.lastSelectedDesignView.identifier).toBe(selectedDesignViewIdentifier);
|
|
62
44
|
});
|
|
63
45
|
test('clears the selectedDesignView for RECEIVE_CONFIGURATION action', () => {
|
|
64
46
|
const initialState = designViewReducer(simpleState);
|
|
@@ -70,7 +52,6 @@ describe('Reducers/DesignView.designViewReducer', () => {
|
|
|
70
52
|
const action = { type: RECEIVE_CONFIGURATION };
|
|
71
53
|
const state = designViewReducer(stateWithSelectedDesignView, action);
|
|
72
54
|
expect(state.selectedDesignView).toEqual({});
|
|
73
|
-
expect(state.lastSelectedDesignView).toEqual({});
|
|
74
55
|
});
|
|
75
56
|
test(
|
|
76
57
|
'creates the designViews list and sets the selectedDesignView if visualizationData is available ' +
|
|
@@ -100,9 +81,6 @@ describe('Reducers/DesignView.designViewReducer', () => {
|
|
|
100
81
|
expect(state.selectedDesignView).toEqual({
|
|
101
82
|
identifier: 'front',
|
|
102
83
|
});
|
|
103
|
-
expect(state.lastSelectedDesignView).toEqual({
|
|
104
|
-
identifier: 'front',
|
|
105
|
-
});
|
|
106
84
|
}
|
|
107
85
|
);
|
|
108
86
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createDefaultReceiver, fetchDataAsync, postDataAsync } from '../Actions';
|
|
2
2
|
import { createAsyncTask } from '../UI/Actions';
|
|
3
|
-
import { getUserImagesByDesignArea } from '
|
|
3
|
+
import { getUserImagesByDesignArea } from './Selectors';
|
|
4
4
|
import { calculateImageBrightness } from '../../Services/DesignDataService';
|
|
5
5
|
import { getImageUsageInfo } from './Selectors';
|
|
6
6
|
import { getCurrentCompatibilityInfoHash } from '../DesignArea/Selectors';
|
|
@@ -6,6 +6,7 @@ export const CUSTOM_ERROR = 'ui/CUSTOM_ERROR';
|
|
|
6
6
|
export const DISMISS_ERROR = 'ui/DISMISS_ERROR';
|
|
7
7
|
export const SHOW_ALERT = 'ui/SHOW_ALERT';
|
|
8
8
|
export const DISMISS_ALERT = 'ui/DISMISS_ALERT';
|
|
9
|
+
export const CONFIGURATION_NOT_FOUND_ERROR = 'ui/CONFIGURATION_NOT_FOUND';
|
|
9
10
|
|
|
10
11
|
export const setVisible = (name, show) => (dispatch, getState) => {
|
|
11
12
|
if (getState().ui.visibilityMap[name] !== show) {
|
|
@@ -34,6 +35,13 @@ export const reportError = errorMessage => ({
|
|
|
34
35
|
},
|
|
35
36
|
});
|
|
36
37
|
|
|
38
|
+
export const reportConfigurationNotFoundError = errorMessage => ({
|
|
39
|
+
type: CONFIGURATION_NOT_FOUND_ERROR,
|
|
40
|
+
error: {
|
|
41
|
+
message: errorMessage,
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
|
|
37
45
|
export const dismissError = () => ({
|
|
38
46
|
type: DISMISS_ERROR,
|
|
39
47
|
});
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
DISMISS_ERROR,
|
|
6
6
|
SHOW_ALERT,
|
|
7
7
|
DISMISS_ALERT,
|
|
8
|
+
CONFIGURATION_NOT_FOUND_ERROR,
|
|
8
9
|
} from './Actions';
|
|
9
10
|
|
|
10
11
|
import * as apiActions from '../Actions';
|
|
@@ -20,7 +21,8 @@ export function errorHandler(state, action) {
|
|
|
20
21
|
switch (action.type) {
|
|
21
22
|
case apiActions.NETWORK_ERROR:
|
|
22
23
|
case apiActions.REQUEST_ERROR:
|
|
23
|
-
case CUSTOM_ERROR:
|
|
24
|
+
case CUSTOM_ERROR:
|
|
25
|
+
case CONFIGURATION_NOT_FOUND_ERROR: {
|
|
24
26
|
return {
|
|
25
27
|
...state,
|
|
26
28
|
error: {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { noop } from 'lodash';
|
|
4
4
|
import { mount, render } from 'enzyme';
|
|
5
|
-
import CalculationWidget from '
|
|
5
|
+
import CalculationWidget from './index';
|
|
6
6
|
import MenuItem from '@material-ui/core/MenuItem';
|
|
7
7
|
import { Select, ExpansionPanel, ExpansionPanelDetails } from '@material-ui/core';
|
|
8
8
|
import ServiceLocator from 'App/ServiceLocator';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import noop from 'lodash/noop';
|
|
4
4
|
import { render } from 'enzyme';
|
|
5
|
-
import DesignApproval from '
|
|
5
|
+
import DesignApproval from './index';
|
|
6
6
|
|
|
7
7
|
it('renders correctly without error', () => {
|
|
8
8
|
const tree = render(<DesignApproval checked={true} error={false} link={'fakeLink'} onChange={noop} />);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-env jest */
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { mount, render } from 'enzyme';
|
|
4
|
-
import FullScreenView from '
|
|
4
|
+
import FullScreenView from './index';
|
|
5
5
|
|
|
6
6
|
describe('Screens/Configurator/Components/FullScreenView', () => {
|
|
7
7
|
it('renders correctly', () => {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import AmountPrice from 'App/Shared/Containers/AmountPrice';
|
|
4
4
|
import ProductVariant from 'App/Shared/Containers/ProductVariant';
|
|
5
|
-
import ConfigurationModeSwitch from '
|
|
5
|
+
import ConfigurationModeSwitch from './ConfigurationModeSwitch';
|
|
6
6
|
import { makeStyles } from '@material-ui/core';
|
|
7
7
|
|
|
8
8
|
export const useStyles = makeStyles(
|